Another load of cleanups.

Also, all filename handling is now Unicode.
Fixes for many items on the bugs list.
New logo and main icon for the project.
This commit is contained in:
waltje
2018-04-01 22:00:58 -04:00
parent bfc507d5f4
commit 8ef54202f9
85 changed files with 2353 additions and 2281 deletions

View File

@@ -8,7 +8,7 @@
*
* Define application version and build info.
*
* Version: @(#)version.h 1.0.2 2018/03/20
* Version: @(#)version.h 1.0.3 2018/03/30
*
* Author: Fred N. van Kempen, <decwiz@yahoo.com>
*
@@ -55,6 +55,7 @@
#define EMU_VER_MAJOR 0
#define EMU_VER_MINOR 1
#define EMU_VER_REV 3
#define EMU_VER_PATCH 4
/* Standard C preprocessor macros. */
@@ -64,7 +65,7 @@
/* These are used in the application. */
#define EMU_VER_NUM EMU_VER_MAJOR.EMU_VER_MINOR.EMU_VER_REV
#define EMU_VER_NUM_4 EMU_VER_MAJOR.EMU_VER_MINOR.EMU_VER_REV.0
#define EMU_VER_NUM_4 EMU_VER_MAJOR.EMU_VER_MINOR.EMU_VER_REV.EMU_VER_PATCH
#define EMU_VERSION STR(EMU_VER_NUM)
#define EMU_VERSION_4 STR(EMU_VER_NUM_4)