mirror of
https://github.com/YunoHost-Apps/nextcloud_ynh.git
synced 2024-09-03 19:55:57 +02:00
Merge branch 'testing' into v2_PostgreSQL
This commit is contained in:
commit
09e7966fe0
9 changed files with 14 additions and 14 deletions
|
@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
|
|||
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
|
||||
|
||||
|
||||
**Shipped version:** 29.0.2~ynh1
|
||||
**Shipped version:** 29.0.2~ynh2
|
||||
|
||||
**Demo:** <https://demo.nextcloud.com/>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
|
|||
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
|
||||
|
||||
|
||||
**Versión actual:** 29.0.2~ynh1
|
||||
**Versión actual:** 29.0.2~ynh2
|
||||
|
||||
**Demo:** <https://demo.nextcloud.com/>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
|
|||
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
|
||||
|
||||
|
||||
**Paketatutako bertsioa:** 29.0.2~ynh1
|
||||
**Paketatutako bertsioa:** 29.0.2~ynh2
|
||||
|
||||
**Demoa:** <https://demo.nextcloud.com/>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ En plus des fonctionnalités principales de Nextcloud, les fonctionnalités suiv
|
|||
* Utilise l'adresse `/.well-known` pour la synchronisation CalDAV et CardDAV du domaine si aucun autre service ne l'utilise déjà - par exemple, Baïkal
|
||||
|
||||
|
||||
**Version incluse :** 29.0.2~ynh1
|
||||
**Version incluse :** 29.0.2~ynh2
|
||||
|
||||
**Démo :** <https://demo.nextcloud.com/>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
|
|||
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
|
||||
|
||||
|
||||
**Versión proporcionada:** 29.0.2~ynh1
|
||||
**Versión proporcionada:** 29.0.2~ynh2
|
||||
|
||||
**Demo:** <https://demo.nextcloud.com/>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ In addition to Nextcloud core features, the following are made available with th
|
|||
* Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal
|
||||
|
||||
|
||||
**分发版本:** 29.0.2~ynh1
|
||||
**分发版本:** 29.0.2~ynh2
|
||||
|
||||
**演示:** <https://demo.nextcloud.com/>
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ name = "Nextcloud"
|
|||
description.en = "Online storage, file sharing platform and various other applications"
|
||||
description.fr = "Stockage en ligne, plateforme de partage de fichiers et diverses autres applications"
|
||||
|
||||
version = "29.0.2~ynh1"
|
||||
version = "29.0.2~ynh2"
|
||||
|
||||
maintainers = ["kay0u"]
|
||||
|
||||
|
|
|
@ -13,11 +13,8 @@ ynh_script_progression --message="Ensuring downward compatibility..."
|
|||
# Remove the option backup_core_only if it's in the settings.yml file
|
||||
ynh_app_setting_delete --app=$app --key=backup_core_only
|
||||
|
||||
# If phpflags doesn't exist, create it
|
||||
if [ -z "${phpflags:-}" ]; then
|
||||
phpflags="--define apc.enable_cli=1"
|
||||
ynh_app_setting_set --app=$app --key=phpflags --value="$phpflags"
|
||||
fi
|
||||
phpflags="--define apc.enable_cli=1"
|
||||
ynh_app_setting_set --app=$app --key=phpflags --value="$phpflags"
|
||||
|
||||
if ynh_compare_current_package_version --comparison lt --version 22.2~ynh1
|
||||
then
|
||||
|
@ -45,7 +42,10 @@ current_major_version=${current_version%%.*}
|
|||
# Define a function to execute commands with `occ`
|
||||
exec_occ() {
|
||||
# Backward compatibility to upgrade from older versions
|
||||
if [ $current_major_version = "last" ] || [ $current_major_version -ge 26 ]
|
||||
if [ $current_major_version = "last" ]
|
||||
then
|
||||
NEXTCLOUD_PHP_VERSION="8.3"
|
||||
elif [ $current_major_version -ge 26 ]
|
||||
then
|
||||
NEXTCLOUD_PHP_VERSION="8.2"
|
||||
elif [ $current_major_version -ge 24 ]
|
||||
|
|
|
@ -9,4 +9,4 @@ test_format = 1.0
|
|||
test_upgrade_from.c5cf91ad.name = "Upgrade from 25.0.2"
|
||||
test_upgrade_from.caf917f3.name = "Upgrade from 26.0.2"
|
||||
test_upgrade_from.9c6d1eea.name = "Upgrade from 27.1.4"
|
||||
test_upgrade_from.3e60bacf.name = "Upgrade from 28.0.1"
|
||||
test_upgrade_from.e9f82ab7.name = "Upgrade from 28.0.6"
|
||||
|
|
Loading…
Add table
Reference in a new issue