bump to version 0.7.26

This commit is contained in:
Sam
2023-11-19 16:38:53 +01:00
parent 51198bf584
commit 3e3297d0b9
113 changed files with 3933 additions and 3587 deletions

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 573 KiB

After

Width:  |  Height:  |  Size: 572 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 389 KiB

After

Width:  |  Height:  |  Size: 419 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 225 KiB

After

Width:  |  Height:  |  Size: 225 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

After

Width:  |  Height:  |  Size: 142 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 145 KiB

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 92 KiB

View File

@ -29,7 +29,7 @@ Prerequisites
- SMTP provider (if email sending is enabled)
- API key from a `weather data provider <installation.html#weather-data>`__
- `Poetry <https://poetry.eustace.io>`__ (for installation from sources only)
- `Node <https://nodejs.org>`__ 16+ and `Yarn <https://yarnpkg.com>`__ (for development only)
- `Node <https://nodejs.org>`__ 18+ and `Yarn <https://yarnpkg.com>`__ (for development only)
- Docker and Docker Compose (for development or evaluation purposes)
.. note::
@ -245,9 +245,9 @@ deployment method.
Provider for weather data (not mandatory), see `Weather data <installation.html#weather-data>`__.
.. envvar:: VUE_APP_API_URL
.. envvar:: VITE_APP_API_URL
**FitTrackee** API URL, only needed in dev environment.
.. versionchanged:: 0.7.26 ⚠️ replaces ``VUE_APP_API_URL``
@ -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.25):
- Download the last release (for now, it is the release v0.7.26):
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.25.tar.gz
$ tar -xzf v0.7.25.tar.gz
$ mv FitTrackee-0.7.25 FitTrackee
$ 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
$ 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.25) and overwrite existing files:
- Download the last release (for now, it is the release v0.7.26) and overwrite existing files:
.. code:: bash
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.25.tar.gz
$ tar -xzf v0.7.25.tar.gz
$ cp -R FitTrackee-0.7.25/* FitTrackee/
$ 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/
$ cd FitTrackee
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
@ -818,7 +818,7 @@ Installation
.. versionadded:: 0.4.4
For evaluation purposes, docker files are available, installing **FitTrackee** from **sources**.
For **evaluation** purposes, docker files are available, installing **FitTrackee** from **sources**.
- To install **FitTrackee**:
@ -894,7 +894,7 @@ Open http://localhost:3000
.. code-block:: bash
$ make docker-lint-client # run lint on javascript files
$ make docker-lint-client # run type check and lint on javascript files
$ make docker-test-client # run unit tests on Client
$ make docker-lint-python # run type check and lint on python files
$ make docker-test-python # run unit tests on API