Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-02-25 | PROTORECVFILE now uses const char/wchar_t pointers. also fixes #1864 completely | George Hazan | |
2019-02-25 | GCEVENT::GCEF_UTF8 - flag for direct communication with utf8-encoded chat ↵ | George Hazan | |
events (UTF16LE by default) | |||
2019-02-05 | fixes #1825 (spin control initialization should be done in the constructor, ↵ | George Hazan | |
not inside OnInitDialog) | |||
2019-01-26 | code cleaning | George Hazan | |
2019-01-08 | fixes #1715 (by default account's destructor doesn't free network handle) | George Hazan | |
2019-01-04 | Update copyrights | dartraiden | |
2018-12-28 | ACKTYPE_GETINFO-related code cleaning | George Hazan | |
2018-11-26 | Chat_AddGroup - simplified prototype | George Hazan | |
2018-11-14 | code cleaning | George Hazan | |
2018-11-12 | db_* functions replaced with g_plugin calls | George Hazan | |
2018-10-17 | IRC: | George Hazan | |
- useless variable m_evWndCreate removed; - fixes #1628 (IRC channel list window crashes when closed prematurely); - code cleaning; - version bump | |||
2018-10-05 | IRC: | George Hazan | |
- crash fix; - code cleaning; - version bump | |||
2018-09-21 | old crutch removed: error messages to go in Unicode | George Hazan | |
2018-07-25 | finally fixes #1512 | George Hazan | |
2018-07-25 | cosmetic fixes, typos | dartraiden | |
2018-07-24 | database: | George Hazan | |
- senseless fiels ptszVal removed from DBVARIANT, pwszVal is used instead; - if you want db_get to return a string, you need to use db_get_s. | |||
2018-07-23 | fix for dynamic memory allocation | George Hazan | |
2018-07-23 | IRC: completely fixes #1512 | dartraiden | |
2018-07-19 | IRC: add BelarusIRC | dartraiden | |
2018-07-19 | BelarusIRC added to the IRC server list | George Hazan | |
2018-07-16 | fixes #1493 (Miranda IRC protocol crash when checking channel modes) | George Hazan | |
2018-07-11 | int hLangpack/m_hLang removed and replaced with HPLUGIN | George Hazan | |
2018-07-11 | GUI change: | George Hazan | |
- methods OnInitDialog, OnApply & OnClose of CDlgBase now return true if successful. return of false prevents a dialog from being loaded or left respectively; - massive code cleaning considering the 'virtual' attribute of overridden methods; - also fixes #1476 (Don't close "Create new account" window if user not set account name) | |||
2018-06-25 | IRC: if user decide "kick with reason", he should write a reason manually | dartraiden | |
2018-05-29 | common version resource extracted to the separate file | George Hazan | |
own version resource remains only for miranda32.exe, mir_app.dll and pascal plugins | |||
2018-05-28 | all plugins => CMPlugin virtual functions | George Hazan | |
2018-05-27 | comparison of MIRANDA_VERSION_COREVERSION solves the problem of plugins who ↵ | George Hazan | |
differ only in a build number | |||
2018-05-27 | PRODUCTVERSION of any version resource to contain the number of current build | George Hazan | |
2018-05-27 | global variable name standardization | George Hazan | |
2018-05-27 | unused variable CHAT_MANAGER *pci removed and replaced with g_chatApi | George Hazan | |
2018-05-23 | no need to initialize pcli variable in each plugin (only in Clist_*) | George Hazan | |
2018-05-23 | we don't need MirandaPluginInfoEx() anymore. farewell, my lovely | George Hazan | |
2018-05-22 | no more need in hLangpack variable *YAHOO* | George Hazan | |
2018-05-22 | m_chat.h => CMPlugin | George Hazan | |
2018-05-22 | m_genmenu.h unbound from hLangpack | George Hazan | |
2018-05-20 | options API unbound from hLangpack and switched to CMPlugin | George Hazan | |
2018-05-20 | UserInfo_AddPage() helper replaced with CMPLugin::addUserInfo() | George Hazan | |
2018-05-20 | mir_getLP() call went into CMPluginBase::CMPluginBase, thus it's not needed ↵ | George Hazan | |
in each plugin. mir_getLP() remains for compatibility with pascal plugins only | |||
2018-05-20 | CMPlugin to receive a reference to PLUGININFOEX | George Hazan | |
2018-05-18 | Icon_Register(g_plugin.getInst() => g_plugin.registerIcon | George Hazan | |
Icon_RegisterT(g_plugin.getInst() => g_plugin.registerIconW | |||
2018-05-18 | hLangpack variable began migration inside CMPluginBase | George Hazan | |
it remains existing for now, but as reference to g_plugin.m_hLang | |||
2018-05-15 | cmstub.lib statically linked to any plugin that uses CMPlugin template | George Hazan | |
2018-05-15 | IRC: | George Hazan | |
- fixes #1342 (broken search in channel browser); - code cleaning; - version bump | |||
2018-05-03 | mir_forkThread<typename> - stronger typizatioin for thread function parameter | George Hazan | |
2018-04-27 | code cleaning | George Hazan | |
2018-04-22 | EV_PROTO_ONMENU removed | George Hazan | |
2018-04-22 | OnEvent(EV_PROTO_ONCONTACTDELETED) => PROTO_INTERFACE::OnContactDeleted | George Hazan | |
2018-04-21 | EV_PROTO_DBSETTINGSCHANGED - old useless stub removed | George Hazan | |
2018-04-21 | code cleaning: | George Hazan | |
- in conformance to C++'11 rules, we don't declare a method as virtual if it's declared as override; - cause this code isn't visible in Pascal anymore, there's no need to use __cdecl calling convention for virtual methods; - since PROTO_INTERFACE is a regular C++ class, there's no need to use old style service declarations for virtual methods like OnModulesLoaded / OnShutdown | |||
2018-04-19 | EV_PROTO_ONOPTIONS removed and replaced with the call of ↵ | George Hazan | |
CallObjectEventHook(pa->ppro, ME_OPT_INITIALIZE) this eliminates the possibility of making a mistake in hand-written code also fixes #1280 (Tox: "Confugure" menu item is broken) |