summaryrefslogtreecommitdiff
path: root/plugins/Weather/src/version.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Weather/src/version.h')
-rw-r--r--plugins/Weather/src/version.h23
1 files changed, 20 insertions, 3 deletions
diff --git a/plugins/Weather/src/version.h b/plugins/Weather/src/version.h
index c528909dd7..f36385ce1a 100644
--- a/plugins/Weather/src/version.h
+++ b/plugins/Weather/src/version.h
@@ -1,3 +1,20 @@
-#define __FILEVERSION_STRING 0,4,0,1
-#define __VERSION_STRING "0.4.0.1"
-#define __VERSION_DWORD PLUGIN_MAKE_VERSION(0, 4, 0, 1)
+#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 4
+#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 "Weather"
+#define __INTERNAL_NAME "Weather"
+#define __FILENAME "Weather.dll"
+#define __DESCRIPTION "Retrieves weather information and displays it in your contact list."
+#define __AUTHOR "Miranda NG Team"
+#define __AUTHOREMAIL ""
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2002-2005 NoName, 2005-2010 Boris Krasnovskiy, 2012 Miranda NG Team"