From 6f2ef8953ba17386543e2a740d8e8c15954d3715 Mon Sep 17 00:00:00 2001 From: Alessio Date: Thu, 9 Mar 2023 22:55:02 -0500 Subject: [PATCH] Update CHANGELOG.txt for v0.2.0 --- CHANGELOG.txt | 6 ++++++ build/build_dpkg.sh | 2 +- cmd/tests.sh | 4 ++++ doc/TODO.txt | 15 +++++++++++++++ 4 files changed, 26 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 02aca9e..a99d287 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -107,3 +107,9 @@ v0.1.8 - Add indexes to tweet content types to improve fetching performance (index `tweet_id`) - BUGFIX: can now fetch retweets with "visibility results" - BUGFIX: search changed how cursors work at end-of-feed + +v0.2.0 +------ + +- Add index on tweets user_id column to accelerate loading of user feeds +- Implement login and authenticated requests! diff --git a/build/build_dpkg.sh b/build/build_dpkg.sh index 19288f4..c844f60 100755 --- a/build/build_dpkg.sh +++ b/build/build_dpkg.sh @@ -25,7 +25,7 @@ mkdir dpkg_tmp/DEBIAN echo "Package: offline-twitter-engine Version: $1 Architecture: all -Maintainer: me@playfulpachyderm.com +Maintainer: alex@playfulpachyderm.com Installed-Size: 7998 Depends: Section: web diff --git a/cmd/tests.sh b/cmd/tests.sh index 2b4100e..ecabcf7 100755 --- a/cmd/tests.sh +++ b/cmd/tests.sh @@ -5,6 +5,10 @@ set -x PS4='+(${BASH_SOURCE}:${LINENO}): ' +if [[ -z "$OFFLINE_TWATTER_PASSWD" ]]; then + echo "OFFLINE_TWATTER_PASSWD not set! Exiting." + exit 1 +fi FAKE_VERSION="1.100.3489" ./compile.sh $FAKE_VERSION diff --git a/doc/TODO.txt b/doc/TODO.txt index c09f10e..18b6187 100644 --- a/doc/TODO.txt +++ b/doc/TODO.txt @@ -55,3 +55,18 @@ TODO implement-custom-unmarshal TODO twitter-spaces - add `is_details_available` flag + +TODO authenticated-requests +- likes tab +- media tab +- quote-tweets +- notifications + +TODO post-tweets +- post tweet +- liking / replying to / quoting / retweeting a tweet + +TODO fetch-DMs + +TODO spaces-timestamps-millis +- spaces timestamps are in milliseconds. Need to be converted to seconds