mirror of
https://github.com/YunoHost-Apps/fittrackee_ynh.git
synced 2024-09-03 18:36:16 +02:00
commit
ac79c26d99
8 changed files with 26 additions and 10 deletions
|
@ -20,7 +20,7 @@ FitTrackee allows you to track your outdoor activities (workouts) from gpx files
|
||||||
No mobile app has been developed yet, but several existing mobile apps can store workouts data locally and export them into a gpx file.
|
No mobile app has been developed yet, but several existing mobile apps can store workouts data locally and export them into a gpx file.
|
||||||
|
|
||||||
|
|
||||||
**Shipped version:** 0.7.27~ynh1
|
**Shipped version:** 0.7.28~ynh1
|
||||||
|
|
||||||
## Screenshots
|
## Screenshots
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
|
||||||
FitTrackee vous permet de suivre vos activités de plein air (séances d'entraînement) à partir de fichiers gpx et de conserver vos données sur votre propre serveur.
|
FitTrackee vous permet de suivre vos activités de plein air (séances d'entraînement) à partir de fichiers gpx et de conserver vos données sur votre propre serveur.
|
||||||
Aucune application mobile n'a encore été développée, mais plusieurs applications mobiles existantes peuvent stocker localement les données des séances d'entraînement et les exporter dans un fichier gpx.
|
Aucune application mobile n'a encore été développée, mais plusieurs applications mobiles existantes peuvent stocker localement les données des séances d'entraînement et les exporter dans un fichier gpx.
|
||||||
|
|
||||||
**Version incluse :** 0.7.27~ynh1
|
**Version incluse :** 0.7.28~ynh1
|
||||||
|
|
||||||
## Captures d’écran
|
## Captures d’écran
|
||||||
|
|
||||||
|
|
11
doc/PRE_UPGRADE.d/0.7.28~ynh1.md
Normal file
11
doc/PRE_UPGRADE.d/0.7.28~ynh1.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
Features and enhancements
|
||||||
|
|
||||||
|
PR#474 - Improve links display
|
||||||
|
|
||||||
|
Bugs Fixed
|
||||||
|
|
||||||
|
6e215aa - fix background color on dark theme when modal is displayed
|
||||||
|
|
||||||
|
Translations
|
||||||
|
|
||||||
|
PR#473 - Translations update (Galician, Spanish and German)
|
|
@ -5,7 +5,7 @@ name = "FitTrackee"
|
||||||
description.en = "Self-hosted outdoor activity tracker 🚴"
|
description.en = "Self-hosted outdoor activity tracker 🚴"
|
||||||
description.fr = "Traqueur d’activités extérieures auto-hébergé 🚴"
|
description.fr = "Traqueur d’activités extérieures auto-hébergé 🚴"
|
||||||
|
|
||||||
version = "0.7.27~ynh1"
|
version = "0.7.28~ynh1"
|
||||||
|
|
||||||
maintainers = ["Thovi98"]
|
maintainers = ["Thovi98"]
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# COMMON VARIABLES
|
# COMMON VARIABLES
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
||||||
fittrackee_version="0.7.27"
|
fittrackee_version="0.7.28"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# PERSONAL HELPERS
|
# PERSONAL HELPERS
|
||||||
|
|
|
@ -48,9 +48,6 @@ chmod 600 $install_dir/.env
|
||||||
|
|
||||||
chown -R $app:www-data "$install_dir"
|
chown -R $app:www-data "$install_dir"
|
||||||
|
|
||||||
set -a; source "$install_dir/.env"; set +a
|
|
||||||
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# INSTALL PYTHON DEPENDENCIES
|
# INSTALL PYTHON DEPENDENCIES
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -80,12 +77,16 @@ popd
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Initializing database..." --weight=1
|
ynh_script_progression --message="Initializing database..." --weight=1
|
||||||
|
|
||||||
|
set -a
|
||||||
|
source $install_dir/.env
|
||||||
|
|
||||||
ynh_exec_warn_less $install_dir/venv/bin/ftcli db upgrade
|
ynh_exec_warn_less $install_dir/venv/bin/ftcli db upgrade
|
||||||
|
|
||||||
ynh_exec_warn_less $install_dir/venv/bin/ftcli users create $admin --email $admin_mail --password $password
|
ynh_exec_warn_less $install_dir/venv/bin/ftcli users create $admin --email $admin_mail --password $password
|
||||||
|
|
||||||
ynh_exec_warn_less $install_dir/venv/bin/ftcli users update $admin --set-admin true
|
ynh_exec_warn_less $install_dir/venv/bin/ftcli users update $admin --set-admin true
|
||||||
|
|
||||||
|
set +a
|
||||||
#=================================================
|
#=================================================
|
||||||
# System Configuration
|
# System Configuration
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -65,8 +65,6 @@ ynh_add_config --template="../conf/.env.production" --destination="$install_dir/
|
||||||
chmod 600 $install_dir/.env
|
chmod 600 $install_dir/.env
|
||||||
chown $app: "$install_dir/.env"
|
chown $app: "$install_dir/.env"
|
||||||
|
|
||||||
set -a; source "$install_dir/.env"; set +a
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# INSTALL PYTHON DEPENDENCIES
|
# INSTALL PYTHON DEPENDENCIES
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -98,8 +96,13 @@ popd
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Upgrading database..." --weight=1
|
ynh_script_progression --message="Upgrading database..." --weight=1
|
||||||
|
|
||||||
|
set -a
|
||||||
|
|
||||||
|
source $install_dir/.env
|
||||||
|
|
||||||
ynh_exec_warn_less $install_dir/venv/bin/ftcli db upgrade
|
ynh_exec_warn_less $install_dir/venv/bin/ftcli db upgrade
|
||||||
|
|
||||||
|
set +a
|
||||||
#=================================================
|
#=================================================
|
||||||
# NGINX CONFIGURATION
|
# NGINX CONFIGURATION
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
|
@ -22,4 +22,5 @@ test_format = 1.0
|
||||||
test_upgrade_from.a446e8c.name = "0.7.23"
|
test_upgrade_from.a446e8c.name = "0.7.23"
|
||||||
test_upgrade_from.316dea4.name = "0.7.24"
|
test_upgrade_from.316dea4.name = "0.7.24"
|
||||||
test_upgrade_from.d682f12.name = "0.7.25~ynh3"
|
test_upgrade_from.d682f12.name = "0.7.25~ynh3"
|
||||||
test_upgrade_from.e48197d.name = "0.7.26"
|
test_upgrade_from.e48197d.name = "0.7.26"
|
||||||
|
test_upgrade_from.33f7a78.name = "0.7.27"
|
Loading…
Add table
Reference in a new issue