diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-12 05:22:23 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-10-12 05:22:23 +0000 |
commit | 7fd44b9f7907e17770b65ca897ac677bb6ee1f1f (patch) | |
tree | e4aed42ba736671f235fd91c6444583a1f3afa76 /plugins/AvatarHistory/src/Version.h | |
parent | 536d08b243bc73f6c7b0d155d5df6151d883d4e3 (diff) |
AvatarHistory
version added
git-svn-id: http://svn.miranda-ng.org/main/trunk@1879 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AvatarHistory/src/Version.h')
-rw-r--r-- | plugins/AvatarHistory/src/Version.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/AvatarHistory/src/Version.h b/plugins/AvatarHistory/src/Version.h new file mode 100644 index 0000000000..12a4806ad1 --- /dev/null +++ b/plugins/AvatarHistory/src/Version.h @@ -0,0 +1,20 @@ +#define __MAJOR_VERSION 0
+#define __MINOR_VERSION 0
+#define __RELEASE_NUM 3
+#define __BUILD_NUM 3
+
+#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 History"
+#define __INTERNAL_NAME "AvatarHistory"
+#define __FILENAME "AvatarHistory.dll"
+#define __DESCRIPTION "This plugin keeps backups of all your contacts' avatar changes and/or shows popups."
+#define __AUTHOR "Matthew Wild (MattJ), Ricardo Pescuma Domenecci"
+#define __AUTHOREMAIL "mwild1@gmail.com"
+#define __AUTHORWEB "http://miranda-ng.org/"
+#define __COPYRIGHT "© 2006-2012 Matthew Wild, Ricardo Pescuma Domenecci"
|