From d93033352eb632ed4930b6658b0ad0c5d0d9ae96 Mon Sep 17 00:00:00 2001 From: Alessio Date: Wed, 7 Jun 2023 15:44:25 -0300 Subject: [PATCH] Update CHANGELOG.txt for v0.2.1 --- CHANGELOG.txt | 8 ++++++++ build/build_dpkg.sh | 2 +- doc/TODO.txt | 15 +++++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index a99d287..e22985e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -113,3 +113,11 @@ v0.2.0 - Add index on tweets user_id column to accelerate loading of user feeds - Implement login and authenticated requests! + +v0.2.1 +------ + +- BUGFIX: fix cursors being broken in authenticated sessions +- BUGFIX: fix stats for likes, RTs, etc. getting erased if a tweet gets deleted or hidden +- BUGFIX: `fetch_tweet` and `search` subcommands no longer ignore the `-n [number]` flag +- No longer require ".session" extension for the `--session` flag, can just specify as the user handle diff --git a/build/build_dpkg.sh b/build/build_dpkg.sh index c844f60..986ba09 100755 --- a/build/build_dpkg.sh +++ b/build/build_dpkg.sh @@ -26,7 +26,7 @@ echo "Package: offline-twitter-engine Version: $1 Architecture: all Maintainer: alex@playfulpachyderm.com -Installed-Size: 7998 +Installed-Size: `du -k dpkg_tmp | tail -n 1 | cut -f 1` Depends: Section: web Priority: optional diff --git a/doc/TODO.txt b/doc/TODO.txt index 18b6187..b1d8242 100644 --- a/doc/TODO.txt +++ b/doc/TODO.txt @@ -70,3 +70,18 @@ TODO fetch-DMs TODO spaces-timestamps-millis - spaces timestamps are in milliseconds. Need to be converted to seconds + +TODO fix-spaces-participants-duplicates +- It is creating a new copy of the participants every time it gets scraped again + +TODO scrape-spaces-participants-admin +- distinguish whether someone was an admin in the space or not + +TODO authenticated-not-fetching-images +- Images in tweets don't fetch when you're authenticated + +TODO tweets-with-italics +- https://twitter.com/exit_org/status/1656813511572443141 + +TODO authenticated-only-request-warning +- warn when attempting to run requests which require authentication without a session active