about summary refs log tree commit diff stats
path: root/vendor
Commit message (Collapse)AuthorAgeFilesLines
* Updated curlcpp (important bug fixes)Kelly Rauchenberger2017-12-171-0/+0
| | | | | | | | | | | | | | | | | | | This update fixes the underlying issue behind an infinite-stalling bug that has been around since differencebot was written. The four bots that download images from ImageNet (difference, advice, grunge, capital) had the same small logic error whereby the catch block, written to handle the situation when an image had failed to download, incorrectly took the exception by value rather than by const reference. While inefficient, this should not have caused any problems, but curlcpp, which the four bots all use through libtwitter++'s dependence on it, had a bug in the copy constructor of the curl_exception object which could cause a deadlock situation. This went unnoticed for a while, despite the four bots having serious downtime issues. When this was discovered, the bots were patched so that the relevant catch block took the exception by const reference. While this fixed things, it is also prudent to update curlcpp to the newest version in which this bug has been fixed. refs JosephP91/curlcpp#100
* 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