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

Upgrade to 1.7.0
This commit is contained in:
Maniack Crudelis 2018-08-26 17:14:51 +02:00 committed by GitHub
commit b3abd34449
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 13 deletions

View file

@ -12,7 +12,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to
Etherpad is a highly customizable Open Source online editor providing collaborative editing in really real-time. Etherpad is a highly customizable Open Source online editor providing collaborative editing in really real-time.
This package will install the same plugins than [Framapad](https://framapad.org/). This package will install the same plugins than [Framapad](https://framapad.org/).
**Shipped version:** 1.6.5 **Shipped version:** 1.7.0
## Screenshots ## Screenshots
@ -29,7 +29,7 @@ Or, you can find a config file for etherpad at this path `/var/www/etherpad_mypa
## Documentation ## Documentation
* Official documentation: http://etherpad.org/doc/v1.6.5 * Official documentation: http://etherpad.org/doc/v1.7.0
* YunoHost documentation: There no other documentations, feel free to contribute. * YunoHost documentation: There no other documentations, feel free to contribute.
## YunoHost specific features ## YunoHost specific features

View file

@ -12,7 +12,7 @@ Si vous n'avez pas YunoHost, merci de regarder [ici](https://yunohost.org/#/inst
Etherpad est un éditeur en ligne Open Source hautement personnalisable qui permet l'édition collaborative en temps réel. Etherpad est un éditeur en ligne Open Source hautement personnalisable qui permet l'édition collaborative en temps réel.
Ce paquet installera les mêmes plugins que [Framapad](https://framapad.org/). Ce paquet installera les mêmes plugins que [Framapad](https://framapad.org/).
**Version embarquée:** 1.6.5 **Version embarquée:** 1.7.0
## Captures d'écran ## Captures d'écran
@ -29,7 +29,7 @@ Ou, vous pouvez trouver un fichier de configuration pour etherpad à `/var/www/e
## Documentation ## Documentation
* Documentation officielle: http://etherpad.org/doc/v1.6.5 * Documentation officielle: http://etherpad.org/doc/v1.7.0
* Documentation YunoHost: Il n'y a pas d'autre documentation, n'hésitez pas à contribuer. * Documentation YunoHost: Il n'y a pas d'autre documentation, n'hésitez pas à contribuer.
## Fonctionnalités spécifiques à YunoHost ## Fonctionnalités spécifiques à YunoHost

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/ether/etherpad-lite/archive/1.6.5.tar.gz SOURCE_URL=https://github.com/ether/etherpad-lite/archive/1.7.0.tar.gz
SOURCE_SUM=e0c5fac06a4ec37cfba66f4514bc27ef SOURCE_SUM=71fe286cf3e8dc45b0b5963de54f2ff6
SOURCE_SUM_PRG=md5sum SOURCE_SUM_PRG=md5sum
ARCH_FORMAT=tar.gz ARCH_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true SOURCE_IN_SUBDIR=true

View file

@ -6,7 +6,7 @@
"en": "Framapad clone, a online editor providing collaborative editing in real-time.", "en": "Framapad clone, a online editor providing collaborative editing in real-time.",
"fr": "Clone de Framapad, un éditeur en ligne fournissant l'édition collaborative en temps réel." "fr": "Clone de Framapad, un éditeur en ligne fournissant l'édition collaborative en temps réel."
}, },
"version": "1.6.5~ynh4", "version": "1.7.0~ynh1",
"url": "https://framapad.org", "url": "https://framapad.org",
"license": "Apache-2.0", "license": "Apache-2.0",
"maintainer": { "maintainer": {

View file

@ -7,8 +7,8 @@ abiword_app_depencencies="abiword"
libreoffice_app_dependencies="unoconv libreoffice-writer" libreoffice_app_dependencies="unoconv libreoffice-writer"
# Version of nodejs # Version of nodejs
nodejs_version=4 nodejs_version=6
# Version of mypads # Version of mypads
# This variable is mostly used to force an upgrade of the package in case of new versions of mypads. # This variable is mostly used to force an upgrade of the package in case of new versions of mypads.
mypads_version=1.4.6 mypads_version=1.6.2

View file

@ -158,13 +158,13 @@ npm cache clean
ynh_exec_warn_less npm update) ynh_exec_warn_less npm update)
# Then update the additionnal modules # Then update the additionnal modules
(cd "$final_path"
npm cache clean
while read node_module while read node_module
do do
echo "Update $node_module" echo "Update $node_module"
(cd "$final_path/node_modules/$node_module" ynh_exec_warn_less npm install --upgrade $node_module || true
npm cache clean done <<< "$(ls -1 "$final_path/node_modules" | grep "^ep_")")
ynh_exec_warn_less npm update || true)
done <<< "$(ls -1 "$final_path/node_modules")"
#================================================= #=================================================
# SPECIFIC UPGRADE # SPECIFIC UPGRADE