diff options
Diffstat (limited to 'plugins/AVS/src/version.h')
-rw-r--r-- | plugins/AVS/src/version.h | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/plugins/AVS/src/version.h b/plugins/AVS/src/version.h index 0231d7a7ea..11956d9f75 100644 --- a/plugins/AVS/src/version.h +++ b/plugins/AVS/src/version.h @@ -1,3 +1,20 @@ -#define __FILEVERSION_STRING 0,11,0,1
-#define __VERSION_STRING "0.11.0.1"
-#define __VERSION_DWORD PLUGIN_MAKE_VERSION(0, 11, 0, 1)
+#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 11
+#define __RELEASE_NUM 0
+#define __BUILD_NUM 1
+
+#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+#define __FILEVERSION_DOTS __MAJOR_VERSION.__MINOR_VERSION.__RELEASE_NUM.__BUILD_NUM
+
+#define __STRINGIFY_IMPL(x) #x
+#define __STRINGIFY(x) __STRINGIFY_IMPL(x)
+#define __VERSION_STRING __STRINGIFY(__FILEVERSION_DOTS)
+
+#define __PLUGIN_NAME "Avatar service"
+#define __INTERNAL_NAME "AVS"
+#define __FILENAME "AVS.dll"
+#define __DESCRIPTION "Load and manage contact pictures for other plugins."
+#define __AUTHOR "Nightwish, Pescuma"
+#define __AUTHOREMAIL "http://miranda-ng.org/"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2000-2012 Miranda-IM project, 2012 Miranda NG team"
|