diff --git a/README.md b/README.md index bf9b651..50a5b30 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ It shall NOT be edited by hand. To learn more about the philosophy and goals of the project, [visit **discourse.org**](http://www.discourse.org). -**Shipped version:** 2.8.14~ynh4 +**Shipped version:** 2.8.14~ynh5 **Demo:** diff --git a/README_es.md b/README_es.md index 641c089..bd7dd51 100644 --- a/README_es.md +++ b/README_es.md @@ -25,7 +25,7 @@ No se debe editar a mano. To learn more about the philosophy and goals of the project, [visit **discourse.org**](http://www.discourse.org). -**Versión actual:** 2.8.14~ynh4 +**Versión actual:** 2.8.14~ynh5 **Demo:** diff --git a/README_eu.md b/README_eu.md index 2859bf4..e7a2ba5 100644 --- a/README_eu.md +++ b/README_eu.md @@ -25,7 +25,7 @@ EZ editatu eskuz. To learn more about the philosophy and goals of the project, [visit **discourse.org**](http://www.discourse.org). -**Paketatutako bertsioa:** 2.8.14~ynh4 +**Paketatutako bertsioa:** 2.8.14~ynh5 **Demoa:** diff --git a/README_fr.md b/README_fr.md index b927656..2bfcf6f 100644 --- a/README_fr.md +++ b/README_fr.md @@ -25,7 +25,7 @@ Il NE doit PAS être modifié à la main. Pour en savoir plus sur la philosophie et les objectifs du projet, [visitez **discourse.org**](http://www.discourse.org). -**Version incluse :** 2.8.14~ynh4 +**Version incluse :** 2.8.14~ynh5 **Démo :** diff --git a/README_gl.md b/README_gl.md index 4af0ff5..4d07579 100644 --- a/README_gl.md +++ b/README_gl.md @@ -25,7 +25,7 @@ NON debe editarse manualmente. To learn more about the philosophy and goals of the project, [visit **discourse.org**](http://www.discourse.org). -**Versión proporcionada:** 2.8.14~ynh4 +**Versión proporcionada:** 2.8.14~ynh5 **Demo:** diff --git a/README_id.md b/README_id.md index a02fc85..d843ac3 100644 --- a/README_id.md +++ b/README_id.md @@ -25,7 +25,7 @@ Ini TIDAK boleh diedit dengan tangan. To learn more about the philosophy and goals of the project, [visit **discourse.org**](http://www.discourse.org). -**Versi terkirim:** 2.8.14~ynh4 +**Versi terkirim:** 2.8.14~ynh5 **Demo:** @@ -36,7 +36,7 @@ To learn more about the philosophy and goals of the project, [visit **discourse. ## Dokumentasi dan sumber daya - Website aplikasi resmi: -- Repositori kode aplikasi hulu: +- Depot kode aplikasi hulu: - Gudang YunoHost: - Laporkan bug: diff --git a/README_zh_Hans.md b/README_zh_Hans.md index f77b0aa..60c0ea9 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -25,7 +25,7 @@ To learn more about the philosophy and goals of the project, [visit **discourse.org**](http://www.discourse.org). -**分发版本:** 2.8.14~ynh4 +**分发版本:** 2.8.14~ynh5 **演示:** diff --git a/manifest.toml b/manifest.toml index 89f7588..d65d87c 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,7 +7,7 @@ name = "Discourse" description.en = "Discussion platform" description.fr = "Plateforme de discussion" -version = "2.8.14~ynh4" +version = "2.8.14~ynh5" maintainers = ["JimboJoe"] @@ -19,7 +19,7 @@ code = "https://github.com/discourse/discourse" cpe = "cpe:2.3:a:discourse:discourse" [integration] -yunohost = ">=11.2.12" +yunohost = ">=11.2.20" architectures = "all" multi_instance = true ldap = true @@ -93,6 +93,7 @@ ram.runtime = "1G" "pngcrush", "pngquant", "vim", + "redis-server", "zlib1g-dev", "postgresql", diff --git a/scripts/backup b/scripts/backup index 74cc404..d744b14 100644 --- a/scripts/backup +++ b/scripts/backup @@ -20,7 +20,7 @@ ynh_print_info --message="Declaring files to be backed up..." ynh_backup --src_path="$install_dir" #================================================= -# BACKUP THE SYSTEM CONFIGURATION +# SYSTEM CONFIGURATION #================================================= ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf" diff --git a/scripts/install b/scripts/install index 6edf40f..941613f 100644 --- a/scripts/install +++ b/scripts/install @@ -41,10 +41,12 @@ ynh_app_setting_set --app="$app" --key=unicorn_workers --value=$unicorn_workers # INSTALL DEPENDENCIES #================================================= ynh_script_progression --message="Installing Ruby..." + ynh_exec_warn_less ynh_install_ruby --ruby_version="$ruby_version" ynh_use_ruby ynh_script_progression --message="Installing NodeJS..." + ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version #================================================= diff --git a/scripts/remove b/scripts/remove index 54c4268..ad7764d 100644 --- a/scripts/remove +++ b/scripts/remove @@ -26,20 +26,10 @@ ynh_remove_logrotate # Remove the dedicated NGINX config ynh_remove_nginx_config -#================================================= -# REMOVE THE REDIS DATABASE -#================================================= -ynh_script_progression --message="Removing the redis database..." - ynh_redis_remove_db "$redis_db" -#================================================= -# REMOVE DEPENDENCIES -#================================================= -ynh_script_progression --message="Removing NodeJS..." ynh_remove_nodejs -ynh_script_progression --message="Removing Ruby..." ynh_remove_ruby #=================================================