Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-10-28 | Jabber: we store now server caps in our cache not to rerequest them on each ↵ | George Hazan | |
login | |||
2020-10-27 | Jabber: fix for MAM implementation in Prosody IM | George Hazan | |
2020-10-27 | code cleaning | George Hazan | |
2020-10-25 | Revert "fixes #2569 (Miranda uses libmdbx unsafely)" | George Hazan | |
This reverts commit a949c9f2b090435ca63de525ee2cd1a79073f08a. | |||
2020-10-25 | Shorter = better | dartraiden | |
2020-10-25 | SkypeWeb: deleted files also removed from project | George Hazan | |
2020-10-25 | fixes #2569 (Miranda uses libmdbx unsafely) | George Hazan | |
2020-10-25 | SkypeWeb: old useless code removed + code reordering | George Hazan | |
2020-10-25 | Updated german translation | Tobias Weimer | |
2020-10-24 | NewStory: same as deleting all history | dartraiden | |
2020-10-24 | langpacks: update | dartraiden | |
2020-10-24 | Text tuning for very high DPI mode (175%) | dartraiden | |
2020-10-24 | CCtrlTreeOpts class moved to mir_core, to be reused later | George Hazan | |
2020-10-24 | langpacks/english: update | dartraiden | |
2020-10-24 | Sync stable installer | dartraiden | |
2020-10-24 | fixes #2604 (Jabber: add ability to disable MAM) | George Hazan | |
2020-10-24 | More actual info for installers | dartraiden | |
2020-10-24 | Sync installers | dartraiden | |
2020-10-23 | fixes #2603 (New GPG - Name and mail adress) | George Hazan | |
2020-10-23 | fixes #2518 (Jabber: bookmarks with russian paths could not be opened) | George Hazan | |
2020-10-22 | EMLanProto: | George Hazan | |
- fixes #2599 (Em-LAN: binds to localhost); - code cleaning; - version bump; | |||
2020-10-22 | fixes #2518 (Закладки: не открываются) | George Hazan | |
2020-10-22 | We do not need to shout so loudly | dartraiden | |
2020-10-22 | Also resolve problem on 175% scaling | dartraiden | |
2020-10-22 | Revert "fixes #2596 (support for non-standard DPI in installers)" | George Hazan | |
This reverts commit cab7806ebaf3a570d995c128a08d5defc527db14. | |||
2020-10-22 | Same fix for stable version | dartraiden | |
2020-10-22 | Attempt to fix #2596 | dartraiden | |
2020-10-19 | unused code removed | George Hazan | |
2020-10-19 | SeenPlugin: fix for list sorting | George Hazan | |
2020-10-19 | SeenPlugin: tree control replaced with a list in options | George Hazan | |
2020-10-18 | code cleaning | George Hazan | |
2020-10-17 | NewStory: | 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-16 | warning fix | George Hazan | |
2020-10-16 | MirLua: | George Hazan | |
- fixes #2589 (MirLua doesn't work correctly in 64-bit Miranda); - code cleaning; - version bump | |||
2020-10-15 | fixes #2596 (support for non-standard DPI in installers) | George Hazan | |
2020-10-14 | Jabber: newly added contact has no Nick field | George Hazan | |
2020-10-14 | warning fixes | George Hazan | |
2020-10-14 | VKontakte: | ElzorFox | |
add wall_reply attachments support show text for unknow attachment types version bump | |||
2020-10-12 | fixes #2594 (FtpFile: problems with account names in options) | George Hazan | |
2020-10-12 | fixes #2595 (Подсказка к кнопке фильтра врёт) | George Hazan | |
2020-10-11 | Jabber: fix for sounds & popups in group chats without Subject | George Hazan | |
2020-10-11 | The avatars are still on the discordapp domain | LittleVulpix | |
Currently, fetching avatars doesn't work due to them being on discordapp.com. | |||
2020-10-11 | fixes #2591 (TabSRMM: "Show buttons blablabla right click" option does not ↵ | George Hazan | |
work by default) | |||
2020-10-11 | fixes #2590 (TabSRMM: Cannot setup event filter) | George Hazan | |
2020-10-11 | liblua: update to 5.4.1 | dartraiden | |
2020-10-11 | Contact list filtering: correct default value is FALSE | George Hazan | |
2020-10-09 | OpenSSL: sync with wiki | dartraiden | |
2020-10-09 | compilation fix for VS2017 | George Hazan | |
2020-10-09 | Dbx_mdbx: fix for new constants | George Hazan | |
2020-10-09 | libmdbx: 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. |