diff options
Diffstat (limited to 'otr/dllmain.cpp')
-rw-r--r-- | otr/dllmain.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/otr/dllmain.cpp b/otr/dllmain.cpp index f4f13b7..c254fcc 100644 --- a/otr/dllmain.cpp +++ b/otr/dllmain.cpp @@ -1260,7 +1260,7 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { update.szComponentName = pluginInfo.shortName;
update.pbVersion = (BYTE *)CreateVersionString(pluginInfo.version, szVersion);
update.cpbVersion = strlen((char *)update.pbVersion);
- update.szBetaChangelogURL = "https://server.scottellis.com.au/websvn/log.php?repname=Miranda+Plugins&path=%2Fotr%2F&rev=0&sc=0&isdir=1";
+ update.szBetaChangelogURL = "https://server.scottellis.com.au/wsvn/mim_plugs/otr/?op=log&rev=0&sc=0&isdir=1";
update.szUpdateURL = UPDATER_AUTOREGISTER;
@@ -1280,11 +1280,6 @@ int ModulesLoaded(WPARAM wParam, LPARAM lParam) { InitUtils();
InitMenu();
- // filter added db events, so that we can add the prefix if the option is enabled
- // (done here rather than in Load, so that MessageNotify and other such plugins can hook first - this hooks
- // later, so it's at the start of the event chain, and can replace db events without e.g. double popups)
- hEventDbEventAddedFilter = HookEvent(ME_DB_EVENT_FILTER_ADD, OnDatabaseEventPreAdd);
-
// hooked so we can remove OFF THE RECORD items from the database
hEventDbEventAdded = HookEvent(ME_DB_EVENT_ADDED, OnDatabaseEventAdd);
@@ -1393,6 +1388,8 @@ extern "C" DLLIMPORT int Load(PLUGINLINK *link) { // hook modules loaded for updater support
HookEvent(ME_SYSTEM_MODULESLOADED, ModulesLoaded);
+ // filter added db events, so that we can add the prefix if the option is enabled
+ hEventDbEventAddedFilter = HookEvent(ME_DB_EVENT_FILTER_ADD, OnDatabaseEventPreAdd);
return 0;
}
|