add markdown support and change log
This commit is contained in:
parent
1a0955ff6a
commit
4a06feb399
52
docs/source/changelog.md
Normal file
52
docs/source/changelog.md
Normal file
@ -0,0 +1,52 @@
|
||||
# Change log
|
||||
|
||||
## Version 0.2.0 - Statistics (2019/07/07)
|
||||
|
||||
### Issues Closed
|
||||
|
||||
#### New Features
|
||||
|
||||
* [#13](https://github.com/SamR1/Fittrackee/issues/13) - Detailed statistics
|
||||
|
||||
#### Misc
|
||||
|
||||
* Update dependencies
|
||||
|
||||
In this release 1 issue was closed.
|
||||
|
||||
|
||||
## Version 0.1.1 - Fix and improvements (2019/02/07)
|
||||
|
||||
### Issues Closed
|
||||
|
||||
#### New Features
|
||||
|
||||
* [#25](https://github.com/SamR1/FitTrackee/issues/25) - Display records on calendar
|
||||
* [#22](https://github.com/SamR1/FitTrackee/issues/22) - Add a total on current month statistics
|
||||
|
||||
#### Bugs Fixed
|
||||
|
||||
* [#31](https://github.com/SamR1/FitTrackee/issues/31) - Use moving duration for stats
|
||||
* [#29](https://github.com/SamR1/FitTrackee/issues/29) - Pause duration calculation with segments
|
||||
* [#28](https://github.com/SamR1/FitTrackee/issues/28) - Error on uploading gpx file
|
||||
* [#26](https://github.com/SamR1/FitTrackee/issues/26) - Total is incorrect in tooltip when duration is displayed
|
||||
* [#24](https://github.com/SamR1/FitTrackee/issues/24) - Some distances are not displayed correctly on current month statistics
|
||||
|
||||
|
||||
In this release 7 issues were closed.
|
||||
|
||||
|
||||
## Version 0.1 - Minimal version (2018-07-04)
|
||||
|
||||
### Issues Closed
|
||||
|
||||
#### New Features
|
||||
|
||||
* [#11](https://github.com/SamR1/FitTrackee/issues/11) - Timezone support
|
||||
* [#10](https://github.com/SamR1/FitTrackee/issues/10) - Add a note to an activity
|
||||
* [#9](https://github.com/SamR1/FitTrackee/issues/9) - User statistics on dashboard
|
||||
* [#8](https://github.com/SamR1/FitTrackee/issues/8) - Add weather to activities
|
||||
* [#3](https://github.com/SamR1/FitTrackee/issues/3) - Search filter for activities
|
||||
* [#2](https://github.com/SamR1/FitTrackee/issues/2) - Calendar to view activities
|
||||
|
||||
In this release 6 issues were closed.
|
@ -33,6 +33,7 @@ release = '0.2.1-beta'
|
||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||
# ones.
|
||||
extensions = [
|
||||
'recommonmark',
|
||||
'sphinxcontrib.autohttp.flask'
|
||||
]
|
||||
|
||||
@ -61,3 +62,12 @@ html_static_path = ['_static']
|
||||
html_theme_options = {
|
||||
'bootswatch_theme': 'flatly',
|
||||
}
|
||||
|
||||
|
||||
# -- Sources configuration ---------------------------------------------------
|
||||
|
||||
source_suffix = {
|
||||
'.rst': 'restructuredtext',
|
||||
'.txt': 'markdown',
|
||||
'.md': 'markdown',
|
||||
}
|
||||
|
@ -40,6 +40,7 @@ Table of contents
|
||||
installation
|
||||
features
|
||||
api/index
|
||||
changelog
|
||||
|
||||
|
||||
.. |Python Version| image:: https://img.shields.io/badge/python-3.7-brightgreen.svg
|
||||
|
@ -26,6 +26,7 @@ codacy-coverage = "*"
|
||||
sphinx = "*"
|
||||
sphinxcontrib-httpdomain = "*"
|
||||
sphinx-bootstrap-theme = "*"
|
||||
recommonmark = "*"
|
||||
|
||||
[requires]
|
||||
python_version = "3.7"
|
||||
|
23
fittrackee_api/Pipfile.lock
generated
23
fittrackee_api/Pipfile.lock
generated
@ -1,7 +1,7 @@
|
||||
{
|
||||
"_meta": {
|
||||
"hash": {
|
||||
"sha256": "a74a823223e2e48a35a7f08bfddcf89689a23448852fb7748c91fdd62d6ef35b"
|
||||
"sha256": "6f03afa1186341d88c1067a26689ec53cfe871db2cfd380663f1e1056322ee5c"
|
||||
},
|
||||
"pipfile-spec": 6,
|
||||
"requires": {
|
||||
@ -419,6 +419,13 @@
|
||||
"index": "pypi",
|
||||
"version": "==1.3.11"
|
||||
},
|
||||
"commonmark": {
|
||||
"hashes": [
|
||||
"sha256:14c3df31e8c9c463377e287b2a1eefaa6019ab97b22dad36e2f32be59d61d68d",
|
||||
"sha256:867fc5db078ede373ab811e16b6789e9d033b15ccd7296f370ca52d1ee792ce0"
|
||||
],
|
||||
"version": "==0.9.0"
|
||||
},
|
||||
"coverage": {
|
||||
"hashes": [
|
||||
"sha256:3684fabf6b87a369017756b551cef29e505cb155ddb892a7a29277b978da88b9",
|
||||
@ -477,6 +484,12 @@
|
||||
],
|
||||
"version": "==3.7.8"
|
||||
},
|
||||
"future": {
|
||||
"hashes": [
|
||||
"sha256:67045236dcfd6816dc439556d009594abf643e5eb48992e36beac09c2ca659b8"
|
||||
],
|
||||
"version": "==0.17.1"
|
||||
},
|
||||
"idna": {
|
||||
"hashes": [
|
||||
"sha256:c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407",
|
||||
@ -656,6 +669,14 @@
|
||||
"index": "pypi",
|
||||
"version": "==2019.1"
|
||||
},
|
||||
"recommonmark": {
|
||||
"hashes": [
|
||||
"sha256:a520b8d25071a51ae23a27cf6252f2fe387f51bdc913390d83b2b50617f5bb48",
|
||||
"sha256:c85228b9b7aea7157662520e74b4e8791c5eacd375332ec68381b52bf10165be"
|
||||
],
|
||||
"index": "pypi",
|
||||
"version": "==0.5.0"
|
||||
},
|
||||
"requests": {
|
||||
"hashes": [
|
||||
"sha256:11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4",
|
||||
|
Loading…
Reference in New Issue
Block a user