Merge branch 'release-v0.7.19'
76
.github/workflows/.tests-python.yml
vendored
@ -15,12 +15,12 @@ env:
|
||||
|
||||
jobs:
|
||||
python:
|
||||
name: python ${{ matrix.python-version }} (postgresql 14)
|
||||
name: python ${{ matrix.python-version }} (postgresql 15)
|
||||
runs-on: ubuntu-latest
|
||||
container: python:${{ matrix.python-version }}
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:14
|
||||
image: postgres:15
|
||||
env:
|
||||
POSTGRES_DB: fittrackee_test
|
||||
POSTGRES_USER: fittrackee
|
||||
@ -42,24 +42,24 @@ jobs:
|
||||
poetry config virtualenvs.create false
|
||||
poetry install --no-interaction --quiet
|
||||
- name: Bandit
|
||||
if: matrix.python-version == '3.10'
|
||||
if: matrix.python-version == '3.11'
|
||||
run: bandit -r fittrackee -c pyproject.toml
|
||||
- name: Lint (isort & black)
|
||||
if: matrix.python-version == '3.10'
|
||||
if: matrix.python-version == '3.11'
|
||||
run: pytest --isort --black -m "isort or black" fittrackee e2e --ignore=fittrackee/migrations -p no:warnings
|
||||
- name: Lint (flake8)
|
||||
if: matrix.python-version == '3.10'
|
||||
if: matrix.python-version == '3.11'
|
||||
run: flake8 fittrackee e2e
|
||||
- name: Mypy
|
||||
if: matrix.python-version == '3.10'
|
||||
if: matrix.python-version == '3.11'
|
||||
run: mypy fittrackee
|
||||
- name: Pytest
|
||||
run: pytest fittrackee -p no:warnings --cov fittrackee --cov-report term-missing
|
||||
|
||||
postgresql:
|
||||
name: postgresql ${{ matrix.psql-version }} (python 3.10)
|
||||
name: postgresql ${{ matrix.psql-version }} (python 3.11)
|
||||
runs-on: ubuntu-latest
|
||||
container: python:3.10
|
||||
container: python:3.11
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:${{ matrix.psql-version }}
|
||||
@ -74,7 +74,7 @@ jobs:
|
||||
--health-retries 5
|
||||
strategy:
|
||||
matrix:
|
||||
psql-version: [ "11", "12", "13", "15" ]
|
||||
psql-version: [ "11", "12", "13", "14" ]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Poetry and Dependencies
|
||||
@ -87,12 +87,13 @@ jobs:
|
||||
run: pytest fittrackee -p no:warnings --cov fittrackee --cov-report term-missing
|
||||
|
||||
end2end:
|
||||
name: e2e tests
|
||||
runs-on: ubuntu-latest
|
||||
needs: ["python"]
|
||||
container: python:3.10
|
||||
container: python:3.11
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:14
|
||||
image: postgres:15
|
||||
env:
|
||||
POSTGRES_DB: fittrackee_test
|
||||
POSTGRES_USER: fittrackee
|
||||
@ -129,3 +130,56 @@ jobs:
|
||||
sleep 5
|
||||
nohup flask worker --processes=1 >> nohup.out 2>&1 &
|
||||
pytest e2e --driver Remote --capability browserName firefox --selenium-host selenium --selenium-port 4444
|
||||
|
||||
end2end_package:
|
||||
name: e2e tests with package
|
||||
runs-on: ubuntu-latest
|
||||
needs: ["python"]
|
||||
container: python:3.11
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:15
|
||||
env:
|
||||
POSTGRES_DB: fittrackee_test
|
||||
POSTGRES_USER: fittrackee
|
||||
POSTGRES_PASSWORD: fittrackee
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
selenium:
|
||||
image: selenium/standalone-firefox
|
||||
mailhog:
|
||||
image: mailhog/mailhog:latest
|
||||
redis:
|
||||
image: redis:latest
|
||||
env:
|
||||
APP_SETTINGS: fittrackee.config.End2EndTestingConfig
|
||||
EMAIL_URL: "smtp://mailhog:1025"
|
||||
REDIS_URL: "redis://redis:6379"
|
||||
HOST: "0.0.0.0"
|
||||
PORT: 5000
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Update pip and install build
|
||||
run: python3 -m pip install --upgrade pip build
|
||||
- name: Create and source virtual environment
|
||||
run: |
|
||||
python3 -m venv .venv
|
||||
. .venv/bin/activate
|
||||
- name: Build fittrackee package
|
||||
run: python3 -m build
|
||||
- name: Install fittrackee package
|
||||
run: python3 -m pip install dist/fittrackee-$(cat VERSION).tar.gz
|
||||
- name: Run migrations
|
||||
run: ftcli db upgrade
|
||||
- name: Install pytest and selenium
|
||||
run: python3 -m pip install pytest==7.4.0 pytest-selenium==4.0.1 selenium==4.9.0
|
||||
- name: Start application and run tests with Selenium
|
||||
run: |
|
||||
setsid nohup fittrackee >> nohup.out 2>&1 &
|
||||
export TEST_APP_URL=http://$(hostname --ip-address):5000
|
||||
sleep 5
|
||||
nohup flask worker --processes=1 >> nohup.out 2>&1 &
|
||||
pytest e2e --driver Remote --capability browserName firefox --selenium-host selenium --selenium-port 4444
|
||||
|
52
CHANGELOG.md
@ -1,5 +1,57 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.7.19 (2023/07/15)
|
||||
|
||||
### Features and enhancements
|
||||
|
||||
* [PR#380](https://github.com/SamR1/FitTrackee/pull/380) - Update documentation link
|
||||
* [#390](https://github.com/SamR1/FitTrackee/issues/390) - Improve UI
|
||||
* [#391](https://github.com/SamR1/FitTrackee/issues/391) - Add new sport: paragliding
|
||||
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
* [#384](https://github.com/SamR1/FitTrackee/issues/384) - Inconsistent page with between workout with and without GPS data
|
||||
* [#393](https://github.com/SamR1/FitTrackee/issues/393) - PIL.Image module has no attribute ANTIALIAS
|
||||
|
||||
|
||||
### Translations
|
||||
|
||||
* [PR#394](https://github.com/SamR1/FitTrackee/pull/394) - Translations update (Galician)
|
||||
* [PR#397](https://github.com/SamR1/FitTrackee/pull/397) - Translations update (Spanish)
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* [PR#386](https://github.com/SamR1/FitTrackee/pull/386) - Minor fix in CONTRIBUTING.md (thanks to @dkm)
|
||||
* [PR#388](https://github.com/SamR1/FitTrackee/pull/388) - Minor typo in CONTRIBUTING.md (thanks to @dkm)
|
||||
|
||||
|
||||
### Misc
|
||||
|
||||
* [#395](https://github.com/SamR1/FitTrackee/issues/395) - CI - test a packaged version of FitTrackee
|
||||
* [cc3fe1c](https://github.com/SamR1/FitTrackee/commit/cc3fe1c82e6fb9f4d5ba94f0b8a9763540bbcab4) CI - update python and postgresql default versions
|
||||
|
||||
|
||||
Translation status:
|
||||
- Dutch: 97%
|
||||
- English: 100%
|
||||
- French: 100%
|
||||
- Galician: 98%
|
||||
- German: 97%
|
||||
- Italian: 85%
|
||||
- Norwegian Bokmål: 35%
|
||||
- Polish: 42%
|
||||
- Spanish: 100%
|
||||
|
||||
Thanks to the contributors:
|
||||
- @dkm
|
||||
- @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.18 (2023/06/25)
|
||||
|
||||
Polish is available in FitTrackee interface ([partially translated](https://hosted.weblate.org/languages/pl/fittrackee/)).
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Sphinx build info version 1
|
||||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
|
||||
config: bb5bb9fe9ff8bb50831b90547286f94d
|
||||
config: 18ec37967624ac027e6c42d94d3e1a10
|
||||
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
||||
|
Before Width: | Height: | Size: 572 KiB After Width: | Height: | Size: 572 KiB |
Before Width: | Height: | Size: 388 KiB After Width: | Height: | Size: 388 KiB |
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 224 KiB |
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 143 KiB |
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 90 KiB |
@ -1,5 +1,54 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.7.19 (2023/07/15)
|
||||
|
||||
### Features and enhancements
|
||||
|
||||
* [PR#380](https://github.com/SamR1/FitTrackee/pull/380) - Update documentation link
|
||||
* [#390](https://github.com/SamR1/FitTrackee/issues/390) - Improve UI
|
||||
* [#391](https://github.com/SamR1/FitTrackee/issues/391) - Add new sport: paragliding (thanks to @dkm)
|
||||
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
* [#384](https://github.com/SamR1/FitTrackee/issues/384) - Inconsistent page with between workout with and without GPS data
|
||||
* [#393](https://github.com/SamR1/FitTrackee/issues/393) - PIL.Image module has no attribute ANTIALIAS
|
||||
|
||||
|
||||
### Translations
|
||||
|
||||
* [PR#394](https://github.com/SamR1/FitTrackee/pull/394) - Translations update (Galician, thanks to @xmgz)
|
||||
* [PR#397](https://github.com/SamR1/FitTrackee/pull/397) - Translations update (Spanish, thanks to @gallegonovato)
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* [PR#386](https://github.com/SamR1/FitTrackee/pull/386) - Minor fix in CONTRIBUTING.md (thanks to @dkm)
|
||||
* [PR#388](https://github.com/SamR1/FitTrackee/pull/388) - Minor typo in CONTRIBUTING.md (thanks to @dkm)
|
||||
|
||||
|
||||
### Misc
|
||||
|
||||
* [#395](https://github.com/SamR1/FitTrackee/issues/395) - CI - test a packaged version of FitTrackee
|
||||
* [cc3fe1c](https://github.com/SamR1/FitTrackee/commit/cc3fe1c82e6fb9f4d5ba94f0b8a9763540bbcab4) CI - update python and postgresql default versions
|
||||
|
||||
|
||||
Translation status:
|
||||
- Dutch: 97%
|
||||
- English: 100%
|
||||
- French: 100%
|
||||
- Galician: 98%
|
||||
- German: 97%
|
||||
- Italian: 85%
|
||||
- Norwegian Bokmål: 35%
|
||||
- Polish: 42%
|
||||
- Spanish: 100%
|
||||
|
||||
Thanks to all contributors.
|
||||
|
||||
**Note:** This release contains database migration (see upgrade instructions in [documentation](https://samr1.github.io/FitTrackee/en/installation.html#upgrade))
|
||||
|
||||
|
||||
## Version 0.7.18 (2023/06/25)
|
||||
|
||||
Polish is available in FitTrackee interface ([partially translated](https://hosted.weblate.org/languages/pl/fittrackee/)).
|
||||
|
@ -19,6 +19,7 @@ Workouts
|
||||
- Mountain Biking
|
||||
- Mountain Biking (Electric) (*new in 0.5.0*)
|
||||
- Mountaineering (*new in 0.7.9*)
|
||||
- Paragliding (*new in 0.7.19*)
|
||||
- Rowing (*new in 0.5.0*)
|
||||
- Running
|
||||
- Skiing (Alpine) (*new in 0.5.0*)
|
||||
@ -29,6 +30,7 @@ Workouts
|
||||
- (*new in 0.5.0*) Stopped speed threshold used by `gpxpy <https://github.com/tkrajina/gpxpy>`_ is not the default one for the following sports (0.1 km/h instead of 1 km/h):
|
||||
- Hiking
|
||||
- Mountaineering
|
||||
- Paragliding
|
||||
- Skiing (Cross Country)
|
||||
- Snowshoes
|
||||
- Trail
|
||||
|
@ -1,6 +1,6 @@
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '0.7.18',
|
||||
VERSION: '0.7.19',
|
||||
LANGUAGE: 'en',
|
||||
COLLAPSE_INDEX: false,
|
||||
BUILDER: 'html',
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Configuration" href="configuration.html" /><link rel="prev" title="API documentation" href="index.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Authentication and account - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Authentication and account - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="OAuth2" href="oauth2.html" /><link rel="prev" title="Authentication and account" href="auth.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Configuration - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Configuration - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -257,7 +257,7 @@
|
||||
<span class="w"> </span><span class="nt">"map_attribution"</span><span class="p">:</span><span class="w"> </span><span class="s2">"&copy; <a href=http://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privacy_policy"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privacy_policy_date"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"version"</span><span class="p">:</span><span class="w"> </span><span class="s2">"0.7.18"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"version"</span><span class="p">:</span><span class="w"> </span><span class="s2">"0.7.19"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"weather_provider"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span>
|
||||
<span class="w"> </span><span class="p">},</span>
|
||||
<span class="w"> </span><span class="nt">"status"</span><span class="p">:</span><span class="w"> </span><span class="s2">"success"</span>
|
||||
@ -302,7 +302,7 @@
|
||||
<span class="w"> </span><span class="nt">"map_attribution"</span><span class="p">:</span><span class="w"> </span><span class="s2">"&copy; <a href=http://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privacy_policy"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privacy_policy_date"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"version"</span><span class="p">:</span><span class="w"> </span><span class="s2">"0.7.18"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"version"</span><span class="p">:</span><span class="w"> </span><span class="s2">"0.7.19"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"weather_provider"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span>
|
||||
<span class="w"> </span><span class="p">},</span>
|
||||
<span class="w"> </span><span class="nt">"status"</span><span class="p">:</span><span class="w"> </span><span class="s2">"success"</span>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Authentication and account" href="auth.html" /><link rel="prev" title="Third-party tools" href="../third_party_tools.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>API documentation - FitTrackee 0.7.18 documentation</title>
|
||||
<title>API documentation - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Records" href="records.html" /><link rel="prev" title="Configuration" href="configuration.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>OAuth2 - FitTrackee 0.7.18 documentation</title>
|
||||
<title>OAuth2 - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Sports" href="sports.html" /><link rel="prev" title="OAuth2" href="oauth2.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Records - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Records - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Statistics" href="stats.html" /><link rel="prev" title="Records" href="records.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Sports - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Sports - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Users" href="users.html" /><link rel="prev" title="Sports" href="sports.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Statistics - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Statistics - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Workouts" href="workouts.html" /><link rel="prev" title="Statistics" href="stats.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Users - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Users - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Troubleshooting" href="../troubleshooting/index.html" /><link rel="prev" title="Users" href="users.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Workouts - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Workouts - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="Third-party tools" href="third_party_tools.html" /><link rel="prev" title="Installation" href="installation.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Command line interface - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Command line interface - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="OAuth 2.0" href="oauth.html" /><link rel="prev" title="FitTrackee" href="index.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Features - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Features - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -249,6 +249,7 @@
|
||||
<li><p>Mountain Biking</p></li>
|
||||
<li><p>Mountain Biking (Electric) (<em>new in 0.5.0</em>)</p></li>
|
||||
<li><p>Mountaineering (<em>new in 0.7.9</em>)</p></li>
|
||||
<li><p>Paragliding (<em>new in 0.7.19</em>)</p></li>
|
||||
<li><p>Rowing (<em>new in 0.5.0</em>)</p></li>
|
||||
<li><p>Running</p></li>
|
||||
<li><p>Skiing (Alpine) (<em>new in 0.5.0</em>)</p></li>
|
||||
@ -264,6 +265,7 @@
|
||||
<dt>(<em>new in 0.5.0</em>) Stopped speed threshold used by <a class="reference external" href="https://github.com/tkrajina/gpxpy">gpxpy</a> is not the default one for the following sports (0.1 km/h instead of 1 km/h):</dt><dd><ul>
|
||||
<li><p>Hiking</p></li>
|
||||
<li><p>Mountaineering</p></li>
|
||||
<li><p>Paragliding</p></li>
|
||||
<li><p>Skiing (Cross Country)</p></li>
|
||||
<li><p>Snowshoes</p></li>
|
||||
<li><p>Trail</p></li>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
||||
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="#" /><link rel="search" title="Search" href="search.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Index - FitTrackee 0.7.18 documentation</title>
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Index - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -151,7 +151,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -4,7 +4,7 @@
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
||||
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>HTTP Routing Table - FitTrackee 0.7.18 documentation</title>
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>HTTP Routing Table - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -151,7 +151,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="Features" href="features.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>FitTrackee 0.7.18 documentation</title>
|
||||
<title>FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="#"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="#"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="Command line interface" href="cli.html" /><link rel="prev" title="OAuth 2.0" href="oauth.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Installation - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Installation - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="Installation" href="installation.html" /><link rel="prev" title="Features" href="features.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>OAuth 2.0 - FitTrackee 0.7.18 documentation</title>
|
||||
<title>OAuth 2.0 - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -4,7 +4,7 @@
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
||||
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="#" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Search - FitTrackee 0.7.18
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Search - FitTrackee 0.7.19
|
||||
documentation</title><link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -151,7 +151,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="#" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Search" href="search.html" /><link rel="next" title="API documentation" href="api/index.html" /><link rel="prev" title="Command line interface" href="cli.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Third-party tools - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Third-party tools - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Change log" href="../changelog.html" /><link rel="prev" title="Troubleshooting" href="index.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Administrator - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Administrator - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" /><link rel="next" title="Administrator" href="administrator.html" /><link rel="prev" title="Workouts" href="../api/workouts.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Troubleshooting - FitTrackee 0.7.18 documentation</title>
|
||||
<title>Troubleshooting - FitTrackee 0.7.19 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.19
|
||||
documentation</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.19
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Sphinx build info version 1
|
||||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
|
||||
config: 00d0ac4cf8fb12053a3a2ac108fdb2fb
|
||||
config: af7af1f86ce1688a16d637f00940418a
|
||||
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
||||
|
Before Width: | Height: | Size: 572 KiB After Width: | Height: | Size: 572 KiB |
Before Width: | Height: | Size: 388 KiB After Width: | Height: | Size: 388 KiB |
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 224 KiB |
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 133 KiB After Width: | Height: | Size: 143 KiB |
Before Width: | Height: | Size: 85 KiB After Width: | Height: | Size: 90 KiB |
@ -1,5 +1,54 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.7.19 (2023/07/15)
|
||||
|
||||
### Features and enhancements
|
||||
|
||||
* [PR#380](https://github.com/SamR1/FitTrackee/pull/380) - Update documentation link
|
||||
* [#390](https://github.com/SamR1/FitTrackee/issues/390) - Improve UI
|
||||
* [#391](https://github.com/SamR1/FitTrackee/issues/391) - Add new sport: paragliding (thanks to @dkm)
|
||||
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
* [#384](https://github.com/SamR1/FitTrackee/issues/384) - Inconsistent page with between workout with and without GPS data
|
||||
* [#393](https://github.com/SamR1/FitTrackee/issues/393) - PIL.Image module has no attribute ANTIALIAS
|
||||
|
||||
|
||||
### Translations
|
||||
|
||||
* [PR#394](https://github.com/SamR1/FitTrackee/pull/394) - Translations update (Galician, thanks to @xmgz)
|
||||
* [PR#397](https://github.com/SamR1/FitTrackee/pull/397) - Translations update (Spanish, thanks to @gallegonovato)
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* [PR#386](https://github.com/SamR1/FitTrackee/pull/386) - Minor fix in CONTRIBUTING.md (thanks to @dkm)
|
||||
* [PR#388](https://github.com/SamR1/FitTrackee/pull/388) - Minor typo in CONTRIBUTING.md (thanks to @dkm)
|
||||
|
||||
|
||||
### Misc
|
||||
|
||||
* [#395](https://github.com/SamR1/FitTrackee/issues/395) - CI - test a packaged version of FitTrackee
|
||||
* [cc3fe1c](https://github.com/SamR1/FitTrackee/commit/cc3fe1c82e6fb9f4d5ba94f0b8a9763540bbcab4) CI - update python and postgresql default versions
|
||||
|
||||
|
||||
Translation status:
|
||||
- Dutch: 97%
|
||||
- English: 100%
|
||||
- French: 100%
|
||||
- Galician: 98%
|
||||
- German: 97%
|
||||
- Italian: 85%
|
||||
- Norwegian Bokmål: 35%
|
||||
- Polish: 42%
|
||||
- Spanish: 100%
|
||||
|
||||
Thanks to all contributors.
|
||||
|
||||
**Note:** This release contains database migration (see upgrade instructions in [documentation](https://samr1.github.io/FitTrackee/en/installation.html#upgrade))
|
||||
|
||||
|
||||
## Version 0.7.18 (2023/06/25)
|
||||
|
||||
Polish is available in FitTrackee interface ([partially translated](https://hosted.weblate.org/languages/pl/fittrackee/)).
|
||||
|
@ -19,6 +19,7 @@ Workouts
|
||||
- Mountain Biking
|
||||
- Mountain Biking (Electric) (*new in 0.5.0*)
|
||||
- Mountaineering (*new in 0.7.9*)
|
||||
- Paragliding (*new in 0.7.19*)
|
||||
- Rowing (*new in 0.5.0*)
|
||||
- Running
|
||||
- Skiing (Alpine) (*new in 0.5.0*)
|
||||
@ -29,6 +30,7 @@ Workouts
|
||||
- (*new in 0.5.0*) Stopped speed threshold used by `gpxpy <https://github.com/tkrajina/gpxpy>`_ is not the default one for the following sports (0.1 km/h instead of 1 km/h):
|
||||
- Hiking
|
||||
- Mountaineering
|
||||
- Paragliding
|
||||
- Skiing (Cross Country)
|
||||
- Snowshoes
|
||||
- Trail
|
||||
|
@ -1,6 +1,6 @@
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '0.7.18',
|
||||
VERSION: '0.7.19',
|
||||
LANGUAGE: 'fr',
|
||||
COLLAPSE_INDEX: false,
|
||||
BUILDER: 'html',
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Configuration" href="configuration.html" /><link rel="prev" title="Documentation de l’API" href="index.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Authentification et compte - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Authentification et compte - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="OAuth2" href="oauth2.html" /><link rel="prev" title="Authentification et compte" href="auth.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Configuration - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Configuration - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -257,7 +257,7 @@
|
||||
<span class="w"> </span><span class="nt">"map_attribution"</span><span class="p">:</span><span class="w"> </span><span class="s2">"&copy; <a href=http://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privacy_policy"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privacy_policy_date"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"version"</span><span class="p">:</span><span class="w"> </span><span class="s2">"0.7.18"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"version"</span><span class="p">:</span><span class="w"> </span><span class="s2">"0.7.19"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"weather_provider"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span>
|
||||
<span class="w"> </span><span class="p">},</span>
|
||||
<span class="w"> </span><span class="nt">"status"</span><span class="p">:</span><span class="w"> </span><span class="s2">"success"</span>
|
||||
@ -302,7 +302,7 @@
|
||||
<span class="w"> </span><span class="nt">"map_attribution"</span><span class="p">:</span><span class="w"> </span><span class="s2">"&copy; <a href=http://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privacy_policy"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"privacy_policy_date"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"version"</span><span class="p">:</span><span class="w"> </span><span class="s2">"0.7.18"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"version"</span><span class="p">:</span><span class="w"> </span><span class="s2">"0.7.19"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"weather_provider"</span><span class="p">:</span><span class="w"> </span><span class="kc">null</span>
|
||||
<span class="w"> </span><span class="p">},</span>
|
||||
<span class="w"> </span><span class="nt">"status"</span><span class="p">:</span><span class="w"> </span><span class="s2">"success"</span>
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Authentification et compte" href="auth.html" /><link rel="prev" title="Outils tiers" href="../third_party_tools.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Documentation de l’API - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Documentation de l’API - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Records" href="records.html" /><link rel="prev" title="Configuration" href="configuration.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>OAuth2 - Documentation FitTrackee 0.7.18</title>
|
||||
<title>OAuth2 - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Sports" href="sports.html" /><link rel="prev" title="OAuth2" href="oauth2.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Records - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Records - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Statistiques" href="stats.html" /><link rel="prev" title="Records" href="records.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Sports - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Sports - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Utilisateurs" href="users.html" /><link rel="prev" title="Sports" href="sports.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Statistiques - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Statistiques - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Séances" href="workouts.html" /><link rel="prev" title="Statistiques" href="stats.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Utilisateurs - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Utilisateurs - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Dépannage" href="../troubleshooting/index.html" /><link rel="prev" title="Utilisateurs" href="users.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Séances - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Séances - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Recherche" href="search.html" /><link rel="next" title="Outils tiers" href="third_party_tools.html" /><link rel="prev" title="Installation" href="installation.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Interface de ligne de commande - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Interface de ligne de commande - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -252,7 +252,7 @@ Commands:
|
||||
<div class="line">Les commandes suivantes sont désormais obsolètes et seront supprimées dans une prochaine version :</div>
|
||||
<div class="line">- <code class="docutils literal notranslate"><span class="pre">fittrackee_set_admin</span></code></div>
|
||||
<div class="line">- <code class="docutils literal notranslate"><span class="pre">fittrackee_upgrade_db</span></code></div>
|
||||
<div class="line">- <code class="docutils literal notranslate"><span class="pre">fittrackee_worker</span></code> (disabled)</div>
|
||||
<div class="line">- <code class="docutils literal notranslate"><span class="pre">fittrackee_worker</span></code> (désactivé)</div>
|
||||
</div>
|
||||
</div>
|
||||
<section id="database">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Recherche" href="search.html" /><link rel="next" title="OAuth 2.0" href="oauth.html" /><link rel="prev" title="FitTrackee" href="index.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Fonctionnalités - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Fonctionnalités - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -249,6 +249,7 @@
|
||||
<li><p>VTT</p></li>
|
||||
<li><p>VTT (Electrique) (<em>nouveau dans la version in 0.5.0</em>)</p></li>
|
||||
<li><p>Alpinisme (<em>nouveau dans la version 0.7.9</em>)</p></li>
|
||||
<li><p>Parapente (<em>nouveau dans la version 0.7.19</em>)</p></li>
|
||||
<li><p>Aviron (<em>nouveau dans la version 0.5.0</em>)</p></li>
|
||||
<li><p>Course à pied</p></li>
|
||||
<li><p>Ski (Alpin) (<em>nouveau dans la version 0.5.0</em>)</p></li>
|
||||
@ -264,6 +265,7 @@
|
||||
<dt>(<em>nouveau dans la version in 0.5.0</em>) Le seuil de vitesse arrêté utilisé par <a class="reference external" href="https://github.com/tkrajina/gpxpy">gpxpy</a> n’est plus la valeur par défaut pour les sports suivants (0.1 km/h au lieu de 1 km/h) :</dt><dd><ul>
|
||||
<li><p>Randonnée</p></li>
|
||||
<li><p>Alpinisme</p></li>
|
||||
<li><p>Parapente</p></li>
|
||||
<li><p>Ski (Randonnée)</p></li>
|
||||
<li><p>Raquettes</p></li>
|
||||
<li><p>Trail</p></li>
|
||||
|
@ -4,7 +4,7 @@
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
||||
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="#" /><link rel="search" title="Recherche" href="search.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Index - Documentation FitTrackee 0.7.18</title>
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Index - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -151,7 +151,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -4,7 +4,7 @@
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
||||
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Recherche" href="search.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Table de routage HTTP - Documentation FitTrackee 0.7.18</title>
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Table de routage HTTP - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -151,7 +151,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Recherche" href="search.html" /><link rel="next" title="Fonctionnalités" href="features.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Documentation FitTrackee 0.7.18</title>
|
||||
<title>Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="#"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="#"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Recherche" href="search.html" /><link rel="next" title="Interface de ligne de commande" href="cli.html" /><link rel="prev" title="OAuth 2.0" href="oauth.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Installation - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Installation - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Recherche" href="search.html" /><link rel="next" title="Installation" href="installation.html" /><link rel="prev" title="Fonctionnalités" href="features.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>OAuth 2.0 - Documentation FitTrackee 0.7.18</title>
|
||||
<title>OAuth 2.0 - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -4,7 +4,7 @@
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
||||
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Recherche" href="#" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Recherche - Documentation FitTrackee 0.7.18
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 --><title>Recherche - Documentation FitTrackee 0.7.19
|
||||
</title><link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -151,7 +151,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="#" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="genindex.html" /><link rel="search" title="Recherche" href="search.html" /><link rel="next" title="Documentation de l’API" href="api/index.html" /><link rel="prev" title="Interface de ligne de commande" href="cli.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Outils tiers - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Outils tiers - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Historique des modifications" href="../changelog.html" /><link rel="prev" title="Dépannage" href="index.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Administrateur - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Administrateur - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
@ -6,7 +6,7 @@
|
||||
<link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Recherche" href="../search.html" /><link rel="next" title="Administrateur" href="administrator.html" /><link rel="prev" title="Séances" href="../api/workouts.html" />
|
||||
|
||||
<!-- Generated with Sphinx 7.0.1 and Furo 2023.05.20 -->
|
||||
<title>Dépannage - Documentation FitTrackee 0.7.18</title>
|
||||
<title>Dépannage - Documentation FitTrackee 0.7.19</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?digest=e6660623a769aa55fea372102b9bf3151b292993" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.18
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.19
|
||||
</div></a>
|
||||
</div>
|
||||
<div class="header-right">
|
||||
@ -153,7 +153,7 @@
|
||||
<img class="sidebar-logo" src="../_static/ft-logo.png" alt="Logo"/>
|
||||
</div>
|
||||
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.18
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.19
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
|
Before Width: | Height: | Size: 572 KiB After Width: | Height: | Size: 572 KiB |
Before Width: | Height: | Size: 388 KiB After Width: | Height: | Size: 388 KiB |
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 224 KiB |