diff options
author | George Hazan <george.hazan@gmail.com> | 2012-05-26 15:36:17 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-05-26 15:36:17 +0000 |
commit | 1ee7fc10f76d284b5b8bc4ed4d93bdd1a057d55b (patch) | |
tree | 79e7cc2d2fe0288f934f577610ea612e340235f1 /plugins/Svc_vi/version.h | |
parent | 1d9dd615e5f1a43d3b78f37b5aaae836dfac1c4d (diff) |
andalso Unicode logging
git-svn-id: http://svn.miranda-ng.org/main/trunk@183 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Svc_vi/version.h')
-rw-r--r-- | plugins/Svc_vi/version.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/plugins/Svc_vi/version.h b/plugins/Svc_vi/version.h index b5653f869f..13ab339f7c 100644 --- a/plugins/Svc_vi/version.h +++ b/plugins/Svc_vi/version.h @@ -22,9 +22,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define M_VERSIONINFO_VERSION_H
#define __MAJOR_VERSION 1
-#define __MINOR_VERSION 4
-#define __RELEASE_NUM 3
-#define __BUILD_NUM 4
+#define __MINOR_VERSION 5
+#define __RELEASE_NUM 0
+#define __BUILD_NUM 1
#define VERSION PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM)
@@ -35,15 +35,19 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define __VERSION_STRING __STRINGIFY(__PLUGINVERSION_STRING_DOTS)
#define __DESC "Collects and prints information related to Miranda, the plugins and the OS."
-#define __AUTHOR "Luca Santarelli, Cristian Libotean"
-#define __AUTHOREMAIL "hrk@users.sourceforge.net, eblis102@yahoo.com"
+#define __AUTHOR "Luca Santarelli, Cristian Libotean, George Hazan"
+#define __AUTHOREMAIL "hrk@users.sourceforge.net, eblis102@yahoo.com, ghazan@miranda.im"
#define __COPYRIGHT "© 2002-2005 Luca Santarelli, © 2005-2009 Cristian Libotean"
#define __AUTHORWEB "http://www.miranda-im.org/"
#if defined(WIN64) || defined(_WIN64)
-#define __PLUGIN_DISPLAY_NAME "Version Information (x64)"
+ #define __PLUGIN_DISPLAY_NAME "Version Information x64 (Unicode)"
#else
-#define __PLUGIN_DISPLAY_NAME "Version Information"
+ #if defined(UNICODE)
+ #define __PLUGIN_DISPLAY_NAME "Version Information (Unicode)"
+ #else
+ #define __PLUGIN_DISPLAY_NAME "Version Information"
+ #endif
#endif
#endif //M_VERSIONINFO_VERSION_H
|