Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-12-26 | BYTE -> uint8_t | George Hazan | |
2021-06-06 | grrm | George Hazan | |
2021-06-05 | MsgExport: fix for exporting file descriptions | George Hazan | |
2021-06-05 | major code cleaning in regard to db_event_getBlobSize & event memory allocation | George Hazan | |
2021-05-20 | MsgExport: fix for replacing contact ids in file names | George Hazan | |
2021-03-06 | less shit with this "(Unknown contact)" | George Hazan | |
2021-02-20 | translation fix | George Hazan | |
2021-02-13 | code cleaning | George Hazan | |
2020-09-21 | fixes #2571 (MsgExport странно обрабатывает ↵ | George Hazan | |
контакты с отключённых аккаунтов Message export bug) | |||
2020-04-25 | Msg_export: typo fix | Mataes | |
2020-03-18 | Shorter is better | dartraiden | |
2020-03-17 | Msg_Export: this is accounts, not protocols | dartraiden | |
2019-12-04 | GetContactProto: useless duplicate function replaced with standard ↵ | George Hazan | |
Proto_GetBaseAccountName | |||
2019-08-12 | Msg_Export: fix for error window | George Hazan | |
2019-06-05 | warning fix | George Hazan | |
2019-02-01 | fixes #1737 (Msg_Export: double .json extension) | George Hazan | |
2019-01-30 | obsolete ICQ trash removed from headers | George Hazan | |
2019-01-18 | code cleaning | George Hazan | |
- ACKTYPE_URL removed; - PF1_URL removed; - IEED_EVENT_URL removed; - another URL-related code cleaning | |||
2019-01-08 | fixes #1737 (MsgExport cannot open a history file if JSON format is active) | George Hazan | |
2018-11-13 | Msg_Export -> g_plugin | George Hazan | |
2018-11-12 | db_* functions replaced with g_plugin calls | George Hazan | |
2018-08-30 | Msg_Export: remove forgotten space | dartraiden | |
2018-08-29 | senseless errors removed | George Hazan | |
2018-08-29 | fixes #1557 (Msg_Export: move some strings to debug log) | George Hazan | |
2018-08-29 | fixes #1556 (Msg_Export: translation problem) | George Hazan | |
2018-08-28 | Msg_Export: remove useless space | dartraiden | |
2018-08-27 | missing translations restored | George Hazan | |
2018-08-25 | thy shall not modify the event's text | George Hazan | |
2018-08-22 | Msg_Export: fix for export metacontact's events | George Hazan | |
2018-08-18 | ISO time format to use UTC time, according to ISO8601 | George Hazan | |
2018-08-17 | export/import with human readable timestamps according to #1490 | George Hazan | |
2018-08-17 | fixes crash for #1490 | George Hazan | |
2018-08-14 | fix for CreatePathToFileW prototype (missing const specifier) | George Hazan | |
2018-08-14 | compilation fix | George Hazan | |
2018-08-14 | Msg_Export: added ability to export messages to JSON | George Hazan | |
2018-08-13 | minor code cleaning | George Hazan | |
2018-08-13 | Msg_Export: | George Hazan | |
- bCreatePathToFile replaced with CreateDirectoryTreeW() call; - g_bUseIntViewer exported from FileViewer.cpp; - more code cleaning | |||
2018-08-13 | MsgExport: options diivded into two separate dialogs, code cleaning | George Hazan | |
2018-08-10 | Msg_Export: options dialog -> UI Classes | George Hazan | |
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-05-20 | CMPlugin to receive a reference to PLUGININFOEX | George Hazan | |
2018-04-05 | CLIST_INTERFACE::pfnGetContactDisplayName => Clist_GetContactDisplayName | George Hazan | |
2018-03-31 | Msg_Export: mir_strcpy and mir_wstrcpy replaced to strncpy_s and wcsncpy_s | Mataes | |
2018-03-16 | entities' names to be started with capital letters | George Hazan | |
2018-03-16 | always hated these long expressions: contact_iter makes them much shorter | George Hazan | |
2018-01-26 | code optimization | George Hazan | |
2017-12-06 | convert all files exept curl and new_gpg to utf-8 BOM (reverted from commit ↵ | Kirill Volinsky | |
62202ed10617927d5429bc59898e12a366abe744) | |||
2017-12-06 | convert all files exept curl and new_gpg to utf-8 BOM | Kirill Volinsky | |
2017-11-13 | Code modernize ... | Goraf | |
* replace 0/NULL with nullptr [using clang-tidy] | |||
2017-02-06 | Msg_Export: Fix exporting unicode messages, make it even faster (addresses #609) | Robert Pösel | |
Previously code worked with opening file and loading BOM at writing each event. When we stopped closing/opening file at each event it couldn't read BOM anymore, so it wrote messages in wrong codepage. This is not fixed by parameter defining we are just appending the file, so it doesn't need to determing BOM or even check file size. Thanks to this exporting is now about 70% faster than the initial optimization commit (in sum 13.5x faster than before). |