From 3c4507dafabb0b16f4c1d6d5534ce207a370b669 Mon Sep 17 00:00:00 2001 From: Alessio Date: Sun, 14 Jul 2024 14:21:34 -0700 Subject: [PATCH] Update CHANGELOG.txt for v0.6.13 --- CHANGELOG.txt | 8 ++++++++ cmd/twitter/main.go | 2 +- doc/{curl requests => curl-requests} | 0 3 files changed, 9 insertions(+), 1 deletion(-) rename doc/{curl requests => curl-requests} (100%) 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