Skip to content

Commit

Permalink
Updated version date
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Nov 19, 2023
1 parent 9f9e56a commit db4e121
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion flatpak/com.blitterstudio.amiberry.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</screenshot>
</screenshots>
<releases>
<release version="5.6.4" date="2023-11-15"/>
<release version="5.6.4" date="2023-11-19"/>
<release version="5.6.3" date="2023-11-12"/>
</releases>
</component>
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
#include "fsdb_host.h"
#include "keyboard.h"

static const char __ver[40] = "$VER: Amiberry 5.6.4 (2023-11-15)";
static const char __ver[40] = "$VER: Amiberry 5.6.4 (2023-11-19)";
long int version = 256 * 65536L * UAEMAJOR + 65536L * UAEMINOR + UAESUBREV;

struct uae_prefs currprefs, changed_prefs;
Expand Down
7 changes: 4 additions & 3 deletions src/osdep/target.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
#define GETBDM(x) (((x) - (((x) / 10000) * 10000)) / 100)
#define GETBDD(x) ((x) % 100)

#define AMIBERRYVERSION _T("Amiberry v5.6.4 (2023-11-15)")
#define AMIBERRYDATE MAKEBD(2023, 11, 15)
#define AMIBERRYVERSION _T("Amiberry v5.6.4 (2023-11-19)")
#define AMIBERRYDATE MAKEBD(2023, 11, 19)

#define IHF_WINDOWHIDDEN 6

Expand All @@ -37,7 +37,8 @@ STATIC_INLINE FILE* uae_tfopen(const TCHAR* path, const TCHAR* mode)
return fopen(path, mode);
}

// Expose prefix_with_application_directory from amiberry_filesys so we can use it to open the main confguration file on OS X
// Expose prefix_with_application_directory from amiberry_filesys,
// so we can use it to open the main configuration file on OS X
extern int mouseactive;
extern int minimized;
extern int monitor_off;
Expand Down

0 comments on commit db4e121

Please sign in to comment.