/* Copyright (C) 2010 Mataes This is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this file; see the file license.txt. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "stdafx.h" CMPlugin g_plugin; wchar_t g_tszRoot[MAX_PATH] = {0}, g_tszTempPath[MAX_PATH]; ///////////////////////////////////////////////////////////////////////////////////////// PLUGININFOEX pluginInfoEx = { sizeof(PLUGININFOEX), __PLUGIN_NAME, PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM), __DESCRIPTION, __AUTHOR, __COPYRIGHT, __AUTHORWEB, UNICODE_AWARE, // {968DEF4A-BC60-4266-AC08-754CE721DB5F} {0x968def4a, 0xbc60, 0x4266, {0xac, 0x8, 0x75, 0x4c, 0xe7, 0x21, 0xdb, 0x5f}} }; CMPlugin::CMPlugin() : PLUGIN(MODULENAME, pluginInfoEx) {} ///////////////////////////////////////////////////////////////////////////////////////// int CMPlugin::Load() { InitServices(); g_plugin.setByte(DB_SETTING_NEED_RESTART, 0); DWORD dwLen = GetTempPath(_countof(g_tszTempPath), g_tszTempPath); if (g_tszTempPath[dwLen-1] == '\\') g_tszTempPath[dwLen-1] = 0; LoadOptions(); InitPopupList(); InitNetlib(); InitIcoLib(); // Add cheking update menu item InitCheck(); CMenuItem mi(&g_plugin); SET_UID(mi, 0xfa2cbe01, 0x3b37, 0x4a4c, 0xa6, 0x97, 0xe4, 0x6f, 0x31, 0xa9, 0xfc, 0x33); mi.name.a = LPGEN("Check for updates"); mi.hIcolibItem = iconList[0].hIcolib; mi.position = 400010000; mi.pszService = MS_PU_CHECKUPDATES; Menu_AddMainMenuItem(&mi); InitListNew(); SET_UID(mi, 0xafe94fad, 0xea83, 0x41aa, 0xa4, 0x26, 0xcb, 0x4a, 0x1c, 0x37, 0xc1, 0xd3); mi.position++; mi.hIcolibItem = iconList[2].hIcolib; mi.name.a = LPGEN("Available components list"); mi.pszService = MS_PU_SHOWLIST; Menu_AddMainMenuItem(&mi); // initialize options HookEvent(ME_OPT_INITIALISE, OptInit); // Add hotkey HOTKEYDESC hkd = {}; hkd.pszName = "Check for updates"; hkd.szDescription.a = "Check for updates"; hkd.szSection.a = "Plugin Updater"; hkd.pszService = MS_PU_CHECKUPDATES; hkd.DefHotKey = HOTKEYCODE(HOTKEYF_CONTROL, VK_F10) | HKF_MIRANDA_LOCAL; hkd.lParam = FALSE; g_plugin.addHotkey(&hkd); InitEvents(); // add sounds g_plugin.addSound("updatecompleted", LPGENW("Plugin Updater"), LPGENW("Update completed")); g_plugin.addSound("updatefailed", LPGENW("Plugin Updater"), LPGENW("Update failed")); // Upgrade old settings if (-1 == g_plugin.getByte(DB_SETTING_UPDATE_MODE, -1)) { ptrW dbvUpdateURL(g_plugin.getWStringA(DB_SETTING_UPDATE_URL)); if (dbvUpdateURL) { if (!wcscmp(dbvUpdateURL, _A2W(DEFAULT_UPDATE_URL_OLD))) { g_plugin.setByte(DB_SETTING_UPDATE_MODE, UPDATE_MODE_STABLE); g_plugin.delSetting(DB_SETTING_UPDATE_URL); } else if (!wcscmp(dbvUpdateURL, _A2W(DEFAULT_UPDATE_URL_TRUNK_OLD))) { g_plugin.setByte(DB_SETTING_UPDATE_MODE, UPDATE_MODE_TRUNK); g_plugin.delSetting(DB_SETTING_UPDATE_URL); } else if (!wcscmp(dbvUpdateURL, _A2W(DEFAULT_UPDATE_URL_TRUNK_SYMBOLS_OLD) L"/")) { g_plugin.setByte(DB_SETTING_UPDATE_MODE, UPDATE_MODE_TRUNK_SYMBOLS); g_plugin.delSetting(DB_SETTING_UPDATE_URL); } else g_plugin.setByte(DB_SETTING_UPDATE_MODE, UPDATE_MODE_CUSTOM); } } return 0; } ///////////////////////////////////////////////////////////////////////////////////////// int CMPlugin::Unload() { UnloadCheck(); UnloadListNew(); UnloadNetlib(); return 0; }