Documented release

This commit is contained in:
jeancf 2023-01-03 11:08:00 +01:00
parent 97f6187e40
commit 98eecc2f59
2 changed files with 7 additions and 6 deletions

View File

@ -1,13 +1,14 @@
# Changelog # Changelog
**11 DEC 2022** **21 DEC 2022** VERSION 3.1.1
Modified code that made twoot incompatible with python versions < 3.10
VERSION 3.1 HOTFIX **11 DEC 2022** VERSION 3.1 HOTFIX
* Added missing `default.toml` file * Added missing `default.toml` file
* Corrected a bug that could cause an infinity loop when log file is empty * Corrected a bug that could cause an infinity loop when log file is empty
VERSION 3.0 brings some important changes and new features: **11 DEC 2022** VERSION 3.0 brings some important changes and new features:
* Only potentially breaking change: **If you are using a version of python < 3.11 you need to install the `tomli` module** * Only potentially breaking change: **If you are using a version of python < 3.11 you need to install the `tomli` module**
* Twoot can be configured with a config file in [TOML](https://toml.io/) format. Check `default.toml` for details * Twoot can be configured with a config file in [TOML](https://toml.io/) format. Check `default.toml` for details
@ -20,7 +21,6 @@ VERSION 3.0 brings some important changes and new features:
* The verbosity of logging messages can be set in the config file with `log_level=`. * The verbosity of logging messages can be set in the config file with `log_level=`.
* Config file option `log_days =` specifies how long to keep log messages in file. Older messages are deleted. * Config file option `log_days =` specifies how long to keep log messages in file. Older messages are deleted.
**23 NOV 2022** VERSION 2.5 Added command-line option (`-l`) to remove **23 NOV 2022** VERSION 2.5 Added command-line option (`-l`) to remove
redirection from links included in tweets. Obfuscated links are replaced redirection from links included in tweets. Obfuscated links are replaced
by the URL that the resource is directly downloaded from. Also improved by the URL that the resource is directly downloaded from. Also improved

View File

@ -3,9 +3,10 @@
Twoot is a python script that mirrors tweets from a twitter account to a Mastodon account. Twoot is a python script that mirrors tweets from a twitter account to a Mastodon account.
It is simple to set-up on a local machine, configurable and feature-rich. It is simple to set-up on a local machine, configurable and feature-rich.
**UPDATE 21 DEC 2022** VERSION 3.1.1 **UPDATE XX JAN 2023** VERSION 3.1.2
Modified code that made twoot incompatible with python versions < 3.10 * *Posting Privacy* setting of the Mastodon account now defines visibility of toots posted with Twoot
* Modified URL building for compatibility with Windows
> Previous updates can be found in CHANGELOG. > Previous updates can be found in CHANGELOG.