diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-13 21:37:56 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-13 21:37:56 +0000 |
commit | 92a701741ab376c6bd8ac20f832f55e55324abdc (patch) | |
tree | aae30addc202f556781d3c86706a1fdef4fa953b /plugins/UserInfoEx | |
parent | 9f1350bd4fb0df56a4115e80343285eef8acb954 (diff) |
Updater removal - stage 1
git-svn-id: http://svn.miranda-ng.org/main/trunk@956 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx')
-rw-r--r-- | plugins/UserInfoEx/init.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/plugins/UserInfoEx/init.cpp b/plugins/UserInfoEx/init.cpp index a36e828fe7..afcac8fc6e 100644 --- a/plugins/UserInfoEx/init.cpp +++ b/plugins/UserInfoEx/init.cpp @@ -134,39 +134,6 @@ static INT OnModulesLoaded(WPARAM wParam, LPARAM lParam) RebuildMenu();
ghPrebuildStatusMenu = HookEvent( ME_CLIST_PREBUILDSTATUSMENU, (MIRANDAHOOK)RebuildAccount);
- // finally register for updater
- if (ServiceExists(MS_UPDATE_REGISTER))
- {
- Update update = {0};
- CHAR szVersion[16];
- update.cbSize = sizeof(Update);
- update.szComponentName = pluginInfo.shortName;
- update.pbVersion = (BYTE *)CreateVersionString(pluginInfo.version, szVersion);
- update.cpbVersion = (INT)strlen((LPSTR)update.pbVersion);
-
- update.szUpdateURL = UPDATER_AUTOREGISTER;
-
- update.szBetaVersionURL = "http://userinfoex.googlecode.com/svn/trunk/changelog.txt";
- // bytes occuring in VersionURL before the version, used to locate the version information within the URL data
- // e.g. change '[0.8.1.0 (in work)]' to 'UserinfoEx: 0.8.1.0' for beta versions bump
- update.pbBetaVersionPrefix = (BYTE *)"UserinfoEx: ";
- update.cpbBetaVersionPrefix = (INT)strlen((LPSTR)update.pbBetaVersionPrefix);
-
-#ifdef _WIN64
-
- update.szBetaUpdateURL = "http://userinfoex.googlecode.com/files/uinfoex64.zip";
-
-#else
-
- update.szBetaUpdateURL = "http://userinfoex.googlecode.com/files/uinfoexW.zip";
-
-#endif
-
- // url for displaying changelog for beta versions
- update.szBetaChangelogURL = "http://userinfoex.googlecode.com/svn/trunk/changelog.txt";
-
- CallService(MS_UPDATE_REGISTER, 0, (WPARAM)&update);
- }
// install known modules strings to database
DB::Setting::WriteAString(NULL, "KnownModules", MODULELONGNAME, USERINFO","MODNAME","MOD_MBIRTHDAY","MODNAMEFLAGS);
|