diff options
author | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2008-02-29 00:08:37 +0000 |
---|---|---|
committer | pescuma <pescuma@c086bb3d-8645-0410-b8da-73a8550f86e7> | 2008-02-29 00:08:37 +0000 |
commit | 941a5c34967d2b814a0287f71ca32830480d93fc (patch) | |
tree | 96f69136d1fbe623225196dab184b00f6e0c572b /Plugins/emoticons/emoticons.cpp | |
parent | f1342d326de3d591718bd4e43c752266013e3c95 (diff) |
Fix for updater
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@61 c086bb3d-8645-0410-b8da-73a8550f86e7
Diffstat (limited to 'Plugins/emoticons/emoticons.cpp')
-rw-r--r-- | Plugins/emoticons/emoticons.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Plugins/emoticons/emoticons.cpp b/Plugins/emoticons/emoticons.cpp index ffb44e5..800c9ba 100644 --- a/Plugins/emoticons/emoticons.cpp +++ b/Plugins/emoticons/emoticons.cpp @@ -30,7 +30,7 @@ PLUGININFOEX pluginInfo={ #else
"Emoticons",
#endif
- PLUGIN_MAKE_VERSION(0,0,1,3),
+ PLUGIN_MAKE_VERSION(0,0,1,4),
"Emoticons",
"Ricardo Pescuma Domenecci",
"",
@@ -248,14 +248,14 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) upd.szUpdateURL = UPDATER_AUTOREGISTER;
- upd.szBetaVersionURL = "http://pescuma.googlecode.com/svn/trunk/Miranda/Plugins/emoticons/Docs/emoticons_version.txt";
+ upd.szBetaVersionURL = "http://pescuma.org/miranda/emoticons_version.txt";
upd.szBetaChangelogURL = "http://pescuma.org/miranda/emoticons#Changelog";
upd.pbBetaVersionPrefix = (BYTE *)"Emoticons ";
upd.cpbBetaVersionPrefix = strlen((char *)upd.pbBetaVersionPrefix);
#ifdef UNICODE
- upd.szBetaUpdateURL = "http://pescuma.googlecode.com/files/emoticonsW.zip";
+ upd.szBetaUpdateURL = "http://pescuma.org/miranda/emoticonsW.zip";
#else
- upd.szBetaUpdateURL = "http://pescuma.googlecode.com/files/emoticons.zip";
+ upd.szBetaUpdateURL = "http://pescuma.org/miranda/emoticons.zip";
#endif
upd.pbVersion = (BYTE *)CreateVersionStringPlugin((PLUGININFO*) &pluginInfo, szCurrentVersion);
|