diff options
Diffstat (limited to 'updater')
-rw-r--r-- | updater/updater.cpp | 4 | ||||
-rw-r--r-- | updater/version.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/updater/updater.cpp b/updater/updater.cpp index aebe70d..61e54bc 100644 --- a/updater/updater.cpp +++ b/updater/updater.cpp @@ -26,8 +26,8 @@ PLUGININFO pluginInfo={ __AUTHOREMAIL,
__COPYRIGHT,
__AUTHORWEB,
- 0, //not transient
- 0 //doesn't replace anything built-in
+ UNICODE_AWARE, //not transient
+ 0 //doesn't replace anything built-in
};
extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
diff --git a/updater/version.h b/updater/version.h index 1333aa1..37ce3fc 100644 --- a/updater/version.h +++ b/updater/version.h @@ -5,7 +5,7 @@ #define __MAJOR_VERSION 0
#define __MINOR_VERSION 4
#define __RELEASE_NUM 12
-#define __BUILD_NUM 2
+#define __BUILD_NUM 3
#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
#define __FILEVERSION_STRING_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
|