Merge branch 'release-v0.7.21'
This commit is contained in:
commit
fce61a3794
4
.github/workflows/.tests-javascript.yml
vendored
4
.github/workflows/.tests-javascript.yml
vendored
@ -13,9 +13,9 @@ jobs:
|
||||
javascript:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js 17.x
|
||||
uses: actions/setup-node@v2
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "17.x"
|
||||
- name: Install yarn and dependencies
|
||||
|
8
.github/workflows/.tests-python.yml
vendored
8
.github/workflows/.tests-python.yml
vendored
@ -34,7 +34,7 @@ jobs:
|
||||
matrix:
|
||||
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install Poetry and Dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
@ -76,7 +76,7 @@ jobs:
|
||||
matrix:
|
||||
psql-version: [ "11", "12", "13", "14" ]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install Poetry and Dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
@ -114,7 +114,7 @@ jobs:
|
||||
EMAIL_URL: "smtp://mailhog:1025"
|
||||
REDIS_URL: "redis://redis:6379"
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install Poetry and Dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
@ -161,7 +161,7 @@ jobs:
|
||||
HOST: "0.0.0.0"
|
||||
PORT: 5000
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Update pip and install build
|
||||
run: python3 -m pip install --upgrade pip build
|
||||
- name: Create and source virtual environment
|
||||
|
12
CHANGELOG.md
12
CHANGELOG.md
@ -1,5 +1,17 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.7.21 (2023/07/30)
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
* [#407](https://github.com/SamR1/FitTrackee/issues/407) - Workout display error when speeds are zero
|
||||
|
||||
|
||||
### Misc
|
||||
|
||||
* [PR#409](https://github.com/SamR1/FitTrackee/pull/409) - CI - update actions version
|
||||
|
||||
|
||||
## Version 0.7.20 (2023/07/22)
|
||||
|
||||
### Features and enhancements
|
||||
|
@ -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: 1f2b76ea51c2668b0828745e47b6101a
|
||||
config: 1219085db4135f80b6327994496bd0ff
|
||||
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.7.21 (2023/07/30)
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
* [#407](https://github.com/SamR1/FitTrackee/issues/407) - Workout display error when speeds are zero
|
||||
|
||||
|
||||
### Misc
|
||||
|
||||
* [PR#409](https://github.com/SamR1/FitTrackee/pull/409) - CI - update actions version
|
||||
|
||||
|
||||
## Version 0.7.20 (2023/07/22)
|
||||
|
||||
### Features and enhancements
|
||||
|
@ -505,13 +505,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.20):
|
||||
- Download the last release (for now, it is the release v0.7.21):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.20.tar.gz
|
||||
$ tar -xzf v0.7.20.tar.gz
|
||||
$ mv FitTrackee-0.7.20 FitTrackee
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.21.tar.gz
|
||||
$ tar -xzf v0.7.21.tar.gz
|
||||
$ mv FitTrackee-0.7.21 FitTrackee
|
||||
$ cd FitTrackee
|
||||
|
||||
- Create **.env** from example and update it
|
||||
@ -635,13 +635,13 @@ Prod environment
|
||||
|
||||
- Change to the directory where FitTrackee directory is located
|
||||
|
||||
- Download the last release (for now, it is the release v0.7.20) and overwrite existing files:
|
||||
- Download the last release (for now, it is the release v0.7.21) and overwrite existing files:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.20.tar.gz
|
||||
$ tar -xzf v0.7.20.tar.gz
|
||||
$ cp -R FitTrackee-0.7.20/* FitTrackee/
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.21.tar.gz
|
||||
$ tar -xzf v0.7.21.tar.gz
|
||||
$ cp -R FitTrackee-0.7.21/* FitTrackee/
|
||||
$ cd FitTrackee
|
||||
|
||||
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
|
||||
|
@ -670,6 +670,16 @@ dd {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.sig dd {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.sig dl {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
dl > dd:last-child,
|
||||
dl > dd:last-child > :last-child {
|
||||
margin-bottom: 0;
|
||||
@ -738,6 +748,14 @@ abbr, acronym {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
.translated {
|
||||
background-color: rgba(207, 255, 207, 0.2)
|
||||
}
|
||||
|
||||
.untranslated {
|
||||
background-color: rgba(255, 207, 207, 0.2)
|
||||
}
|
||||
|
||||
/* -- code displays --------------------------------------------------------- */
|
||||
|
||||
pre {
|
||||
|
@ -1,6 +1,6 @@
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '0.7.20',
|
||||
VERSION: '0.7.21',
|
||||
LANGUAGE: 'en',
|
||||
COLLAPSE_INDEX: false,
|
||||
BUILDER: 'html',
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Authentication and account - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -1586,11 +1586,11 @@ If a valid token is provided, it will be blacklisted.</p>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Configuration - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
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.20"</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.21"</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.20"</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.21"</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,11 +428,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>API documentation - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -299,11 +299,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>OAuth2 - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -824,11 +824,11 @@ are supported by FitTrackee)</p></li>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Records - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -401,11 +401,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Sports - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -631,11 +631,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Statistics - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -555,11 +555,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Users - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -796,11 +796,11 @@ one admin.</p>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Workouts - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -1328,11 +1328,11 @@ must be provided with ascent)</p></li>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
File diff suppressed because it is too large
Load Diff
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Command line interface - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -544,11 +544,11 @@ Can be used if redis is not set (no dramatiq workers running).</p>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Features - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -643,11 +643,11 @@ A user with an inactive account cannot log in. (<em>new in 0.6.0</em>).</p></li>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -4,13 +4,13 @@
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 --><title>Index - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -326,11 +326,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -4,13 +4,13 @@
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 --><title>HTTP Routing Table - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -617,12 +617,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
|
||||
<script>DOCUMENTATION_OPTIONS.COLLAPSE_INDEX = true</script></body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="#"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="#"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -313,11 +313,11 @@ Map</a>.</div>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Installation - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -892,11 +892,11 @@ $<span class="w"> </span>make<span class="w"> </span>install-db
|
||||
</div>
|
||||
</div>
|
||||
<ul class="simple">
|
||||
<li><p>Download the last release (for now, it is the release v0.7.20):</p></li>
|
||||
<li><p>Download the last release (for now, it is the release v0.7.21):</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.20.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.20.tar.gz
|
||||
$<span class="w"> </span>mv<span class="w"> </span>FitTrackee-0.7.20<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.21.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.21.tar.gz
|
||||
$<span class="w"> </span>mv<span class="w"> </span>FitTrackee-0.7.21<span class="w"> </span>FitTrackee
|
||||
$<span class="w"> </span><span class="nb">cd</span><span class="w"> </span>FitTrackee
|
||||
</pre></div>
|
||||
</div>
|
||||
@ -1020,11 +1020,11 @@ $<span class="w"> </span><span class="nb">source</span><span class="w"> </span>.
|
||||
<ul class="simple">
|
||||
<li><p>Stop the application</p></li>
|
||||
<li><p>Change to the directory where FitTrackee directory is located</p></li>
|
||||
<li><p>Download the last release (for now, it is the release v0.7.20) and overwrite existing files:</p></li>
|
||||
<li><p>Download the last release (for now, it is the release v0.7.21) and overwrite existing files:</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.20.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.20.tar.gz
|
||||
$<span class="w"> </span>cp<span class="w"> </span>-R<span class="w"> </span>FitTrackee-0.7.20/*<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.21.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.21.tar.gz
|
||||
$<span class="w"> </span>cp<span class="w"> </span>-R<span class="w"> </span>FitTrackee-0.7.21/*<span class="w"> </span>FitTrackee/
|
||||
$<span class="w"> </span><span class="nb">cd</span><span class="w"> </span>FitTrackee
|
||||
</pre></div>
|
||||
</div>
|
||||
@ -1382,11 +1382,11 @@ $<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"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>OAuth 2.0 - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -414,11 +414,11 @@ It is recommended to use PKCE to provide a better security.</p>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
@ -4,13 +4,13 @@
|
||||
<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.20
|
||||
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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 --><title>Search - FitTrackee 0.7.21
|
||||
documentation</title><link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="#" role="search">
|
||||
@ -273,12 +273,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
|
||||
<script src="_static/searchtools.js"></script>
|
||||
<script src="_static/language_data.js"></script>
|
||||
|
File diff suppressed because one or more lines are too long
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Third-party tools - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -291,11 +291,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Administrator - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -337,11 +337,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20 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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Troubleshooting - FitTrackee 0.7.21 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">FitTrackee 0.7.21
|
||||
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.20
|
||||
<span class="sidebar-brand-text">FitTrackee 0.7.21
|
||||
documentation</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -296,11 +296,11 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=a56311cd"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
</body>
|
||||
</html>
|
@ -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: 36d169e27176a90819fbf54f4154a855
|
||||
config: a1f9fd47ff6f167957a1a42b60b664b4
|
||||
tags: 645f666f9bcd5a90fca523b33c5a78b7
|
||||
|
@ -1,5 +1,17 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.7.21 (2023/07/30)
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
* [#407](https://github.com/SamR1/FitTrackee/issues/407) - Workout display error when speeds are zero
|
||||
|
||||
|
||||
### Misc
|
||||
|
||||
* [PR#409](https://github.com/SamR1/FitTrackee/pull/409) - CI - update actions version
|
||||
|
||||
|
||||
## Version 0.7.20 (2023/07/22)
|
||||
|
||||
### Features and enhancements
|
||||
|
@ -505,13 +505,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.20):
|
||||
- Download the last release (for now, it is the release v0.7.21):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.20.tar.gz
|
||||
$ tar -xzf v0.7.20.tar.gz
|
||||
$ mv FitTrackee-0.7.20 FitTrackee
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.21.tar.gz
|
||||
$ tar -xzf v0.7.21.tar.gz
|
||||
$ mv FitTrackee-0.7.21 FitTrackee
|
||||
$ cd FitTrackee
|
||||
|
||||
- Create **.env** from example and update it
|
||||
@ -635,13 +635,13 @@ Prod environment
|
||||
|
||||
- Change to the directory where FitTrackee directory is located
|
||||
|
||||
- Download the last release (for now, it is the release v0.7.20) and overwrite existing files:
|
||||
- Download the last release (for now, it is the release v0.7.21) and overwrite existing files:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.20.tar.gz
|
||||
$ tar -xzf v0.7.20.tar.gz
|
||||
$ cp -R FitTrackee-0.7.20/* FitTrackee/
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.21.tar.gz
|
||||
$ tar -xzf v0.7.21.tar.gz
|
||||
$ cp -R FitTrackee-0.7.21/* FitTrackee/
|
||||
$ cd FitTrackee
|
||||
|
||||
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
|
||||
|
@ -670,6 +670,16 @@ dd {
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.sig dd {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.sig dl {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
dl > dd:last-child,
|
||||
dl > dd:last-child > :last-child {
|
||||
margin-bottom: 0;
|
||||
@ -738,6 +748,14 @@ abbr, acronym {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
.translated {
|
||||
background-color: rgba(207, 255, 207, 0.2)
|
||||
}
|
||||
|
||||
.untranslated {
|
||||
background-color: rgba(255, 207, 207, 0.2)
|
||||
}
|
||||
|
||||
/* -- code displays --------------------------------------------------------- */
|
||||
|
||||
pre {
|
||||
|
@ -1,6 +1,6 @@
|
||||
var DOCUMENTATION_OPTIONS = {
|
||||
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
|
||||
VERSION: '0.7.20',
|
||||
VERSION: '0.7.21',
|
||||
LANGUAGE: 'fr',
|
||||
COLLAPSE_INDEX: false,
|
||||
BUILDER: 'html',
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -2,9 +2,8 @@ Documentation.addTranslations({
|
||||
"locale": "fr",
|
||||
"messages": {
|
||||
"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s",
|
||||
"© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.",
|
||||
"© Copyright %(copyright)s.": "© Copyright %(copyright)s.",
|
||||
", in ": ", dans",
|
||||
"© %(copyright_prefix)s %(copyright)s.": "",
|
||||
", in ": ", dans ",
|
||||
"About these documents": "\u00c0 propos de ces documents",
|
||||
"Automatically generated list of changes in version %(version)s": "Liste auto-g\u00e9n\u00e9r\u00e9e des modifications dans la version %(version)s",
|
||||
"C API changes": "Modifications de l'API C",
|
||||
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Authentification et compte - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -1583,12 +1583,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Configuration - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</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.20"</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.21"</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.20"</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.21"</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,12 +428,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Documentation de l’API - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -299,12 +299,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>OAuth2 - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -804,12 +804,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Records - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -401,12 +401,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Sports - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -631,12 +631,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Statistiques - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -548,12 +548,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Utilisateurs - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -790,12 +790,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Séances - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -1316,12 +1316,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
File diff suppressed because it is too large
Load Diff
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Interface de ligne de commande - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -543,12 +543,12 @@ Commands:
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Fonctionnalités - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -642,12 +642,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -4,13 +4,13 @@
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 --><title>Index - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -326,12 +326,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -4,13 +4,13 @@
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 --><title>Table de routage HTTP - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -617,13 +617,13 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
|
||||
<script>DOCUMENTATION_OPTIONS.COLLAPSE_INDEX = true</script></body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="#"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="#"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -310,12 +310,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Installation - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -882,11 +882,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.20) :</p></li>
|
||||
<li><p>Télécharger la dernière version (à ce jour, la version v0.7.21) :</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.20.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.20.tar.gz
|
||||
$<span class="w"> </span>mv<span class="w"> </span>FitTrackee-0.7.20<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.21.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.21.tar.gz
|
||||
$<span class="w"> </span>mv<span class="w"> </span>FitTrackee-0.7.21<span class="w"> </span>FitTrackee
|
||||
$<span class="w"> </span><span class="nb">cd</span><span class="w"> </span>FitTrackee
|
||||
</pre></div>
|
||||
</div>
|
||||
@ -1008,11 +1008,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.20) et écraser les fichiers existants :</p></li>
|
||||
<li><p>Télécharger la dernière version (à ce jour, la version v0.7.21) 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.20.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.20.tar.gz
|
||||
$<span class="w"> </span>cp<span class="w"> </span>-R<span class="w"> </span>FitTrackee-0.7.20/*<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.21.tar.gz
|
||||
$<span class="w"> </span>tar<span class="w"> </span>-xzf<span class="w"> </span>v0.7.21.tar.gz
|
||||
$<span class="w"> </span>cp<span class="w"> </span>-R<span class="w"> </span>FitTrackee-0.7.21/*<span class="w"> </span>FitTrackee/
|
||||
$<span class="w"> </span><span class="nb">cd</span><span class="w"> </span>FitTrackee
|
||||
</pre></div>
|
||||
</div>
|
||||
@ -1368,12 +1368,12 @@ $<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"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>OAuth 2.0 - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -405,12 +405,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
@ -4,13 +4,13 @@
|
||||
<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.20
|
||||
</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 --><title>Recherche - Documentation FitTrackee 0.7.21
|
||||
</title><link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -124,7 +124,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="#" role="search">
|
||||
@ -273,13 +273,13 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
|
||||
<script src="_static/searchtools.js"></script>
|
||||
<script src="_static/language_data.js"></script>
|
||||
|
File diff suppressed because one or more lines are too long
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Outils tiers - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="search.html" role="search">
|
||||
@ -291,12 +291,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<script src="_static/sphinx_highlight.js"></script>
|
||||
<script src="_static/scripts/furo.js"></script>
|
||||
<script src="_static/clipboard.min.js"></script>
|
||||
<script src="_static/copybutton.js"></script>
|
||||
<script src="_static/translations.js"></script>
|
||||
</div><script data-url_root="./" id="documentation_options" src="_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Administrateur - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -337,12 +337,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
@ -5,14 +5,14 @@
|
||||
<meta name="color-scheme" content="light dark"><meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<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.20</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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?digest=30d1aed668e5c3a91c3e3bf6a60b675221979f0e" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css" />
|
||||
<!-- Generated with Sphinx 7.1.1 and Furo 2023.07.26 -->
|
||||
<title>Dépannage - Documentation FitTrackee 0.7.21</title>
|
||||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=b76e3c8a" />
|
||||
<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" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/styles/furo-extensions.css?v=36a5483c" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/fork-awesome.min.css?v=876feb3b" />
|
||||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=9f1a53bb" />
|
||||
|
||||
|
||||
|
||||
@ -126,7 +126,7 @@
|
||||
</label>
|
||||
</div>
|
||||
<div class="header-center">
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.20
|
||||
<a href="../index.html"><div class="brand">Documentation FitTrackee 0.7.21
|
||||
</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.20
|
||||
<span class="sidebar-brand-text">Documentation FitTrackee 0.7.21
|
||||
</span>
|
||||
|
||||
</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
|
||||
@ -296,12 +296,12 @@
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script>
|
||||
<script src="../_static/doctools.js"></script>
|
||||
<script src="../_static/sphinx_highlight.js"></script>
|
||||
<script src="../_static/scripts/furo.js"></script>
|
||||
<script src="../_static/clipboard.min.js"></script>
|
||||
<script src="../_static/copybutton.js"></script>
|
||||
<script src="../_static/translations.js"></script>
|
||||
</div><script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js?v=2deffdcf"></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>
|
||||
<script src="../_static/clipboard.min.js?v=a7894cd8"></script>
|
||||
<script src="../_static/copybutton.js?v=f281be69"></script>
|
||||
<script src="../_static/translations.js?v=d99ca74e"></script>
|
||||
</body>
|
||||
</html>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -505,13 +505,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.20):
|
||||
- Download the last release (for now, it is the release v0.7.21):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.20.tar.gz
|
||||
$ tar -xzf v0.7.20.tar.gz
|
||||
$ mv FitTrackee-0.7.20 FitTrackee
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.21.tar.gz
|
||||
$ tar -xzf v0.7.21.tar.gz
|
||||
$ mv FitTrackee-0.7.21 FitTrackee
|
||||
$ cd FitTrackee
|
||||
|
||||
- Create **.env** from example and update it
|
||||
@ -635,13 +635,13 @@ Prod environment
|
||||
|
||||
- Change to the directory where FitTrackee directory is located
|
||||
|
||||
- Download the last release (for now, it is the release v0.7.20) and overwrite existing files:
|
||||
- Download the last release (for now, it is the release v0.7.21) and overwrite existing files:
|
||||
|
||||
.. code:: bash
|
||||
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.20.tar.gz
|
||||
$ tar -xzf v0.7.20.tar.gz
|
||||
$ cp -R FitTrackee-0.7.20/* FitTrackee/
|
||||
$ wget https://github.com/SamR1/FitTrackee/archive/v0.7.21.tar.gz
|
||||
$ tar -xzf v0.7.21.tar.gz
|
||||
$ cp -R FitTrackee-0.7.21/* FitTrackee/
|
||||
$ cd FitTrackee
|
||||
|
||||
- Update **.env** if needed (see `Environment variables <installation.html#environment-variables>`__).
|
||||
|
@ -25,7 +25,7 @@ from werkzeug.middleware.proxy_fix import ProxyFix
|
||||
from fittrackee.emails.email import EmailService
|
||||
from fittrackee.request import CustomRequest
|
||||
|
||||
VERSION = __version__ = '0.7.20'
|
||||
VERSION = __version__ = '0.7.21'
|
||||
REDIS_URL = os.getenv('REDIS_URL', 'redis://')
|
||||
API_RATE_LIMITS = os.environ.get('API_RATE_LIMITS', '300 per 5 minutes').split(
|
||||
','
|
||||
|
@ -52,7 +52,7 @@ def get_application_config() -> Union[Dict, HttpResponse]:
|
||||
"map_attribution": "© <a href=http://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors",
|
||||
"privacy_policy": null,
|
||||
"privacy_policy_date": null,
|
||||
"version": "0.7.20",
|
||||
"version": "0.7.21",
|
||||
"weather_provider": null
|
||||
},
|
||||
"status": "success"
|
||||
@ -108,7 +108,7 @@ def update_application_config(auth_user: User) -> Union[Dict, HttpResponse]:
|
||||
"map_attribution": "© <a href=http://www.openstreetmap.org/copyright>OpenStreetMap</a> contributors",
|
||||
"privacy_policy": null,
|
||||
"privacy_policy_date": null,
|
||||
"version": "0.7.20",
|
||||
"version": "0.7.21",
|
||||
"weather_provider": null
|
||||
},
|
||||
"status": "success"
|
||||
|
2
fittrackee/dist/index.html
vendored
2
fittrackee/dist/index.html
vendored
@ -1 +1 @@
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if IE]><link rel="icon" href="/favicon.ico"><![endif]--><link rel="stylesheet" href="/static/css/fork-awesome.min.css"/><link rel="stylesheet" href="/static/css/leaflet.css"/><title>FitTrackee</title><script defer="defer" src="/static/js/chunk-vendors.89f4a527.js"></script><script defer="defer" src="/static/js/app.569b3ca4.js"></script><link href="/static/css/app.ac01ece3.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png"><link rel="manifest" href="/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="fittrackee_client"><link rel="apple-touch-icon" href="/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but FitTrackee doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
||||
<!doctype html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><!--[if IE]><link rel="icon" href="/favicon.ico"><![endif]--><link rel="stylesheet" href="/static/css/fork-awesome.min.css"/><link rel="stylesheet" href="/static/css/leaflet.css"/><title>FitTrackee</title><script defer="defer" src="/static/js/chunk-vendors.fe4fa96d.js"></script><script defer="defer" src="/static/js/app.19032807.js"></script><link href="/static/css/app.0a104971.css" rel="stylesheet"><link rel="icon" type="image/png" sizes="32x32" href="/img/icons/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/img/icons/favicon-16x16.png"><link rel="manifest" href="/manifest.json"><meta name="theme-color" content="#4DBA87"><meta name="apple-mobile-web-app-capable" content="no"><meta name="apple-mobile-web-app-status-bar-style" content="default"><meta name="apple-mobile-web-app-title" content="fittrackee_client"><link rel="apple-touch-icon" href="/img/icons/apple-touch-icon-152x152.png"><link rel="mask-icon" href="/img/icons/safari-pinned-tab.svg" color="#4DBA87"><meta name="msapplication-TileImage" content="/img/icons/msapplication-icon-144x144.png"><meta name="msapplication-TileColor" content="#000000"></head><body><noscript><strong>We're sorry but FitTrackee doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="app"></div></body></html>
|
2
fittrackee/dist/service-worker.js
vendored
2
fittrackee/dist/service-worker.js
vendored
File diff suppressed because one or more lines are too long
2
fittrackee/dist/service-worker.js.map
vendored
2
fittrackee/dist/service-worker.js.map
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
.chart-menu[data-v-361ef577]{display:flex;align-items:center}.chart-menu .chart-arrow[data-v-361ef577],.chart-menu .time-frames[data-v-361ef577]{flex-grow:1;text-align:center}.chart-menu .chart-arrow[data-v-361ef577]{cursor:pointer}.sports-menu{display:flex;flex-wrap:wrap;padding:10px}.sports-menu label{display:flex;align-items:center;font-size:.9em;font-weight:400;min-width:120px;padding:10px}@media screen and (max-width:1000px){.sports-menu label{min-width:100px}}@media screen and (max-width:500px){.sports-menu label{min-width:20px}.sports-menu label .sport-label{display:none}}.sports-menu .sport-img{padding:3px;width:20px;height:20px}#user-statistics.stats-disabled[data-v-47c262da]{opacity:.3;pointer-events:none}#user-statistics[data-v-47c262da] .chart-radio{justify-content:space-around;padding:30px 10px 10px 10px}#statistics[data-v-19ce09a2]{display:flex;width:100%}#statistics .container[data-v-19ce09a2]{display:flex;flex-direction:column;width:100%}
|
||||
.chart-menu[data-v-361ef577]{display:flex;align-items:center}.chart-menu .chart-arrow[data-v-361ef577],.chart-menu .time-frames[data-v-361ef577]{flex-grow:1;text-align:center}.chart-menu .chart-arrow[data-v-361ef577]{cursor:pointer}.sports-menu{display:flex;flex-wrap:wrap;padding:10px}.sports-menu label{display:flex;align-items:center;font-size:.9em;font-weight:400;min-width:120px;padding:10px}@media screen and (max-width:1000px){.sports-menu label{min-width:100px}}@media screen and (max-width:500px){.sports-menu label{min-width:20px}.sports-menu label .sport-label{display:none}}.sports-menu .sport-img{padding:3px;width:20px;height:20px}#user-statistics.stats-disabled[data-v-742b02d0]{opacity:.3;pointer-events:none}#user-statistics[data-v-742b02d0] .chart-radio{justify-content:space-around;padding:30px 10px 10px 10px}#statistics[data-v-19ce09a2]{display:flex;width:100%}#statistics .container[data-v-19ce09a2]{display:flex;flex-direction:column;width:100%}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
fittrackee/dist/static/js/app.19032807.js.map
vendored
Normal file
1
fittrackee/dist/static/js/app.19032807.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user