Update CHANGELOG.txt for v0.6.13

This commit is contained in:
Alessio 2024-07-14 14:21:34 -07:00
parent a9a7af2195
commit 3c4507dafa
3 changed files with 9 additions and 1 deletions

View File

@ -319,3 +319,11 @@ v0.6.12
- Add support for scraping bookmarks (not making them, yet) - Add support for scraping bookmarks (not making them, yet)
- Publish statically linked builds only - Publish statically linked builds only
- Various minor bugfixes - 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

View File

@ -182,7 +182,7 @@ func main() {
download_tweet_content(target) download_tweet_content(target)
case "search": case "search":
search(target, *how_many) search(target, *how_many)
case "follow": case "follow": // TODO: update these to use Lists
follow_user(target, true) follow_user(target, true)
case "unfollow": case "unfollow":
follow_user(target, false) follow_user(target, false)