bump version to 0.5.5
This commit is contained in:
@ -1,5 +1,23 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.5.5 (2022/01/19)
|
||||
|
||||
### Issues Closed
|
||||
|
||||
#### New Features
|
||||
|
||||
* [#140](https://github.com/SamR1/FitTrackee/issues/140) - Add a fullscreen control to workout map
|
||||
* [#138](https://github.com/SamR1/FitTrackee/issues/138) - Add control to reset map to initial position
|
||||
* [#135](https://github.com/SamR1/FitTrackee/issues/135) - Start and finish markers
|
||||
* [#134](https://github.com/SamR1/FitTrackee/issues/134) - Wind direction
|
||||
|
||||
#### Bugs Fixed
|
||||
|
||||
* [877fa0f](https://github.com/SamR1/FitTrackee/commit/877fa0faaabc0130402638905fe04f84563eb278) - fix sport icon color (when changed) on calendar on small resolutions
|
||||
|
||||
In this release 4 issues were closed.
|
||||
|
||||
|
||||
## Version 0.5.4 (2022/01/01)
|
||||
|
||||
### Issues Closed
|
||||
|
@ -76,8 +76,12 @@ Workouts
|
||||
|
||||
- Dashboard with month calendar displaying workouts and record. The week can start on Sunday or Monday (which can be changed in the user preferences). The calendar displays up to 100 workouts.
|
||||
- Workout creation by uploading a gpx file (related data are stored in database with metric system). A workout can even be created without gpx (the user must enter date, time, duration and distance).
|
||||
- A workout with a gpx file can be displayed with map, weather (if the DarkSky API key is provided) and charts (speed and elevation). Segments can be displayed.
|
||||
- Workout gpx file can be downloaded (**new in 0.5.1**)
|
||||
- | A workout with a gpx file can be displayed with map and charts (speed and elevation).
|
||||
| Controls allow full screen view and position reset (**new in 0.5.5**).
|
||||
- | If DarkSky API key is provided, weather is displayed in workout detail.
|
||||
| Wind is displayed, with arrow indicating direction (a tooltip can be displayed with the direction that the wind is coming **from**) (**new in 0.5.5**).
|
||||
- Segments can be displayed.
|
||||
- Workout gpx file can be downloaded (**new in 0.5.1**)
|
||||
- Workout edition and deletion. User can add a note.
|
||||
- User statistics, by time period (week, month, year) and sport:
|
||||
- total distance
|
||||
|
@ -396,13 +396,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.5.4):
|
||||
- Download the last release (for now, it is the release v0.5.5):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.4.tar.gz
|
||||
$ tar -xzf v0.5.4.tar.gz
|
||||
$ mv FitTrackee-0.5.4 FitTrackee
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.5.tar.gz
|
||||
$ tar -xzf v0.5.5.tar.gz
|
||||
$ mv FitTrackee-0.5.5 FitTrackee
|
||||
$ cd FitTrackee
|
||||
|
||||
- Create **.env** from example and update it
|
||||
@ -477,13 +477,13 @@ Prod environment
|
||||
|
||||
- Change to the directory where FitTrackee directory is located
|
||||
|
||||
- Download the last release (for now, it is the release v0.5.4) and overwrite existing files:
|
||||
- Download the last release (for now, it is the release v0.5.5) and overwrite existing files:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.4.tar.gz
|
||||
$ tar -xzf v0.5.4.tar.gz
|
||||
$ cp -R FitTrackee-0.5.4/* FitTrackee/
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.5.5.tar.gz
|
||||
$ tar -xzf v0.5.5.tar.gz
|
||||
$ cp -R FitTrackee-0.5.5/* FitTrackee/
|
||||
$ cd FitTrackee
|
||||
|
||||
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
|
||||
|
Reference in New Issue
Block a user