Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-03-14 | There are many scenarios where the user would want to modify the | irungentoo | |
contents pointed by proxy_address. | |||
2015-03-13 | Remove TOX_FILE_KIND typedef. | irungentoo | |
2015-03-13 | Merge branch 'newer_api' of https://github.com/dubslow/toxcore into new_api | irungentoo | |
2015-03-13 | revert to TOX_FILE_KIND | Dubslow | |
2015-03-13 | File kind is now a uint32_t. | irungentoo | |
This allows clients to agree on what numbers mean what without having it be set in core. | |||
2015-03-13 | tox_file_send_chunk() must now send data the same length as requested | irungentoo | |
in the requested chunk callback. For zero size transfers if the data sent is not the same length, the file is assumed to be done. | |||
2015-03-13 | tox_friend_get_public_key() now does nothing when public_key is NULL. | irungentoo | |
2015-03-12 | Convert core code depending on the api | Dubslow | |
2015-03-12 | Added position parameter to tox_file_send_chunk(). | irungentoo | |
This is done so that the function now has the same parameters as the request chunk callback. | |||
2015-03-11 | This is a combination of 11 commits. | Dubslow | |
The first commit's message is: TOX_STATUS -> TOX_USER_STATUS, is more specific This is the 2nd commit message: I pretty strongly believe tox_iteration needs to be renamed to a verb There are several other noun functions in the API, but none of them *do* things. I think even tox_do is better than tox_iteration. tox_do_interval is one possibility, but I'm open to suggestions. This is the 3rd commit message: private_key -> secret_key This is more consistent with modern/NaCl/elliptic cryptography, and also "pk", meaning public key, is all over other toxcore code and documentation. This will eliminate ambiguity. This is the 4th commit message: Rename some functions for pseudo-namespace consistency The enum change results in long enum types, but I think consistency trumps having a few less characters. This is the 5th commit message: TOX_FILE_KIND -> TOX_FILE_TYPE This is more of an English thing than a consistency thing, but TOX_FILE_KIND sounds funnier/stranger to me than TOX_FILE_TYPE. This is the 6th commit message: More specific file control function names This is the 7th commit message: Rename custom packet functions for pseudo-namespace consistency This also has the issue with long enums... but I still think consistent enum names are better This is the 8th commit message: Rename functions for pseudo-namespace consistency This is the 9th commit message: Consistency with https://github.com/sonOfRa/tox4j/blob/master/doc/core-design.md#naming-conventions and the rest of the api This is the 10th commit message: Fix errors in previous function rename commits This is the 11th commit message: Shorten one error enum name | |||
2015-03-10 | Added group chat functions to the public api. | irungentoo | |
Since the functions are not new api like I put them in tox_old.{c,h} | |||
2015-03-10 | Implementation of new api file transfers. | irungentoo | |
Everything should work except resuming. | |||
2015-03-05 | enums are no longer typedefed to uint8_t. | irungentoo | |
2015-03-02 | Merge branch 'port_range_option' of https://github.com/saneki/toxcore into ↵ | irungentoo | |
new_api | |||
2015-02-27 | Realign toxencryptsave with new API | Dubslow | |
2015-02-27 | Allow for specifying the port range to use in Tox_Options | saneki | |
2015-02-20 | Merge branch 'fixed-receipts' into new_api | irungentoo | |
2015-02-18 | Put const adjective before type nouns | Dubslow | |
(Done with two applications of "sed -i -r "s/(\\w+) const\\b/const \\1/g" toxcore/tox.*" ) Conflicts: toxcore/tox.c | |||
2015-02-18 | Apparently enums are bad for wrappers and doing this makes wrapping | irungentoo | |
toxcore easier. | |||
2015-02-17 | More new api functions implemented. | irungentoo | |
Some small self explainatory changes to the api. | |||
2015-02-16 | More new api work done. | irungentoo | |
m_copy_self_statusmessage no longer takes a buffer length argument. | |||
2015-02-15 | New api progress. | irungentoo | |
2015-02-14 | A bit of new api work done. | irungentoo | |
2015-02-13 | Started implementing new Tox api. | irungentoo | |
2015-01-29 | Api break. | irungentoo | |
TOX_CLIENT_ID_SIZE renamed to TOX_PUBLIC_KEY_SIZE. Renamed client_id to public_ke in public api. | |||
2014-12-26 | Make it possible to port clients to the new api by just replacing | irungentoo | |
proxy_enabled with proxy_type. | |||
2014-12-21 | Further refactoring of proxy code | Maxim Biro | |
2014-12-21 | Some refactoring of proxy code | Maxim Biro | |
2014-12-13 | Added HTTP proxy support | Maxim Biro | |
2014-12-10 | Add define for the maximum length of the friend request to the public api. | irungentoo | |
2014-12-09 | Merge branch 'more_consistent_custom_packet_handlers' of ↵ | irungentoo | |
https://github.com/wrouesnel/toxcore | |||
2014-12-09 | Change prototype for custom_packet_handler functions | Will Rouesnel | |
Change the custom_packet_handler callback function interface to be consistent with other callback interfaces. The new interface takes the Messenger object calling as the first parameter, and moves the user data object to be the last parameter. This makes it comparable to the callbacks for file transfer and the like, and should simplify building interfaces. The new prototype is: int (*)(Messenger *m, int32_t friendnumber, const uint8_t *data, uint32_t len, void *object) | |||
2014-12-01 | Comment fix. | irungentoo | |
2014-11-19 | get peer pubkey api | dubslow | |
2014-11-15 | Some modifications to the last pull request. | irungentoo | |
2014-11-14 | add api function to get group title | Jfreegman | |
2014-11-13 | Merge branch 'titles' of https://github.com/dubslow/toxcore | irungentoo | |
2014-11-11 | fix type checking | dubslow | |
2014-11-11 | public api, finishing tweaks | dubslow | |
2014-11-11 | Added function to get groupchat type. | irungentoo | |
2014-11-10 | Group chats now have types. | irungentoo | |
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 |