bump version to 0.7.3

This commit is contained in:
Sam
2022-11-01 19:58:12 +01:00
parent c275d4fb01
commit 42d373edb8
67 changed files with 777 additions and 579 deletions

View File

@ -1,5 +1,26 @@
# Change log
## Version 0.7.3 (2022/11/01)
### Features and enhancements
* [#112](https://github.com/SamR1/FitTrackee/issues/112) - allow user to change date format
* [#244](https://github.com/SamR1/FitTrackee/issues/231) - New sport type: "Virtual Ride"
Thanks to @jat255
### Bugs Fixed
* [#246](https://github.com/SamR1/FitTrackee/issues/246) - Add support to PostgreSQL 15
* [#247](https://github.com/SamR1/FitTrackee/issues/247) - Segments duration is displayed with microseconds
### Translations
* [PR#252](https://github.com/SamR1/FitTrackee/issues/252) - init Norwegian Bokmål translations files
**Note:** This release contains database migration (see upgrade instructions in [documentation](https://samr1.github.io/FitTrackee/installation.html#upgrade))
## Version 0.7.2 (2022/09/21)
### Translations

View File

@ -11,9 +11,10 @@ With the default configuration, `Open Street Map <https://www.openstreetmap.org>
Workouts
^^^^^^^^
- 11 sports are supported:
- 12 sports are supported:
- Cycling (Sport)
- Cycling (Transport)
- Cycling (Virtual) (**new in 0.7.3**)
- Hiking
- Mountain Biking
- Mountain Biking (Electric) (**new in 0.5.0**)
@ -81,6 +82,7 @@ Account & preferences
- 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*)
- A user can choose to display or hide ascent records and total on Dashboard (*new in 0.6.11*)
- A user can choose format used to display dates (*new in 0.7.3*)
- A user can set sport preferences (*new in 0.5.0*):
- change sport color (used for sport image and charts)
- can override stopped speed threshold (for next uploaded gpx files)

View File

@ -480,13 +480,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.2):
- Download the last release (for now, it is the release v0.7.3):
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.2.tar.gz
$ tar -xzf v0.7.2.tar.gz
$ mv FitTrackee-0.7.2 FitTrackee
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.3.tar.gz
$ tar -xzf v0.7.3.tar.gz
$ mv FitTrackee-0.7.3 FitTrackee
$ cd FitTrackee
- Create **.env** from example and update it
@ -606,13 +606,13 @@ Prod environment
- Change to the directory where FitTrackee directory is located
- Download the last release (for now, it is the release v0.7.2) and overwrite existing files:
- Download the last release (for now, it is the release v0.7.3) and overwrite existing files:
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.2.tar.gz
$ tar -xzf v0.7.2.tar.gz
$ cp -R FitTrackee-0.7.2/* FitTrackee/
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.3.tar.gz
$ tar -xzf v0.7.3.tar.gz
$ cp -R FitTrackee-0.7.3/* FitTrackee/
$ cd FitTrackee
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).