summaryrefslogtreecommitdiff
path: root/Plugins/avatarhistory/AvatarHistory.cpp
diff options
context:
space:
mode:
authorwishmaster51@gmail.com <wishmaster51@gmail.com@c086bb3d-8645-0410-b8da-73a8550f86e7>2012-06-07 10:49:52 +0000
committerwishmaster51@gmail.com <wishmaster51@gmail.com@c086bb3d-8645-0410-b8da-73a8550f86e7>2012-06-07 10:49:52 +0000
commit5074b434bb7d14ada5b0da2b3a8937e1a36910e9 (patch)
tree110035f2a47630abfe5aa89ddf793ef207c0820c /Plugins/avatarhistory/AvatarHistory.cpp
parent8caf7ea3f5c4762f4444d5e503aa0469830f2e53 (diff)
-Updated m_folders.h
-Allow plugin to loas in Miranda 0.9.50 -version bump git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@253 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/avatarhistory/AvatarHistory.cpp')
-rw-r--r--Plugins/avatarhistory/AvatarHistory.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Plugins/avatarhistory/AvatarHistory.cpp b/Plugins/avatarhistory/AvatarHistory.cpp
index 46b0266..522f229 100644
--- a/Plugins/avatarhistory/AvatarHistory.cpp
+++ b/Plugins/avatarhistory/AvatarHistory.cpp
@@ -71,7 +71,7 @@ PLUGININFOEX pluginInfo={
#else
"Avatar History (Ansi)",
#endif
- PLUGIN_MAKE_VERSION(0,0,3,1),
+ PLUGIN_MAKE_VERSION(0,0,3,2),
"This plugin keeps backups of all your contacts' avatar changes and/or shows popups",
"Matthew Wild (MattJ), Ricardo Pescuma Domenecci",
"mwild1@gmail.com",
@@ -96,9 +96,9 @@ extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvRese
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
{
- if(mirandaVersion < PLUGIN_MAKE_VERSION(0,10,0,3))
+ if(mirandaVersion < PLUGIN_MAKE_VERSION(0,9,50,3))
{
- MessageBox(NULL,_T("AvatarHistory requires Miranda IM 0.10 Alpha #3 or later."),_T("Avatar History"),MB_OK);
+ MessageBox(NULL,_T("AvatarHistory requires Miranda IM 0.9.50 or later."),_T("Avatar History"),MB_OK);
return NULL;
}
mirVer = mirandaVersion;