From 3b815516818b72f37127755e4f39c337fe47f225 Mon Sep 17 00:00:00 2001 From: Alessio Date: Mon, 19 Feb 2024 18:05:23 -0800 Subject: [PATCH] Update CHANGELOG.txt for v0.6.2 --- CHANGELOG.txt | 13 +++++++++++++ doc/TODO.txt | 23 +++++++++++++++++------ doc/release_process.md | 1 - 3 files changed, 30 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index c3e52b2..41ca26c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -218,3 +218,16 @@ v0.6.1 - spinner now shows when loading / fetching tweets - on errors, an error toast notification now shows - Add followers/followees pages and queries + +v0.6.2 +------ + +- make all timestamps across the app use milliseconds (previously used both seconds or milliseconds in different places) +- add `get_user_likes_all` subcommand +- UI improvements: + - make end-of-feed indicator look better + - add favicon +- Bugfixes: + - fix clobbering of interaction stats if a tweet is deleted (previously they'd all get set to 0) + - fix double HTMX spinner on tweets with quoted tweet + - fix focused tweets being clickable diff --git a/doc/TODO.txt b/doc/TODO.txt index 675a48b..68f2b27 100644 --- a/doc/TODO.txt +++ b/doc/TODO.txt @@ -87,6 +87,12 @@ TODO: scrape-followed-users-list TODO: newer-version-tombstone - Preserve tombstone after re-scraping +TODO: failed-tweets +- https://twitter.com/_HARVEY__DENT_/status/1755665502385377720 + +TODO: new-content-type +- https://twitter.com/itsbackwereover/status/1757947530506043872 + Webserver --------- @@ -113,7 +119,7 @@ TODO: paste-twitter-urls-in-search-bar TODO: ui-deuglifying - "Follow" / "Unfollow" button -- "End of feed" indicator +- "Show more" button at end of feed TODO: show-errors-in-UI - if an HTTP request fails, show an error in the UI somehow @@ -121,14 +127,19 @@ TODO: show-errors-in-UI TODO: refactor-compound_queries_test-file - Move the tests for user feeds into the compound_queries_ssf_test file -TODO: search-bar/preserve-contents-on-search -- When performing a search, keep the search text in the search bar - TODO: features-from-qt-version - Add all features from the Qt app to the web UI - when previous tweet in thread is missing, put a "fetch tweet" button to get it - Create a default profile on first launch -TODO: dms-embedded-image-and-video +TODO: dms +- embedded image and video +- unshorten URLs / show previews +- remove empty text bubble for no text-content posts, e.g., shared tweets +- fetch chat room history on opening -TODO: dms-unshorten-urls +TODO: search-terms-highlighted +- on Search page, highlight matches for the search keywords + +TODO: htmx-spinner-user-feed +- should cover the user profile header? whole visible page? diff --git a/doc/release_process.md b/doc/release_process.md index 5577f16..0e6c9ea 100644 --- a/doc/release_process.md +++ b/doc/release_process.md @@ -2,6 +2,5 @@ - update CHANGELOG.txt - if `persistence/schema.sql` has changed since last release: - - bump ENGINE_DATABASE_VERSION in `persistence/versions.go` - add an entry to MIGRATIONS in `persistence/versions.go` - checkout a branch `release-x.y.z` with the version number x.y.z and push it