1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/etherpad_mypads_ynh.git synced 2024-09-03 18:36:09 +02:00

Merge pull request #157 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2021-12-09 22:43:56 +01:00 committed by GitHub
commit db83b0f70e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 132 additions and 115 deletions

View file

@ -1,6 +1,12 @@
Changelog
=========
## [1.8.16~ynh1]() - 2021-12-09
#### Changed
* [Upgrade to 1.8.16](https://github.com/YunoHost-Apps/etherpad_mypads_ynh/pull/157/commits/e82f22685697428a0f24b15a9682dd075d0c5223)
* [Upgrade ep_comments_page to 0.1.80](https://github.com/YunoHost-Apps/etherpad_mypads_ynh/pull/157/commits/0395fb13763a14ad6a85967809da7473f030f58c)
## [1.8.15~ynh1]() - 2021-11-20
#### Changed

View file

@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Etherpad is a real-time collaborative editor scalable to thousands of simultaneous real time users. It provides full data export capabilities, and runs on your server, under your control.
**Shipped version:** 1.8.15~ynh1
**Shipped version:** 1.8.16~ynh1
**Demo:** https://video.etherpad.com

View file

@ -14,7 +14,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
Etherpad est un éditeur collaboratif en temps réel évolutif pour des milliers d'utilisateurs simultanés en temps réel. Il fournit des capacités complètes d'exportation de données et s'exécute sur votre serveur, sous votre contrôle.
**Version incluse :** 1.8.15~ynh1
**Version incluse :** 1.8.16~ynh1
**Démo :** https://video.etherpad.com

View file

@ -1,5 +1,4 @@
version = "1.0"
name = "Etherpad configuration panel"
[main]
name = "Etherpad configuration"

View file

@ -6,7 +6,7 @@
"en": "Online editor providing collaborative editing in real-time",
"fr": "Éditeur en ligne fournissant l'édition collaborative en temps réel"
},
"version": "1.8.15~ynh1",
"version": "1.8.16~ynh1",
"url": "http://etherpad.org",
"upstream": {
"license": "Apache-2.0",
@ -20,10 +20,12 @@
"name": "",
"email": ""
},
"previous_maintainers": [{
"previous_maintainers": [
{
"name": "Maniack Crudelis",
"email": "maniackc_dev@crudelis.fr"
}],
}
],
"requirements": {
"yunohost": ">= 4.3.0"
},
@ -33,7 +35,7 @@
"mysql"
],
"arguments": {
"install" : [
"install": [
{
"name": "domain",
"type": "domain"
@ -59,8 +61,19 @@
"en": "Choose your language",
"fr": "Choisissez la langue"
},
"choices" : ["ca", "de", "en", "es", "fr", "gl", "hu", "it", "nl", "pt"],
"default" : "en"
"choices": [
"ca",
"de",
"en",
"es",
"fr",
"gl",
"hu",
"it",
"nl",
"pt"
],
"default": "en"
},
{
"name": "is_public",
@ -78,8 +91,12 @@
"en": "Use AbiWord (~260 Mo) or LibreOffice (~400 Mo) (more stable) to expand export possibilities (PDF, doc)?",
"fr": "Utiliser AbiWord (~260 Mo) ou LibreOffice (~400 Mo) (plus stable) pour étendre les possibilités d'export (PDF, doc) ?"
},
"choices" : ["none", "abiword", "libreoffice"],
"default" : "none"
"choices": [
"none",
"abiword",
"libreoffice"
],
"default": "none"
},
{
"name": "mypads",

View file

@ -20,7 +20,7 @@ mypads_version=1.7.22
# Plugin versions
ep_align_version=0.3.42
ep_author_hover_version=0.3.28
ep_comments_page_version=0.1.79
ep_comments_page_version=0.1.80
ep_countable_version=0.0.11
ep_delete_empty_pads_version=0.0.7
ep_font_color_version=0.0.52

View file

@ -7,10 +7,11 @@
#=================================================
# Load common variables for all scripts.
source _variables
source _common.sh
source /usr/share/yunohost/helpers
ynh_abort_if_errors
#=================================================
# RETRIEVE ARGUMENTS
#=================================================
@ -270,10 +271,4 @@ apply_config() {
#=================================================
# GENERIC FINALIZATION
#=================================================
# SELECT THE ACTION FOLLOWING THE GIVEN ARGUMENT
#=================================================
case $1 in
show) show_config;;
apply) apply_config;;
esac
ynh_app_config_run $1