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 | |
parent | f1342d326de3d591718bd4e43c752266013e3c95 (diff) |
Fix for updater
git-svn-id: http://pescuma.googlecode.com/svn/trunk/Miranda@61 c086bb3d-8645-0410-b8da-73a8550f86e7
-rw-r--r-- | Plugins/emoticons/Docs/emoticons_changelog.txt | 3 | ||||
-rw-r--r-- | Plugins/emoticons/Docs/emoticons_version.txt | 2 | ||||
-rw-r--r-- | Plugins/emoticons/emoticons.cpp | 8 |
3 files changed, 8 insertions, 5 deletions
diff --git a/Plugins/emoticons/Docs/emoticons_changelog.txt b/Plugins/emoticons/Docs/emoticons_changelog.txt index 51f9dfa..7fbe681 100644 --- a/Plugins/emoticons/Docs/emoticons_changelog.txt +++ b/Plugins/emoticons/Docs/emoticons_changelog.txt @@ -2,6 +2,9 @@ Emoticons Changelog:
+. 0.0.1.4
+ * Fix for updater
+
. 0.0.1.3
* Fix for protocol emoticons (closes issue 22)
* Fix for URLs in input area
diff --git a/Plugins/emoticons/Docs/emoticons_version.txt b/Plugins/emoticons/Docs/emoticons_version.txt index 5dc6b1f..94558ce 100644 --- a/Plugins/emoticons/Docs/emoticons_version.txt +++ b/Plugins/emoticons/Docs/emoticons_version.txt @@ -1 +1 @@ -Emoticons 0.0.1.3
\ No newline at end of file +Emoticons 0.0.1.4
\ No newline at end of file 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);
|