diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 53392bc..916e668 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -319,3 +319,11 @@ v0.6.12 - Add support for scraping bookmarks (not making them, yet) - Publish statically linked builds only - Various minor bugfixes + +v0.6.13 +------- + +- BUGFIX: no longer throws away all scrape results if a pagination request gets rate-limited +- BUGFIX: can now start the webserver without an internet connection +- UI improvements: + - image carousel now closes if you click outside of it diff --git a/cmd/twitter/main.go b/cmd/twitter/main.go index 12d67df..74a7275 100644 --- a/cmd/twitter/main.go +++ b/cmd/twitter/main.go @@ -182,7 +182,7 @@ func main() { download_tweet_content(target) case "search": search(target, *how_many) - case "follow": + case "follow": // TODO: update these to use Lists follow_user(target, true) case "unfollow": follow_user(target, false) diff --git a/doc/curl requests b/doc/curl-requests similarity index 100% rename from doc/curl requests rename to doc/curl-requests