Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-04-12 | Added link to multiple nospam PR. | irungentoo | |
2015-04-06 | Update the toxcore todo list | GrayHatter | |
added markdown formatting as well! | |||
2015-03-25 | Removed old avatar doc. | irungentoo | |
2015-03-05 | spelling, punctuation, ... | aaannndddyyy | |
2015-03-05 | minor punctuation fixes | aaannndddyyy | |
only minor punctuation fixes. not changed the wording, except for one 'logical typo'. | |||
2015-01-31 | Update avatar documentation | Alexandre Erwin Ittner | |
Add missing function and fixes some typos and formatting. | |||
2015-01-31 | Rename "client id" to "public key" in avatar docs and examples | Alexandre Erwin Ittner | |
Commit b8d530c9e0bbce331f22cbff7f818e49673d5bd7 and some of its parents changed the public name of "client id" to "public key". Update the avatar documentation to follow the idea. | |||
2015-01-24 | Updated TODO. | irungentoo | |
2015-01-03 | fixed some typos / grammar | aaannndddyyy | |
2014-12-30 | fixed a typo | aaannndddyyy | |
2014-12-14 | Fixed DHT doc. | irungentoo | |
2014-12-14 | Sendback data size is always 8 bytes. | irungentoo | |
2014-12-03 | Merge branch 'patch-2' of https://github.com/Aaron1011/toxcore | irungentoo | |
2014-12-03 | Fix usage of 'have' versus 'has' | Aaron1011 | |
2014-12-03 | Fix typo | Aaron1011 | |
2014-12-02 | Fixed bug where group chat would see connection as offline when it was online. | irungentoo | |
Clarified something in the docs. | |||
2014-11-26 | Fix link in TODO | Andy Conrad | |
2014-11-23 | Removed some no longer promising clients from the TODO. | irungentoo | |
2014-11-23 | Updated TODO. | irungentoo | |
2014-11-19 | Small update to groupchat docs. | irungentoo | |
2014-11-16 | Added an unfinished doc on how groupchats work. | irungentoo | |
2014-10-28 | Update TODO | Lance Tuller | |
qTox | |||
2014-10-26 | Modify DHT.md to render correctly | irdan | |
2014-09-28 | change avatar requirements | dubslow | |
2014-09-28 | Merge branch 'master' of https://github.com/irungentoo/toxcore | dubslow | |
2014-09-27 | Modify avatar recommendations | dubslow | |
2014-09-25 | Update avatar documentation | Alexandre Erwin Ittner | |
Update the documentation to reflect the API changes introduced by commits 21be438b2b3f7aa1b65b76a7f528eacfe5b634db and d409bad30dd1657f6b54ea5e38a4d9155f718ae1 | |||
2014-09-24 | Update documentation after API changes | Alexandre Erwin Ittner | |
Commit ba6ae15a739257200b04a10b6ecd22fe210951e1 introduced some API changes, update the documentation to reflect them. | |||
2014-09-22 | Merge branch 'avatars' of https://github.com/ittner/toxcore | irungentoo | |
2014-09-21 | Remove chattiness from avatar data transfers | Alexandre Erwin Ittner | |
The chatty approach for the avatar data transfer was intended as a security feature to add explicit delays to the transfer and prevent amplification attacks among authenticated friends. This was deemed unnecessary in the code review and, therefore, replaced by a simpler approach that sends all data in a single burst. | |||
2014-09-21 | Remove support for avatar image formats other than PNG | Alexandre Erwin Ittner | |
Support for other formats was deemed unnecessary in the code review and therefore removed. The value for the constant TOX_AVATARFORMAT_PNG is now set in stone; if the other formats become needed again in the future, this commit shall be reverted and the enum values reordered to keep compatibility. | |||
2014-09-09 | spelling corrections | cgar | |
2014-09-07 | Fixed typo. | irungentoo | |
2014-09-07 | Updated docs. | irungentoo | |
Fixed possible issue in last commit. | |||
2014-08-30 | Add support for user avatars in the core protocol | Alexandre Erwin Ittner | |
Add a protocol and the APIs to straightforwardly support user avatars in client applications. The protocol is designed to transfer avatars in background, between friends only, and minimize network load by providing a lightweight avatar notification for local cache validation. Strict safeguards are imposed to avoid damage from non-cooperative or malicious users and to limit network usage. The complete documentation is available in docs/Avatars.md and sample code is available in testing/test_avatars.c. Code and documentation are released under the GNU GPLv3 or later, as described in the file COPYING. | |||
2014-07-10 | wintox has been renamned to uTox | Marek Ć uppa | |
2014-07-01 | Updated some items in the TODO list. | irungentoo | |
2014-06-12 | Updated TODO. | irungentoo | |
2014-06-06 | Updated documentation. | irungentoo | |
2014-06-06 | Updated outdated crypto doc. | irungentoo | |
2014-05-19 | Fixed a bug where someone could just send back the ping request packet | irungentoo | |
with only the first byte set to 1 instead of 0 and the public key set to the one of the reciever as a valid response packet. This breaks network compatibility with all previous cores. | |||
2014-05-17 | Changed cookie/cookie request packet. | irungentoo | |
Cookie now contains the dht public key of the peer which makes more sense than including the real public key of the reciever. It means we no longer have to rely entirely on onion_client to find the dht public key of the other peer. | |||
2014-05-14 | Added OOB packets to the TCP client and server. | irungentoo | |
2014-05-11 | Added kill packets. | irungentoo | |
There should be no more delay between a peer closing their client and their friend being notified of them going offline. (unless the kill packet is lost) | |||
2014-05-08 | Merge branch 'master' into TCP | irungentoo | |
2014-05-04 | Added arrays to store packets on send/recv in net crypto. | irungentoo | |
Wrote down more of the protocol. Padding support has been added and implemented which will make it possible for us to pad packets to mitigate length related attacks. | |||
2014-05-01 | Protocol implementation is starting to look ok. | irungentoo | |
Still need to decide exactly how data packets will work though. | |||
2014-04-30 | Added number to cookie request/response packets to prevent possible | irungentoo | |
DoS issue. | |||
2014-04-29 | Some more work done on the middle network protocol. | irungentoo | |
Handshake most likely has no more possible flaws to it, next thing to do is to do the same with the data packets. Wrote a couple more functions. | |||
2014-04-28 | Added some functions to create/handle middle level protocol packets. | irungentoo | |