1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/fittrackee_ynh.git synced 2024-09-03 18:36:16 +02:00

Merge pull request #49 from YunoHost-Apps/testing

Upgrade to 0.7.28
This commit is contained in:
Thomas 2023-12-26 15:59:40 +01:00 committed by GitHub
commit ac79c26d99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 26 additions and 10 deletions

View file

@ -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.
**Shipped version:** 0.7.27~ynh1
**Shipped version:** 0.7.28~ynh1
## Screenshots

View file

@ -19,7 +19,7 @@ Si vous navez 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.
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

View 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)

View file

@ -5,7 +5,7 @@ name = "FitTrackee"
description.en = "Self-hosted outdoor activity tracker 🚴"
description.fr = "Traqueur dactivités extérieures auto-hébergé 🚴"
version = "0.7.27~ynh1"
version = "0.7.28~ynh1"
maintainers = ["Thovi98"]

View file

@ -4,7 +4,7 @@
# COMMON VARIABLES
#=================================================
fittrackee_version="0.7.27"
fittrackee_version="0.7.28"
#=================================================
# PERSONAL HELPERS

View file

@ -48,9 +48,6 @@ chmod 600 $install_dir/.env
chown -R $app:www-data "$install_dir"
set -a; source "$install_dir/.env"; set +a
#=================================================
# INSTALL PYTHON DEPENDENCIES
#=================================================
@ -80,12 +77,16 @@ popd
#=================================================
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 users create $admin --email $admin_mail --password $password
ynh_exec_warn_less $install_dir/venv/bin/ftcli users update $admin --set-admin true
set +a
#=================================================
# System Configuration
#=================================================

View file

@ -65,8 +65,6 @@ ynh_add_config --template="../conf/.env.production" --destination="$install_dir/
chmod 600 $install_dir/.env
chown $app: "$install_dir/.env"
set -a; source "$install_dir/.env"; set +a
#=================================================
# INSTALL PYTHON DEPENDENCIES
#=================================================
@ -98,8 +96,13 @@ popd
#=================================================
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
set +a
#=================================================
# NGINX CONFIGURATION
#=================================================

View file

@ -22,4 +22,5 @@ test_format = 1.0
test_upgrade_from.a446e8c.name = "0.7.23"
test_upgrade_from.316dea4.name = "0.7.24"
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"