bump to version 0.7.27

This commit is contained in:
Sam
2023-12-20 19:44:22 +01:00
parent 4bbd6925c1
commit 910beaeffc
115 changed files with 4818 additions and 4328 deletions

View File

@ -1,5 +1,46 @@
# Change log
## Version 0.7.27 (2023/12/20)
### Features and enhancements
* [#113](https://github.com/SamR1/FitTrackee/issues/113) - add a dark mode
* [PR#464](https://github.com/SamR1/FitTrackee/pull/464) - Update user preferences display
* [PR#471](https://github.com/SamR1/FitTrackee/pull/471) - add new sport: "Cycling (Trekking)"
### Bugs Fixed
* [PR#469](https://github.com/SamR1/FitTrackee/pull/469) - change UI display only on login ou user preferences update
* [PR#472](https://github.com/SamR1/FitTrackee/pull/472) - fix redirection when resetting password
### Translations
* [PR#468](https://github.com/SamR1/FitTrackee/pull/468) - Translations update (Galician & Spanish)
### Misc
* [#456](https://github.com/SamR1/FitTrackee/issues/456) - Drop PostgreSQL 11 support
Translation status:
- Dutch: 99%
- English: 100%
- French: 100%
- Galician: 99%
- German: 99%
- Italian: 85%
- Norwegian Bokmål: 61%
- Polish: 99%
- Spanish: 99%
Thanks to the contributors:
- @DavidHenryThoreau
- @gallegonovato
- @xmgz
**Note:** This release contains database migration (see upgrade instructions in [documentation](https://samr1.github.io/FitTrackee/en/installation.html#upgrade))
## Version 0.7.26 (2023/11/19)
### Bugs Fixed

View File

@ -4,16 +4,17 @@ Features
| **FitTrackee** allows you to store and display gpx files and some statistics from your outdoor activities.
| For now, this app is kind of a single-user application. Even if several users can register, a user can only view his own workouts.
Gpx files are stored in an upload directory (without encryption).
Gpx files are stored in an upload directory (**without encryption**).
With the default configuration, `Open Street Map <https://www.openstreetmap.org>`__ is used as tile server in Workout detail and for static map generation.
Workouts
^^^^^^^^
- 14 sports are supported:
- 17 sports are supported:
- Cycling (Sport)
- Cycling (Transport)
- Cycling (Trekking) (*new in 0.7.27*)
- Cycling (Virtual) (*new in 0.7.3*)
- Hiking
- Mountain Biking
@ -109,6 +110,7 @@ Account & preferences
In case email sending is not configured, a `command line <cli.html#ftcli-users-update>`__ allows to activate users account.
- A user can set language, timezone and first day of week.
- A user can set the interface theme (light, dark or according to browser preferences). The default value is **browser preferences**. When the dark or light theme is set, it overrides browser preferences (*new in 0.7.27*).
- A user can reset his password (*new in 0.3.0*)
- A user can change his email address (*new in 0.6.0*)
- A user can choose between metric system and imperial system for distance, elevation and speed display (*new in 0.5.0*)

View File

@ -23,7 +23,7 @@ Prerequisites
- mandatory
- Python >= 3.8.1
- PostgreSQL 11+
- PostgreSQL 12+
- optional
- Redis for task queue (if email sending is enabled and for data export requests) and API rate limits
- SMTP provider (if email sending is enabled)
@ -518,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.26):
- Download the last release (for now, it is the release v0.7.27):
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.26.tar.gz
$ tar -xzf v0.7.26.tar.gz
$ mv FitTrackee-0.7.26 FitTrackee
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.27.tar.gz
$ tar -xzf v0.7.27.tar.gz
$ mv FitTrackee-0.7.27 FitTrackee
$ cd FitTrackee
- Create **.env** from example and update it
@ -648,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.26) and overwrite existing files:
- Download the last release (for now, it is the release v0.7.27) and overwrite existing files:
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.26.tar.gz
$ tar -xzf v0.7.26.tar.gz
$ cp -R FitTrackee-0.7.26/* FitTrackee/
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.27.tar.gz
$ tar -xzf v0.7.27.tar.gz
$ cp -R FitTrackee-0.7.27/* FitTrackee/
$ cd FitTrackee
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).