Skip to content

Commit

Permalink
Updated version to 6.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Jun 6, 2024
1 parent bd3825f commit a396d53
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion flatpak/com.blitterstudio.amiberry.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Version=1.0
Type=Application

Name=Amiberry-Preview
Name=Amiberry
Comment=An Amiga emulator for Linux
Categories=Game;Emulator;

Expand Down
3 changes: 2 additions & 1 deletion flatpak/com.blitterstudio.amiberry.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<component type="desktop-application">
<id>com.blitterstudio.amiberry</id>
<launchable type="desktop-id">com.blitterstudio.amiberry.desktop</launchable>
<name>Amiberry Preview</name>
<name>Amiberry</name>
<developer_name>BlitterStudio</developer_name>
<summary>An Amiga emulator for Linux</summary>

Expand Down Expand Up @@ -44,6 +44,7 @@
</screenshot>
</screenshots>
<releases>
<release version="v6.3.2" date="2024-06-06"/>
<release version="v6.3.1" date="2024-06-03"/>
<release version="v6.3.0" date="2024-04-20"/>
<release version="v6.2.0" date="2024-02-24"/>
Expand Down
2 changes: 1 addition & 1 deletion src/include/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

#define UAEMAJOR 6
#define UAEMINOR 3
#define UAESUBREV 1
#define UAESUBREV 2

#define MAX_AMIGADISPLAYS 1

Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
#include "fsdb_host.h"
#include "keyboard.h"

static const char __ver[40] = "$VER: Amiberry v6.3.1 (2024-06-03)";
static const char __ver[40] = "$VER: Amiberry v6.3.2 (2024-06-06)";
long int version = 256 * 65536L * UAEMAJOR + 65536L * UAEMINOR + UAESUBREV;

extern int console_logging;
Expand Down
4 changes: 2 additions & 2 deletions src/osdep/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
#define GETBDM(x) (((x) - (((x) / 10000) * 10000)) / 100)
#define GETBDD(x) ((x) % 100)

#define AMIBERRYVERSION _T("Amiberry v6.3.1 preview (2024-06-03)")
#define AMIBERRYDATE MAKEBD(2024, 6, 3)
#define AMIBERRYVERSION _T("Amiberry v6.3.2 preview (2024-06-06)")
#define AMIBERRYDATE MAKEBD(2024, 6, 6)
#define COPYRIGHT _T("Copyright (C) 2016-2024 Dimitris Panokostas")

#define IHF_WINDOWHIDDEN 6
Expand Down

0 comments on commit a396d53

Please sign in to comment.