1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00

Merge pull request #176 from YunoHost-Apps/testing

Testing
This commit is contained in:
Salamandar 2024-01-26 23:47:19 +01:00 committed by GitHub
commit a575ba13bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 13 additions and 13 deletions

View file

@ -28,7 +28,7 @@ In addition to Roundcube core features, the following are made available with th
* Support for PGP encryption with Enigma plugin by default. * Support for PGP encryption with Enigma plugin by default.
**Shipped version:** 1.6.0~ynh4 **Shipped version:** 1.6.5~ynh1
**Demo:** https://demo.yunohost.org/webmail/ **Demo:** https://demo.yunohost.org/webmail/

View file

@ -29,7 +29,7 @@ En plus des fonctionnalités principales de Roundcube, les éléments suivants s
* Prise en charge du chiffrement PGP avec le plugin Enigma installé par default. * Prise en charge du chiffrement PGP avec le plugin Enigma installé par default.
**Version incluse :** 1.6.0~ynh4 **Version incluse :** 1.6.5~ynh1
**Démo :** https://demo.yunohost.org/webmail/ **Démo :** https://demo.yunohost.org/webmail/

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/roundcube/roundcubemail/releases/download/1.6.0/roundcubemail-1.6.0.tar.gz SOURCE_URL=https://github.com/roundcube/roundcubemail/releases/download/1.6.5/roundcubemail-1.6.5.tar.gz
SOURCE_SUM=1224eaf628888e503c49d0e8a69aa4997e566c3605738d0303d9c7a09722f363 SOURCE_SUM=6c830faa0674d917c426d9b694793743c51f8bf649cd6e7fc605957bcccd1730
SOURCE_SUM_PRG=sha256sum SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Open Source Webmail software", "en": "Open Source Webmail software",
"fr": "Webmail Open Source" "fr": "Webmail Open Source"
}, },
"version": "1.6.0~ynh4", "version": "1.6.5~ynh1",
"url": "https://roundcube.net/", "url": "https://roundcube.net/",
"upstream": { "upstream": {
"license": "GPL-3.0-only", "license": "GPL-3.0-only",
@ -22,7 +22,7 @@
"email": "" "email": ""
}, },
"requirements": { "requirements": {
"yunohost": ">= 11.0.9" "yunohost": ">= 11.2"
}, },
"multi_instance": true, "multi_instance": true,
"services": [ "services": [

View file

@ -261,8 +261,8 @@ then
ynh_replace_string --match_string="^\s*// installed plugins" --replace_string="&\n $installed_plugins" --target_file="$final_path/config/config.inc.php" ynh_replace_string --match_string="^\s*// installed plugins" --replace_string="&\n $installed_plugins" --target_file="$final_path/config/config.inc.php"
# Update JavaScript dependencies # Update JavaScript dependencies
(cd "$final_path" pushd "$final_path"
/usr/bin/php$phpversion -q ./bin/update.sh -v ?) COMPOSER_ALLOW_SUPERUSER=1 ./bin/update.sh --version="?" -y <<< ""
# Store the config file checksum into the app settings # Store the config file checksum into the app settings
ynh_store_file_checksum --file="$final_path/config/config.inc.php" ynh_store_file_checksum --file="$final_path/config/config.inc.php"
@ -275,8 +275,8 @@ then
#================================================= #=================================================
ynh_script_progression --message="Updating $app core..." --weight=4 ynh_script_progression --message="Updating $app core..." --weight=4
( cd "$final_path" COMPOSER_ALLOW_SUPERUSER=1 ynh_exec_warn ./bin/update.sh --version=$oldversion -y
ynh_exec_warn ./bin/update.sh --version=$oldversion -y) popd
fi fi
#================================================= #=================================================