* 16 Arrnounced now supports an arbitrary number of backends (Sonarr/Radarr/Lidarr)
* Config option added to [download torrent files with HTTPS](https://github.com/weannounce/arrnounced/blob/master/example.toml#L76)
Due to the changes in 16 the configuration format was changed to TOML. Ini was used before which have deceivingly similar syntax. TOML is much better defined and had better support for the changed needed for 16. Below follows a list to aid you in updating your configuration.
* Example of TOML format -> [https://learnxinyminutes.com/docs/toml/](https://learnxinyminutes.com/docs/toml/)
* Quote strings
* Boolean values: true/false
* Integers unchanged
* Backends moved to [subsection `[backends.<backend name>]`](https://github.com/weannounce/arrnounced/blob/master/example.toml#L25)
* Specify backend type with the [`type` option](https://github.com/weannounce/arrnounced/blob/master/example.toml#L28)
* Trackers moved to [subsection `[trackers.<tracker type>]`](https://github.com/weannounce/arrnounced/blob/master/example.toml#L48)
* Always notify a backend with the [`notify_backends` option](https://github.com/weannounce/arrnounced/blob/master/example.toml#L84)
* Tracker categories are moved to [subsection `[trackers.<tracker type>.category]`](https://github.com/weannounce/arrnounced/blob/master/example.toml#L89)
* Tracker settings are moved [subsection `[trackers.<tracker type>.settings]`](https://github.com/weannounce/arrnounced/blob/master/example.toml#L103)
* Tracker types with periods are now supported. Before: `[tvt_ro]`, now: `[trackers."tvt.ro"]`
* The configuration library is changed, rerun `pip install --user -r requirements.txt` if you are not using Docker
The example config is updated to show the changes, [example.toml](https://github.com/weannounce/arrnounced/blob/master/example.toml)