summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-28Jabber: we store now server caps in our cache not to rerequest them on each ↵George Hazan
login
2020-10-27Jabber: fix for MAM implementation in Prosody IMGeorge Hazan
2020-10-27code cleaningGeorge Hazan
2020-10-25Revert "fixes #2569 (Miranda uses libmdbx unsafely)"George Hazan
This reverts commit a949c9f2b090435ca63de525ee2cd1a79073f08a.
2020-10-25Shorter = betterdartraiden
2020-10-25SkypeWeb: deleted files also removed from projectGeorge Hazan
2020-10-25fixes #2569 (Miranda uses libmdbx unsafely)George Hazan
2020-10-25SkypeWeb: old useless code removed + code reorderingGeorge Hazan
2020-10-25Updated german translationTobias Weimer
2020-10-24NewStory: same as deleting all historydartraiden
2020-10-24langpacks: updatedartraiden
2020-10-24Text tuning for very high DPI mode (175%)dartraiden
2020-10-24CCtrlTreeOpts class moved to mir_core, to be reused laterGeorge Hazan
2020-10-24langpacks/english: updatedartraiden
2020-10-24Sync stable installerdartraiden
2020-10-24fixes #2604 (Jabber: add ability to disable MAM)George Hazan
2020-10-24More actual info for installersdartraiden
2020-10-24Sync installersdartraiden
2020-10-23fixes #2603 (New GPG - Name and mail adress)George Hazan
2020-10-23fixes #2518 (Jabber: bookmarks with russian paths could not be opened)George Hazan
2020-10-22EMLanProto:George Hazan
- fixes #2599 (Em-LAN: binds to localhost); - code cleaning; - version bump;
2020-10-22fixes #2518 (Закладки: не открываются)George Hazan
2020-10-22We do not need to shout so loudlydartraiden
2020-10-22Also resolve problem on 175% scalingdartraiden
2020-10-22Revert "fixes #2596 (support for non-standard DPI in installers)"George Hazan
This reverts commit cab7806ebaf3a570d995c128a08d5defc527db14.
2020-10-22Same fix for stable versiondartraiden
2020-10-22Attempt to fix #2596dartraiden
2020-10-19unused code removedGeorge Hazan
2020-10-19SeenPlugin: fix for list sortingGeorge Hazan
2020-10-19 SeenPlugin: tree control replaced with a list in optionsGeorge Hazan
2020-10-18code cleaningGeorge Hazan
2020-10-17NewStory:George Hazan
- fixes #2416 (NewStory: add ability to delete only selected messages) - fixes #2423 (NewStory: если выделено одно сообщение, а щёлкнуть ПКМ по другому, то копирование и редактирование ведут себя по-разному); - fixes #2452 (NewStory: add multiple messages selection ability without keyboard)
2020-10-16warning fixGeorge Hazan
2020-10-16MirLua:George Hazan
- fixes #2589 (MirLua doesn't work correctly in 64-bit Miranda); - code cleaning; - version bump
2020-10-15fixes #2596 (support for non-standard DPI in installers)George Hazan
2020-10-14Jabber: newly added contact has no Nick fieldGeorge Hazan
2020-10-14warning fixesGeorge Hazan
2020-10-14VKontakte:ElzorFox
add wall_reply attachments support show text for unknow attachment types version bump
2020-10-12fixes #2594 (FtpFile: problems with account names in options)George Hazan
2020-10-12fixes #2595 (Подсказка к кнопке фильтра врёт)George Hazan
2020-10-11Jabber: fix for sounds & popups in group chats without SubjectGeorge Hazan
2020-10-11The avatars are still on the discordapp domainLittleVulpix
Currently, fetching avatars doesn't work due to them being on discordapp.com.
2020-10-11fixes #2591 (TabSRMM: "Show buttons blablabla right click" option does not ↵George Hazan
work by default)
2020-10-11fixes #2590 (TabSRMM: Cannot setup event filter)George Hazan
2020-10-11liblua: update to 5.4.1dartraiden
2020-10-11Contact list filtering: correct default value is FALSEGeorge Hazan
2020-10-09OpenSSL: sync with wikidartraiden
2020-10-09compilation fix for VS2017George Hazan
2020-10-09Dbx_mdbx: fix for new constantsGeorge Hazan
2020-10-09libmdbx: switch to original amalgamated source code (v0.9.1.18)Leonid Yuriev
Amalgamated source code is the recommended form for embedding libmdbx in non-CMake build systems. This amalgamated version contains a minimum of files, is fully ready for use, and make impossible a number of errors. To upgrade or switch to a different version, just unpack to the `src` subdirectory a corresponding `libmdbx-amalgamated-X_Y_Z.zip` at the https://github.com/erthink/libmdbx/releases. For instance, the https://github.com/erthink/libmdbx/releases/download/v0.9.2/libmdbx-amalgamated-0_9_2.zip for the next release. -- Minimal changes have been made to the build configuration: 1. For use the standard `DllMain()` entry of libmdbx: - added the `MDBX_BUILD_SHARED_LIBRARY=1` option; - removed the `MDBX_CONFIG_MANUAL_TLS_CALLBACK` option; - deleted the `miranda.c` file containing only `DllMain()` with the `mdbx_dll_handle()` call, now this is done by the library itself. 2. Removed refs to extra files (that missing in the amalgamated source code): - for building `libmdbx.dll` only the `mdbx.h` and `mdbx.c` are used, but not `mdbx.c++` for a C++ API; - for building the `mdbx_chk`, `mdbx_load`, and `mdbx_dump` utilities only it own sources are used. -- Last libmdbx changes: - Fixed missing installation of `mdbx.h++`. - Fixed use of obsolete `__noreturn`. - Fixed use of `yield` instruction on ARM if unsupported. - Added pthread workaround for buggy toolchain/cmake/buildroot. - Fixed use of `pthread_yield()` for non-GLIBC. - Fixed use of `RegGetValueA()` on Windows 2000/XP. - Fixed use of `GetTickCount64()` on Windows 2000/XP. - Fixed opening DB on a network shares (in the exclusive mode). - Fixed copy&paste typos. - Fixed minor false-positive GCC warning.