Update CHANGELOG.txt for v0.2.1

This commit is contained in:
Alessio 2023-06-07 15:44:25 -03:00
parent b37977145a
commit d93033352e
3 changed files with 24 additions and 1 deletions

View File

@ -113,3 +113,11 @@ v0.2.0
- Add index on tweets user_id column to accelerate loading of user feeds - Add index on tweets user_id column to accelerate loading of user feeds
- Implement login and authenticated requests! - 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

View File

@ -26,7 +26,7 @@ echo "Package: offline-twitter-engine
Version: $1 Version: $1
Architecture: all Architecture: all
Maintainer: alex@playfulpachyderm.com Maintainer: alex@playfulpachyderm.com
Installed-Size: 7998 Installed-Size: `du -k dpkg_tmp | tail -n 1 | cut -f 1`
Depends: Depends:
Section: web Section: web
Priority: optional Priority: optional

View File

@ -70,3 +70,18 @@ TODO fetch-DMs
TODO spaces-timestamps-millis TODO spaces-timestamps-millis
- spaces timestamps are in milliseconds. Need to be converted to seconds - 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