diff --git a/CHANGELOG.md b/CHANGELOG.md index 35a41fcb..4faf2ea1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,16 @@ # Changelog +## 3.2.11 (2024-03-17) +## New Features +- OCR to read the post owner if the obj is missing in the feed job (optional) +- `restart-atx-agent: bool` to restart the atx-agent before starting the bot +- `kill-atx-agent: bool` to kill the atx-agent when the script ends +### Fix +- feed sponsored detection +- Telegram wrong keys and order +## Misc +- message in telegram now looks more like it did before pandas were removed +## Test +- improved telegram test ## 3.2.10 (2024-03-09) ### Fix - account selecting @@ -6,7 +18,6 @@ - better logging for the user ### Others - test for load and clean txt file - ## 3.2.9 (2024-02-10) ### Fix - remove pandas as dependency for telegram reports diff --git a/GramAddict/__init__.py b/GramAddict/__init__.py index 82f18f0d..fa04168f 100644 --- a/GramAddict/__init__.py +++ b/GramAddict/__init__.py @@ -1,6 +1,6 @@ """Human-like Instagram bot powered by UIAutomator2""" -__version__ = "3.2.10" +__version__ = "3.2.11" __tested_ig_version__ = "300.0.0.29.110" from GramAddict.core.bot_flow import start_bot diff --git a/GramAddict/version.py b/GramAddict/version.py index 9f2df45c..0b40b1d5 100644 --- a/GramAddict/version.py +++ b/GramAddict/version.py @@ -1,2 +1,2 @@ # that file is deprecated, current version is now stored in GramAddict/__init__.py -__version__ = "3.2.10" +__version__ = "3.2.11"