about summary refs log tree commit diff stats
path: root/vendor
Commit message (Collapse)AuthorAgeFilesLines
* Switched back to upstream curlcpp because my pull request was mergedKelly Rauchenberger2017-12-201-0/+0
|
* Fixed unpredictable media upload failureKelly Rauchenberger2017-12-201-0/+0
| | | | | | | | While uploading media worked in development, as well as on production when compiled in debug mode, it failed with memory corruption issues on production in release mode. This turned out to be because curlcpp was taking lvalue references to temporary std::string objects converted from string constants, instead of just copying the string pointer.
* Updated to nlohmann/json 2.0.9Kelly Rauchenberger2017-02-031-291/+1698
|
* Removed nlohmann/json submoduleKelly Rauchenberger2016-11-272-0/+10794
| | | | The submodule contained around 73MB of benchmarks and tests that are not necessary for inclusion in this project. Thus, the submodule has been removed, and the 2.0.7 release of nlohmann/json has been added to the repository.
* Updated curlcppKelly Rauchenberger2016-09-121-0/+0
|
* Updated API to use exceptions and make tweet/user objects more helpfulKelly Rauchenberger2016-08-201-0/+0
|
* Started implementing user streamsKelly Rauchenberger2016-05-201-0/+0
| | | | You can now start a user stream and end it yourself. If it disconnects abnormally, it will reconnect with a backoff as described by Twitter. Some data structures have some fields parsed now; tweets have IDs, text, and authors. Users have IDs, screen names, and names. Notifications from the stream are parsed completely. The ability to follow and unfollow users has also been added, as well as the ability to get a list of friends and followers, and to reply to a tweet.
* Added ability to upload media and tweet itKelly Rauchenberger2016-04-131-0/+0
| | | | Images (static and animated) and videos have been tested. Currently all media uploads occur in one large chunk; support to break down chunks will be added later.
* Added basic ability to tweetKelly Rauchenberger2016-04-123-0/+0