Age | Commit message (Collapse) | Author |
|
|
|
- massive code cleaning
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jabber:
started work on omemo skeleton
basic signal library initialization test
|
|
whatsapp:
use new libsignal header (looks unused anyway....)
|
|
libaxolotl:
updated libaxolotl (libsignal-c) from (https://github.com/WhisperSystems/libsignal-protocol-c)
|
|
|
|
- Fixed Copy action
- Added Notepad++ to options dialog predefined editors
- warning fix
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- support for group chat topics;
- version bump
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Double declaration removed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- enhanced debug info
|
|
|
|
|
|
This helps in case we get spammed with avatar requests - to see which tox is causing it.
example of spam:
[06:48:45 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:48:45 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:48:46 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:48:46 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:48:54 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:48:54 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:48:54 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:48:54 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:03 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:03 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:03 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:03 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:12 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:12 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:12 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:12 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:21 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:21 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:21 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:21 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:30 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:30 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:30 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:30 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:39 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:39 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
[06:49:39 1E30] [FoxyToxy] CToxProto::OnFriendFile: incoming avatar (65536) from (0)
[06:49:39 1E30] [FoxyToxy] CToxProto::CancelTransfer: Transfer (65536) is canceled
|
|
|
|
|
|
|
|
|
|
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).
|