bump to version 0.7.29
@ -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: 441c1a797e98c3c01d5e3c2d78b2de27
|
||||
config: a580a5ddb0aeb025df9c33989c14b705
|
||||
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
||||
|
Before Width: | Height: | Size: 573 KiB After Width: | Height: | Size: 575 KiB |
Before Width: | Height: | Size: 422 KiB After Width: | Height: | Size: 423 KiB |
Before Width: | Height: | Size: 227 KiB After Width: | Height: | Size: 227 KiB |
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 79 KiB After Width: | Height: | Size: 79 KiB |
Before Width: | Height: | Size: 149 KiB After Width: | Height: | Size: 150 KiB |
Before Width: | Height: | Size: 146 KiB After Width: | Height: | Size: 147 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
@ -1,5 +1,43 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.7.29 (2024/01/06)
|
||||
|
||||
### Features and enhancements
|
||||
|
||||
* [8aa4cff](https://github.com/SamR1/FitTrackee/commit/8aa4cff2bb21c877e382c7498442ccef35935d5f) - Update loader color on dark theme
|
||||
* [#478](https://github.com/SamR1/FitTrackee/issues/478) - Make application name clickable to access dashboard
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
* [PR#479](https://github.com/SamR1/FitTrackee/pull/479) - Minor fixes on UI
|
||||
|
||||
### Translations
|
||||
|
||||
* [PR#476](https://github.com/SamR1/FitTrackee/pull/476) - Translations update (Polish)
|
||||
* [PR#477](https://github.com/SamR1/FitTrackee/pull/477) - Translations update (Dutch)
|
||||
|
||||
Translation status:
|
||||
- Dutch: 100%
|
||||
- English: 100%
|
||||
- French: 100%
|
||||
- Galician: 100%
|
||||
- German: 100%
|
||||
- Italian: 84%
|
||||
- Norwegian Bokmål: 60%
|
||||
- Polish: 100%
|
||||
- Spanish: 100%
|
||||
|
||||
### Misc
|
||||
|
||||
* [PR#475](https://github.com/SamR1/FitTrackee/pull/475) - Build - use poetry-core instead of poetry
|
||||
|
||||
|
||||
Thanks to the contributors:
|
||||
- @traxys
|
||||
- Mariuz
|
||||
- Koen
|
||||
|
||||
|
||||
## Version 0.7.28 (2023/12/23)
|
||||
|
||||
### Features and enhancements
|
||||
|
@ -110,7 +110,7 @@ Account & preferences
|
||||
In case email sending is not configured, a `command line <cli.html#ftcli-users-update>`__ allows to activate users account.
|
||||
|
||||
- A user can set language, timezone and first day of week.
|
||||
- A user can set the interface theme (light (default value), dark or according to browser preferences). When the dark or light theme is set, it overrides browser preferences (*new in 0.7.27*).
|
||||
- A user can set the interface theme (light, dark or according to browser preferences) (*new in 0.7.27*).
|
||||
- A user can reset his password (*new in 0.3.0*)
|
||||
- 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*)
|
||||
|
@ -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.27):
|
||||
- Download the last release (for now, it is the release v0.7.29):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.27.tar.gz
|
||||
$ tar -xzf v0.7.27.tar.gz
|
||||
$ mv FitTrackee-0.7.27 FitTrackee
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.29.tar.gz
|
||||
$ tar -xzf v0.7.29.tar.gz
|
||||
$ mv FitTrackee-0.7.29 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.27) and overwrite existing files:
|
||||
- Download the last release (for now, it is the release v0.7.29) and overwrite existing files:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.27.tar.gz
|
||||
$ tar -xzf v0.7.27.tar.gz
|
||||
$ cp -R FitTrackee-0.7.27/* FitTrackee/
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.29.tar.gz
|
||||
$ tar -xzf v0.7.29.tar.gz
|
||||
$ cp -R FitTrackee-0.7.29/* FitTrackee/
|
||||
$ cd FitTrackee
|
||||
|
||||
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
|
||||
|
@ -1,6 +1,6 @@
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '0.7.28',
|
||||
VERSION: '0.7.29',
|
||||
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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Authentification et compte - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Authentification et compte - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -1588,7 +1588,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Configuration - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Configuration - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</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.28"</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.29"</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.28"</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.29"</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>
|
||||
@ -428,7 +428,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Documentation de l’API - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Documentation de l’API - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -299,7 +299,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>OAuth2 - Documentation FitTrackee 0.7.28</title>
|
||||
<title>OAuth2 - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -804,7 +804,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Records - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Records - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -401,7 +401,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Sports - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Sports - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -631,7 +631,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Statistiques - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Statistiques - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -548,7 +548,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Utilisateurs - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Utilisateurs - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -790,7 +790,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Séances - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Séances - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -1316,7 +1316,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Interface de ligne de commande - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Interface de ligne de commande - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -543,7 +543,7 @@ Commands:
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Fonctionnalités - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Fonctionnalités - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -394,7 +394,7 @@
|
||||
</div>
|
||||
<ul class="simple">
|
||||
<li><p>L’utilisateur peut définir la langue, le fuseau horaire et le premier jour de la semaine.</p></li>
|
||||
<li><p>L’utilisateur peut définir le theme de l’interface (clair (valeur par défaut), sombre ou selon les préférences du navigateur). Quand le theme sombre ou clair est défini, les préférences du navigateur sont ignorées (<em>nouveau dans la version 0.7.27</em>).</p></li>
|
||||
<li><p>L’utilisateur peut définir le theme de l’interface (clair (valeur par défaut), sombre ou selon les préférences du navigateur). (<em>nouveau dans la version 0.7.27</em>).</p></li>
|
||||
<li><p>L’utilisateur peut réinitialiser son mot de passe (<em>nouveau dans la version in 0.3.0</em>)</p></li>
|
||||
<li><p>Un utilisateur peut modifier son adresse électronique (<em>nouveau dans la version 0.6.0</em>)</p></li>
|
||||
<li><p>L’utilisateur peut choisir entre le système métrique et le système impérial pour la distance, l’affichage de l’altitude et de la vitesse (<em>nouveau dans la version 0.5.0</em>)</p></li>
|
||||
@ -644,7 +644,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 --><title>Index - Documentation FitTrackee 0.7.28</title>
|
||||
<!-- Generated with Sphinx 7.1.2 and Furo 2023.09.10 --><title>Index - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -326,7 +326,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 --><title>Table de routage HTTP - Documentation FitTrackee 0.7.28</title>
|
||||
<!-- Generated with Sphinx 7.1.2 and Furo 2023.09.10 --><title>Table de routage HTTP - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -617,7 +617,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Documentation FitTrackee 0.7.28</title>
|
||||
<title>Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="#"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="#"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -310,7 +310,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Installation - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Installation - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -898,11 +898,11 @@ $<span class="w"> </span>make<span class="w"> </span>install-db
|
||||
</div>
|
||||
</div>
|
||||
<ul class="simple">
|
||||
<li><p>Télécharger la dernière version (à ce jour, la version v0.7.27) :</p></li>
|
||||
<li><p>Download the last release (for now, it is the release v0.7.29):</p></li>
|
||||
</ul>
|
||||
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>$<span class="w"> </span>wget<span class="w"> </span>https://github.com/SamR1/FitTrackee/archive/v0.7.27.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.27.tar.gz
|
||||
$<span class="w"> </span>mv<span class="w"> </span>FitTrackee-0.7.27<span class="w"> </span>FitTrackee
|
||||
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>$<span class="w"> </span>wget<span class="w"> </span>https://github.com/SamR1/FitTrackee/archive/v0.7.29.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.29.tar.gz
|
||||
$<span class="w"> </span>mv<span class="w"> </span>FitTrackee-0.7.29<span class="w"> </span>FitTrackee
|
||||
$<span class="w"> </span><span class="nb">cd</span><span class="w"> </span>FitTrackee
|
||||
</pre></div>
|
||||
</div>
|
||||
@ -1024,11 +1024,11 @@ $<span class="w"> </span><span class="nb">source</span><span class="w"> </span>.
|
||||
<ul class="simple">
|
||||
<li><p>Arrêter l’application</p></li>
|
||||
<li><p>Changer pour le répertoire dans lequel FitTrackee est localisé</p></li>
|
||||
<li><p>Télécharger la dernière version (à ce jour, la version v0.7.27) et écraser les fichiers existants :</p></li>
|
||||
<li><p>Télécharger la dernière version (à ce jour, la version v0.7.29) et écraser les fichiers existants :</p></li>
|
||||
</ul>
|
||||
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>$<span class="w"> </span>wget<span class="w"> </span>https://github.com/SamR1/FitTrackee/archive/v0.7.27.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.27.tar.gz
|
||||
$<span class="w"> </span>cp<span class="w"> </span>-R<span class="w"> </span>FitTrackee-0.7.27/*<span class="w"> </span>FitTrackee/
|
||||
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>$<span class="w"> </span>wget<span class="w"> </span>https://github.com/SamR1/FitTrackee/archive/v0.7.29.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.29.tar.gz
|
||||
$<span class="w"> </span>cp<span class="w"> </span>-R<span class="w"> </span>FitTrackee-0.7.29/*<span class="w"> </span>FitTrackee/
|
||||
$<span class="w"> </span><span class="nb">cd</span><span class="w"> </span>FitTrackee
|
||||
</pre></div>
|
||||
</div>
|
||||
@ -1384,7 +1384,7 @@ $<span class="w"> </span>make<span class="w"> </span>docker-test-python<span cla
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>OAuth 2.0 - Documentation FitTrackee 0.7.28</title>
|
||||
<title>OAuth 2.0 - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -405,7 +405,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 --><title>Recherche - Documentation FitTrackee 0.7.28
|
||||
<!-- Generated with Sphinx 7.1.2 and Furo 2023.09.10 --><title>Recherche - Documentation FitTrackee 0.7.29
|
||||
</title><link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="#" role="search">
|
||||
@ -273,7 +273,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Outils tiers - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Outils tiers - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -291,7 +291,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="_static/doctools.js?v=888ff710"></script>
|
||||
<script src="_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Administrateur - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Administrateur - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -337,7 +337,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|
@ -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.1.2 and Furo 2023.09.10 -->
|
||||
<title>Dépannage - Documentation FitTrackee 0.7.28</title>
|
||||
<title>Dépannage - Documentation FitTrackee 0.7.29</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/copybutton.css?v=76b2166b" />
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.28
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.29
|
||||
</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.28
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.29
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -296,7 +296,7 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=aa044ad9"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=0e7ccec0"></script>
|
||||
<script src="../_static/doctools.js?v=888ff710"></script>
|
||||
<script src="../_static/sphinx_highlight.js?v=4825356b"></script>
|
||||
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
|
||||
|