bump to version 0.7.24

This commit is contained in:
Sam
2023-10-04 17:40:59 +02:00
parent 1f3fe9eedb
commit fef27ceede
120 changed files with 4054 additions and 3678 deletions

View File

@ -1,5 +1,39 @@
# Change log
## Version 0.7.24 (2023/10/04)
### Bugs Fixed
* [PR#433](https://github.com/SamR1/FitTrackee/pull/433) - Handle encoded password in EMAIL_URL
### Translations
* [PR#427](https://github.com/SamR1/FitTrackee/pull/427) - fix typos and translations + refacto
* [PR#431](https://github.com/SamR1/FitTrackee/pull/431) - Translations update (Galician)
### Misc
* [PR#428](https://github.com/SamR1/FitTrackee/pull/428) - CI - Add PostgreSQL 16
* [2bcff2e](https://github.com/SamR1/FitTrackee/commit/2bcff2edc7308f8ec4a59b30dd482025bf7396e7) - API - update Flask to 3.0+
* [PR#436](https://github.com/SamR1/FitTrackee/pull/436) - CI - Add Python 3.12
* [PR#438](https://github.com/SamR1/FitTrackee/pull/438) - CI - update workflows
Translation status:
- Dutch: 100%
- English: 100%
- French: 100%
- Galician: 100%
- German: 100%
- Italian: 85%
- Norwegian Bokmål: 35%
- Polish: 100%
- Spanish: 100%
Thanks to the contributors:
- @xmgz
## Version 0.7.23 (2023/09/14)
### Bugs Fixed

View File

@ -287,6 +287,11 @@ For single-user instance, it is possible to disable email sending with an empty
A `CLI <cli.html#ftcli-users-update>`__ is available to activate account, modify email and password and handle data export requests.
.. versionchanged:: 0.7.24
Password can be encoded if it contains special characters.
For instance with password ``passwordwith@and&and?``, the encoded password will be: ``passwordwith%40and%26and%3F``.
Map tile server
^^^^^^^^^^^^^^^
@ -513,13 +518,13 @@ Production environment
.. warning::
| Note that FitTrackee is under heavy development, some features may be unstable.
- Download the last release (for now, it is the release v0.7.23):
- Download the last release (for now, it is the release v0.7.24):
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.23.tar.gz
$ tar -xzf v0.7.23.tar.gz
$ mv FitTrackee-0.7.23 FitTrackee
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.24.tar.gz
$ tar -xzf v0.7.24.tar.gz
$ mv FitTrackee-0.7.24 FitTrackee
$ cd FitTrackee
- Create **.env** from example and update it
@ -643,13 +648,13 @@ Prod environment
- Change to the directory where FitTrackee directory is located
- Download the last release (for now, it is the release v0.7.23) and overwrite existing files:
- Download the last release (for now, it is the release v0.7.24) and overwrite existing files:
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.23.tar.gz
$ tar -xzf v0.7.23.tar.gz
$ cp -R FitTrackee-0.7.23/* FitTrackee/
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.24.tar.gz
$ tar -xzf v0.7.24.tar.gz
$ cp -R FitTrackee-0.7.24/* FitTrackee/
$ cd FitTrackee
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).