1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mobilizon_ynh.git synced 2024-09-03 19:46:19 +02:00

Merge pull request #174 from YunoHost-Apps/testing

Testing
This commit is contained in:
eric_G 2023-09-07 20:24:51 +02:00 committed by GitHub
commit 7480148cbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 11 deletions

View file

@ -24,7 +24,7 @@ A decentralized and federated platform to organize events
**Shipped version:** 3.1.3~ynh2
**Shipped version:** 3.2.0~ynh1
**Demo:** https://demo.mobilizon.org

View file

@ -24,7 +24,7 @@ A decentralized and federated platform to organize events
**Version incluse :** 3.1.3~ynh2
**Version incluse :** 3.2.0~ynh1
**Démo :** https://demo.mobilizon.org

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://packages.joinmobilizon.org/3.1.3/mobilizon_3.1.3_amd64.tar.gz
SOURCE_SUM=7f59b66f309fd1456c339639c24decb4909d0d692362d2d123ea5868ff929447
SOURCE_URL=https://packages.joinmobilizon.org/3.2.0/mobilizon_3.2.0_amd64.tar.gz
SOURCE_SUM=69277707ee57aae1afc45ba6ecb4944937f1392aad67aa4054100f7fd1781032
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://packages.joinmobilizon.org/2.0.2/mobilizon_2.0.2_arm64.tar.gz
SOURCE_SUM=f8dbc38c7d61f0f10001df3ddf934d9c6313af614d8980f2ff19624058e68d4a
SOURCE_URL=https://packages.joinmobilizon.org/3.2.0/mobilizon_3.2.0_arm64.tar.gz
SOURCE_SUM=a5bf092ecf3ee5c9b221370a4d9f915328efdc835187866ad61931d9b46a2a3a
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true

View file

@ -3,10 +3,10 @@
"id": "mobilizon",
"packaging_format": 1,
"description": {
"en": "A decentralized and federated platform to organize events",
"fr": "Une plateforme décentralisée et fédérée pour organiser des événements"
"en": "Decentralized and federated platform to organize events",
"fr": "Plateforme décentralisée et fédérée pour organiser des événements"
},
"version": "3.1.3~ynh2",
"version": "3.2.0~ynh1",
"url": "https://joinmobilizon.org/",
"upstream": {
"license": "AGPL-3.0-or-later",
@ -20,7 +20,7 @@
"name": "yalh76"
},
"requirements": {
"yunohost": ">= 11.0.0"
"yunohost": ">= 11.2"
},
"multi_instance": false,
"services": [

View file

@ -14,7 +14,7 @@ read_manifest () {
abort_if_up_to_date () {
version=$(read_json "/etc/yunohost/apps/$YNH_APP_INSTANCE_NAME/manifest.json" 'version' 2> /dev/null || echo '20160501-7')
last_version=$(read_manifest 'version')
if [ "${version}" = "${last_version}" ]; then
if [ "${version}" = "${last_version}" ] && [ "$YNH_APP_UPGRADE_TYPE" != "UPGRADE_FORCED" ]; then
ynh_print_info "Up-to-date, nothing to do"
ynh_die "" 0
fi