bump version to 0.6.9
This commit is contained in:
@ -1,5 +1,34 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.6.9 (2022/07/03)
|
||||
|
||||
FitTrackee is now available in German (thanks to @gorgobacka).
|
||||
And translations can be updated on Weblate.
|
||||
|
||||
### Issues Closed
|
||||
|
||||
#### Features
|
||||
|
||||
* [#200](https://github.com/SamR1/FitTrackee/issues/200) - Detect browser language to use matching translation if available
|
||||
|
||||
#### Bugs Fixed
|
||||
|
||||
* [PR#208](https://github.com/SamR1/FitTrackee/pull/208) - fix order on records cards
|
||||
* [#201](https://github.com/SamR1/FitTrackee/issues/201) - html lang attribute is not updated when changing language
|
||||
|
||||
#### Translations
|
||||
|
||||
* [PR#197](https://github.com/SamR1/FitTrackee/pull/197) - Translations update from Weblate (French)
|
||||
* [#196](https://github.com/SamR1/FitTrackee/issues/196) - Use translation management tool
|
||||
* [#190](https://github.com/SamR1/FitTrackee/issues/190) - Add German translation
|
||||
|
||||
In this release 4 issues were closed.
|
||||
|
||||
Thanks to the contributors:
|
||||
- @gorgobacka
|
||||
- J. Lavoie (from Weblate)
|
||||
|
||||
|
||||
## Version 0.6.8 (2022/06/22)
|
||||
|
||||
### Issues Closed
|
||||
@ -16,7 +45,7 @@
|
||||
Note: it does not affect previously imported files
|
||||
* [cc4287e](https://github.com/SamR1/FitTrackee/commit/cc4287ed327faaba268a0c689841d16a7aecc3fb) - Fix docker env file
|
||||
|
||||
In this release 3 issues was closed.
|
||||
In this release 3 issues were closed.
|
||||
|
||||
## Version 0.6.7 (2022/06/11)
|
||||
|
||||
|
@ -60,6 +60,7 @@ Workouts
|
||||
Account & preferences
|
||||
^^^^^^^^^^^^^^^^^^^^^
|
||||
- A user can create, update and deleted his account.
|
||||
- On registration, the user account is created with selected language in dropdown as user preference (*new in 0.6.9*).
|
||||
- After registration, the user account is inactive and an email with confirmation instructions is sent to activate it.
|
||||
A user with an inactive account cannot log in. (*new in 0.6.0*)
|
||||
|
||||
|
@ -95,9 +95,9 @@ deployment method.
|
||||
|
||||
.. versionadded:: 0.4.0
|
||||
|
||||
Directory containing uploaded files.
|
||||
**Absolute path** to the directory where `uploads` folder will be created.
|
||||
|
||||
:default: `fittrackee/uploads/`
|
||||
:default: `<application_directory>/fittrackee`
|
||||
|
||||
.. danger::
|
||||
| With installation from PyPI, the directory will be located in
|
||||
@ -395,13 +395,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.6.8):
|
||||
- Download the last release (for now, it is the release v0.6.9):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.6.8.tar.gz
|
||||
$ tar -xzf v0.6.8.tar.gz
|
||||
$ mv FitTrackee-0.6.8 FitTrackee
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.6.9.tar.gz
|
||||
$ tar -xzf v0.6.9.tar.gz
|
||||
$ mv FitTrackee-0.6.9 FitTrackee
|
||||
$ cd FitTrackee
|
||||
|
||||
- Create **.env** from example and update it
|
||||
@ -521,13 +521,13 @@ Prod environment
|
||||
|
||||
- Change to the directory where FitTrackee directory is located
|
||||
|
||||
- Download the last release (for now, it is the release v0.6.8) and overwrite existing files:
|
||||
- Download the last release (for now, it is the release v0.6.9) and overwrite existing files:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.6.8.tar.gz
|
||||
$ tar -xzf v0.6.8.tar.gz
|
||||
$ cp -R FitTrackee-0.6.8/* FitTrackee/
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.6.9.tar.gz
|
||||
$ tar -xzf v0.6.9.tar.gz
|
||||
$ cp -R FitTrackee-0.6.9/* FitTrackee/
|
||||
$ cd FitTrackee
|
||||
|
||||
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
|
||||
|
@ -19,4 +19,10 @@ Administrator
|
||||
|
||||
fittrackee.emails.exceptions.InvalidEmailUrlScheme
|
||||
|
||||
A valid ``EMAIL_URL`` must be provided (see `emails <../installation.html#emails>`__).
|
||||
A valid ``EMAIL_URL`` must be provided (see `emails <../installation.html#emails>`__).
|
||||
|
||||
|
||||
`Map images are not displayed but map is shown in Workout detail`
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
- Check the path in `environment variables <../installation.html#envvar-UPLOAD_FOLDER>`__. ``UPLOAD_FOLDER`` must be set with an absolute path.
|
Reference in New Issue
Block a user