Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-30 | Missing cv-qualifiers in tox.h comments | Tux3 / Mlkj / !Lev.uXFMLA | |
2014-10-15 | re-implement copy_chatlist function | Jfreegman | |
2014-10-14 | Add function to check if the peernumber is ours for group chats. | irungentoo | |
2014-10-02 | Fixed tox_load() comment. | irungentoo | |
2014-09-28 | Merge branch 'unset_avatar' of https://github.com/JFreegman/toxcore | irungentoo | |
2014-09-27 | Merge branch 'update-avatar-docs' of https://github.com/ittner/toxcore | irungentoo | |
2014-09-26 | add API function to unset avatar | Jfreegman | |
2014-09-26 | Group chats are starting to work. | irungentoo | |
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-25 | Tox object doesn't need to be passed to tox_hash. | irungentoo | |
2014-09-24 | remove tox_avatar_hash | dubslow | |
2014-09-24 | housekeeping | dubslow | |
2014-09-22 | Some fixes to avatar pull request. | irungentoo | |
Some bug fixes. Grouped all avatar related functions in the same place in tox.h | |||
2014-09-22 | Merge branch 'avatars' of https://github.com/ittner/toxcore | irungentoo | |
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-11 | testing works, but doesn't pass... | Dubslow | |
2014-09-11 | Add magic number, auto tests still required | Dubslow | |
2014-09-09 | compiling against nacl seems to break VANILLA_NACL... | Dubslow | |
2014-09-09 | Merge branch 'master' into encrypted_data | Dubslow | |
2014-09-05 | Added custom packet functions to public tox api. | irungentoo | |
This should make it easy for people to use toxcore to power many types of networked applications. | |||
2014-09-03 | Merge branch 'master' into encrypted_data | Dubslow | |
2014-09-03 | Added encrypted save to toxcore, if sodium is used | Dubslow | |
Note, this is untested | |||
2014-09-03 | Fixed typo. | irungentoo | |
2014-09-02 | Expose the tox_add_tcp_relay() function in the public api. | irungentoo | |
Clients can use this function to make Tox connect to user specified TCP relays. | |||
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-08-27 | Removed send withid functions from api. | irungentoo | |
2014-08-23 | Removed now deprecated function. | irungentoo | |
2014-08-14 | Modified tox_bootstrap_from_address() function. | irungentoo | |
PORT IS NO LONGER PASSED IN NETWORK BYTE ORDER. Removed useless ipv6enabled parameter. | |||
2014-08-14 | Added disabling of UDP and basic SOCKS5 proxy support to public API. | irungentoo | |
tox_new() now takes a Tox_Options struct as argument. If a NULL pointer is passed to that struct, defaults are used. | |||
2014-08-04 | The receiver of a file now needs to confirm that he did receive it | irungentoo | |
correctly. This should fix an issue that happened when both clients got disconnected when the file was almost finished sending. The sender would show that the file had been sent successfully when it had not. See the modifications to tox.h | |||
2014-07-30 | Added function to get public and private key from Tox object. | irungentoo | |
2014-07-14 | Fixed file sending documentation. | irungentoo | |
2014-07-13 | Fixed documentation comment errors | Jin^eLD | |
2014-07-06 | Typo fix. | irungentoo | |
2014-07-02 | Merge branch 'const_correctness' of https://github.com/schuetzm/ProjectTox-Core | irungentoo | |
2014-06-30 | Const-correctness for tox.c | Marc Schütz | |
2014-06-30 | Const correctness for toxcore/Messenger.c and related files | Marc Schütz | |
2014-06-10 | Fixed some warnings. | irungentoo | |
2014-06-10 | Astyle and fixes. | irungentoo | |
2014-06-10 | Const correctness in various interdependent files | Marc Schütz | |
2014-06-02 | Added instructions on how to pause/resume file transfers. | irungentoo | |
2014-06-01 | Fixed TOX_MAX_MESSAGE_LENGTH define. | irungentoo | |
Removed some useless code from toxcore. Astyled core code with new version of astyle. | |||
2014-05-30 | Renamed tox_do_run_interval to tox_do_interval. | irungentoo | |
tox_do_interval now returns a time in ms based on how much action is going on in net_crypto. | |||
2014-05-30 | Replaced tox_wait* functions with tox_do_run_interval(). | irungentoo | |
Build system fixes. | |||
2014-05-26 | Fixed possible issue. | irungentoo | |
2014-05-08 | Merge branch 'master' into TCP | irungentoo | |
2014-04-21 | Crypto related cleanups. | irungentoo | |
Moved Bunch of functions from net_crypto to crypto_core. decrypt_data_fast and decrypt_data_symmetric were the same thing therefore, removed decrypt_data_fast. Replaced all the crypto_secretbox_* defines with the equivalent crypto_box_* one. New define: crypto_box_KEYBYTES that is equal to crypto_box_BEFORENMBYTES. | |||
2014-04-19 | Removed deprecated function from public api. | irungentoo | |
Added upper length check to friendreq_handlepacket(). | |||
2014-04-16 | multiple spelling fixes | Carlos E. Garcia | |
2014-04-08 | Include 'netinet/in_systm.h' on OpenBSD | Dmitrij D. Czarkoff | |
Otherwise 'n_time' is undefined. |