diff --git a/README.md b/README.md index 7758d68..08563c5 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/README_fr.md b/README_fr.md index 942c162..b690bdc 100644 --- a/README_fr.md +++ b/README_fr.md @@ -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. 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 diff --git a/doc/PRE_UPGRADE.d/0.7.28~ynh1.md b/doc/PRE_UPGRADE.d/0.7.28~ynh1.md new file mode 100644 index 0000000..49fc32c --- /dev/null +++ b/doc/PRE_UPGRADE.d/0.7.28~ynh1.md @@ -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) diff --git a/manifest.toml b/manifest.toml index ce08c42..a715eca 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "FitTrackee" description.en = "Self-hosted outdoor activity tracker 🚴" description.fr = "Traqueur d’activités extérieures auto-hébergé 🚴" -version = "0.7.27~ynh1" +version = "0.7.28~ynh1" maintainers = ["Thovi98"] diff --git a/scripts/_common.sh b/scripts/_common.sh index 47a2191..5896c09 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,7 +4,7 @@ # COMMON VARIABLES #================================================= -fittrackee_version="0.7.27" +fittrackee_version="0.7.28" #================================================= # PERSONAL HELPERS diff --git a/scripts/install b/scripts/install index 834cfd3..7dbc093 100755 --- a/scripts/install +++ b/scripts/install @@ -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 #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index d3c285e..3dbb207 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -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 #================================================= diff --git a/tests.toml b/tests.toml index ec891a5..424ea12 100644 --- a/tests.toml +++ b/tests.toml @@ -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" \ No newline at end of file + test_upgrade_from.e48197d.name = "0.7.26" + test_upgrade_from.33f7a78.name = "0.7.27" \ No newline at end of file