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 #51 from YunoHost-Apps/testing

upgrade to 0.7.29 + simplify update
This commit is contained in:
Thomas 2024-02-04 22:11:24 +01:00 committed by GitHub
commit 520a85f64e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 7 additions and 8 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.29~ynh1
**Shipped version:** 0.7.30~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.29~ynh1
**Version incluse :** 0.7.30~ynh1
## Captures décran

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.29~ynh1"
version = "0.7.30~ynh1"
maintainers = ["Thovi98"]

View file

@ -4,8 +4,6 @@
# COMMON VARIABLES
#=================================================
fittrackee_version="0.7.29"
#=================================================
# PERSONAL HELPERS
#=================================================

View file

@ -69,7 +69,7 @@ pushd $install_dir
python3 -m venv $install_dir/venv
source $install_dir/venv/bin/activate
ynh_exec_warn_less pip install --upgrade pip wheel toml pyyaml
ynh_exec_warn_less pip install fittrackee==$fittrackee_version
ynh_exec_warn_less pip install fittrackee=="$(ynh_app_upstream_version)"
popd
#=================================================

View file

@ -88,7 +88,7 @@ pushd $install_dir
python3 -m venv $install_dir/venv
source $install_dir/venv/bin/activate
ynh_exec_warn_less pip install --upgrade pip wheel toml pyyaml
ynh_exec_warn_less pip install fittrackee==$fittrackee_version
ynh_exec_warn_less pip install fittrackee=="$(ynh_app_upstream_version)"
popd
#=================================================

View file

@ -19,4 +19,5 @@ test_format = 1.0
test_upgrade_from.d682f12.name = "0.7.25~ynh3"
test_upgrade_from.e48197d.name = "0.7.26"
test_upgrade_from.33f7a78.name = "0.7.27"
test_upgrade_from.ac79c26.name = "0.7.28"
test_upgrade_from.ac79c26.name = "0.7.28"
test_upgrade_from.f52002b.name = "0.7.29"