From aec22ac9e4152da505d374f72ceed64ce4d8bd75 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sat, 26 Feb 2022 22:44:20 +0100 Subject: [PATCH 1/9] Fix integration with Synapse --- conf/nginx.conf | 28 ---------------------------- conf/synapse.nginx.conf | 8 ++++++++ manifest.json | 12 +++++------- scripts/backup | 3 +++ scripts/install | 9 ++++++++- scripts/remove | 7 ++++++- scripts/restore | 2 ++ scripts/upgrade | 13 ++++++++++++- 8 files changed, 44 insertions(+), 38 deletions(-) create mode 100644 conf/synapse.nginx.conf diff --git a/conf/nginx.conf b/conf/nginx.conf index 79b2fd8..a990259 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -15,31 +15,3 @@ location / { # Include SSOWAT user panel. include conf.d/yunohost_panel.conf.inc; } - -location /.well-known/acme-challenge { - proxy_pass http://127.0.0.1:8009; -} - -location /.well-known/matrix/server { - return 200 '{ "m.server": "__SYNAPSE_DOMAIN__:443" }'; -} - -location /.well-known/matrix/client { - return 200 '{ "m.homeserver": { "base_url": "https://__SYNAPSE_DOMAIN__" } }'; -} - -location /_matrix { - proxy_pass http://127.0.0.1:8008; - proxy_set_header X-Forwarded-For $remote_addr; - proxy_set_header Host $host; - proxy_read_timeout 600; - client_max_body_size 100M; -} - -location /_synapse/admin { - proxy_pass http://127.0.0.1:8008; - proxy_set_header X-Forwarded-For $remote_addr; - proxy_set_header Host $host; - proxy_read_timeout 600; - client_max_body_size 100M; -} diff --git a/conf/synapse.nginx.conf b/conf/synapse.nginx.conf new file mode 100644 index 0000000..d7b771b --- /dev/null +++ b/conf/synapse.nginx.conf @@ -0,0 +1,8 @@ +location /_synapse/admin { + proxy_pass http://localhost:__SYNAPSE_PORT__; + proxy_set_header X-Forwarded-For $remote_addr; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header Host $host; + + client_max_body_size 100M; +} diff --git a/manifest.json b/manifest.json index 92c9e6f..ebc4779 100644 --- a/manifest.json +++ b/manifest.json @@ -31,14 +31,12 @@ "type": "domain" }, { - "name": "synapse_domain", - "type": "domain", + "name": "synapse_app", + "type": "app", "ask": { - "en": "The domain of your Synapse server", - "fr": "Le domain de votre serveur Synapse" - }, - "example": "synapse.example.com", - "default": "" + "en": "Select the Synapse app you wish to connect to.", + "fr": "Sélectionnez l'app Synapse à laquelle vous souhaitez vous connecter." + } }, { "name": "is_public", diff --git a/scripts/backup b/scripts/backup index d104a02..d50ae1f 100644 --- a/scripts/backup +++ b/scripts/backup @@ -25,6 +25,8 @@ app=$YNH_APP_INSTANCE_NAME final_path=$(ynh_app_setting_get --app=$app --key=final_path) domain=$(ynh_app_setting_get --app=$app --key=domain) +synapse_app=$(ynh_app_setting_get --app=$app --key=synapse_app) +synapse_domain=$(ynh_app_setting_get --app=$app --key=synapse_domain) #================================================= # DECLARE DATA AND CONF FILES TO BACKUP @@ -42,6 +44,7 @@ ynh_backup --src_path="$final_path" #================================================= ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf" +ynh_backup --src_path="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" #================================================= # BACKUP LOGROTATE diff --git a/scripts/install b/scripts/install index dec0259..8895085 100644 --- a/scripts/install +++ b/scripts/install @@ -23,7 +23,9 @@ ynh_abort_if_errors domain=$YNH_APP_ARG_DOMAIN path_url="/" is_public=$YNH_APP_ARG_IS_PUBLIC -synapse_domain=$YNH_APP_ARG_SYNAPSE_DOMAIN +synapse_app=$YNH_APP_ARG_SYNAPSE_APP +synapse_domain=$(ynh_app_setting_get --app=$synapse_app --key=domain) +synapse_port=$(ynh_app_setting_get --app=$synapse_app --key=synapse_port) app=$YNH_APP_INSTANCE_NAME @@ -45,7 +47,9 @@ ynh_script_progression --message="Storing installation settings..." --weight=2 ynh_app_setting_set --app=$app --key=domain --value=$domain ynh_app_setting_set --app=$app --key=path --value=$path_url +ynh_app_setting_set --app=$app --key=synapse_app --value=$synapse_app ynh_app_setting_set --app=$app --key=synapse_domain --value=$synapse_domain +ynh_app_setting_set --app=$app --key=synapse_port --value=$synapse_port #================================================= # STANDARD MODIFICATIONS @@ -98,6 +102,9 @@ ynh_script_progression --message="Configuring NGINX web server..." --weight=2 # Create a dedicated NGINX config ynh_add_nginx_config +# Create NGINX config to access /_synapse/admin endpoint +ynh_add_config --template="synapse.nginx.conf" --destination="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" + #================================================= # SPECIFIC SETUP #============================================== diff --git a/scripts/remove b/scripts/remove index 09d8112..42a027e 100644 --- a/scripts/remove +++ b/scripts/remove @@ -19,6 +19,8 @@ app=$YNH_APP_INSTANCE_NAME domain=$(ynh_app_setting_get --app=$app --key=domain) port=$(ynh_app_setting_get --app=$app --key=port) final_path=$(ynh_app_setting_get --app=$app --key=final_path) +synapse_app=$(ynh_app_setting_get --app=$app --key=synapse_app) +synapse_domain=$(ynh_app_setting_get --app=$synapse_app --key=synapse_domain) #================================================= # STANDARD REMOVE @@ -70,9 +72,12 @@ ynh_secure_remove --file="$final_path" #================================================= ynh_script_progression --message="Removing NGINX web server configuration..." --weight=5 -# Remove the dedicated nginx config +# Remove the dedicated NGINX config ynh_remove_nginx_config +# Remove NGINX config that enabled /_synapse/admin endpoint +ynh_secure_remove --file="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" + #================================================= # GENERIC FINALIZATION #================================================= diff --git a/scripts/restore b/scripts/restore index e3da35e..3e6478f 100644 --- a/scripts/restore +++ b/scripts/restore @@ -26,6 +26,7 @@ app=$YNH_APP_INSTANCE_NAME domain=$(ynh_app_setting_get --app=$app --key=domain) path_url=$(ynh_app_setting_get --app=$app --key=path) final_path=$(ynh_app_setting_get --app=$app --key=final_path) +synapse_domain=$(ynh_app_setting_get --app=$app --key=synapse_domain) #================================================= # CHECK IF THE APP CAN BE RESTORED @@ -42,6 +43,7 @@ test ! -d $final_path || ynh_die --message="There is already a directory: $final ynh_script_progression --message="Restoring the NGINX configuration..." ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf" +ynh_restore_file --origin_path="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" #================================================= # RECREATE THE DEDICATED USER diff --git a/scripts/upgrade b/scripts/upgrade index 3028825..7fb2947 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -20,7 +20,11 @@ domain=$(ynh_app_setting_get --app=$app --key=domain) path_url=$(ynh_app_setting_get --app=$app --key=path) final_path=$(ynh_app_setting_get --app=$app --key=final_path) port=$(ynh_app_setting_get --app=$app --key=port) -synapse_domain=$(ynh_app_setting_get --app=$app --key=synapse_domain) +synapse_app=$(ynh_app_setting_get --app=$app --key=synapse_app) + +# Reload Synapse's settings, in case of they changed +synapse_domain=$(ynh_app_setting_get --app=$synapse_app --key=domain) +synapse_port=$(ynh_app_setting_get --app=$synapse_app --key=synapse_port) #================================================= # CHECK VERSION @@ -58,6 +62,10 @@ if ynh_legacy_permissions_exists; then ynh_app_setting_delete --app=$app --key=is_public fi +# Store Synapse's settings, in case of they changed +ynh_app_setting_set --app=$app --key=synapse_domain --value=$synapse_domain +ynh_app_setting_set --app=$app --key=synapse_port --value=$synapse_port + #================================================= # STANDARD UPGRADE STEPS #================================================= @@ -98,6 +106,9 @@ ynh_script_progression --message="Upgrading NGINX web server configuration..." - # Create a dedicated nginx config ynh_add_nginx_config +# Create NGINX config to access /_synapse/admin endpoint +ynh_add_config --template="synapse.nginx.conf" --destination="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" + #================================================= # UPGRADE DEPENDENCIES #================================================= From a7ff23c692b5d1f41705d03dd69214fcdb015641 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sat, 26 Feb 2022 23:03:46 +0100 Subject: [PATCH 2/9] Handle upgrade with synapse_app setting --- scripts/upgrade | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 7fb2947..b40662d 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -22,10 +22,6 @@ final_path=$(ynh_app_setting_get --app=$app --key=final_path) port=$(ynh_app_setting_get --app=$app --key=port) synapse_app=$(ynh_app_setting_get --app=$app --key=synapse_app) -# Reload Synapse's settings, in case of they changed -synapse_domain=$(ynh_app_setting_get --app=$synapse_app --key=domain) -synapse_port=$(ynh_app_setting_get --app=$synapse_app --key=synapse_port) - #================================================= # CHECK VERSION #================================================= @@ -62,7 +58,15 @@ if ynh_legacy_permissions_exists; then ynh_app_setting_delete --app=$app --key=is_public fi -# Store Synapse's settings, in case of they changed +# If synapse_app doesn't exist, create it and assume it is `synapse` +if [ -z "$synapse_app" ]; then + synapse_app="synapse" + ynh_app_setting_set --app=$app --key=synapse_app --value=$synapse_app +fi + +# Reload and store Synapse's settings, in case of they changed +synapse_domain=$(ynh_app_setting_get --app=$synapse_app --key=domain) +synapse_port=$(ynh_app_setting_get --app=$synapse_app --key=synapse_port) ynh_app_setting_set --app=$app --key=synapse_domain --value=$synapse_domain ynh_app_setting_set --app=$app --key=synapse_port --value=$synapse_port From 4a55f838bf2deb1cb1985d63bfd1be6302460e70 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Sat, 26 Feb 2022 23:20:12 +0100 Subject: [PATCH 3/9] Fix manifest (app key will be introduced in Bullseye) --- manifest.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index ebc4779..88403fb 100644 --- a/manifest.json +++ b/manifest.json @@ -32,11 +32,16 @@ }, { "name": "synapse_app", - "type": "app", + "type": "string", "ask": { - "en": "Select the Synapse app you wish to connect to.", - "fr": "Sélectionnez l'app Synapse à laquelle vous souhaitez vous connecter." - } + "en": "Input the Synapse app ID you wish to connect to.", + "fr": "Entrez l'ID de l'app Synapse à laquelle vous souhaitez vous connecter." + }, + "help": { + "en": "Leave the default value if you have only one Synapse server installed.", + "fr": "Laissez la valeur par défaut si vous n'avez installé qu'un seul serveur Synapse." + }, + "default": "synapse" }, { "name": "is_public", From 86d31fd5662be2093fb4b48dae07dd3c2ef2cb1b Mon Sep 17 00:00:00 2001 From: tituspijean Date: Tue, 1 Mar 2022 11:39:34 +0100 Subject: [PATCH 4/9] Avoid NGINX config conflits --- conf/{synapse.nginx.conf => endpoint.nginx.conf} | 0 scripts/backup | 2 +- scripts/install | 2 +- scripts/restore | 2 +- scripts/upgrade | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) rename conf/{synapse.nginx.conf => endpoint.nginx.conf} (100%) diff --git a/conf/synapse.nginx.conf b/conf/endpoint.nginx.conf similarity index 100% rename from conf/synapse.nginx.conf rename to conf/endpoint.nginx.conf diff --git a/scripts/backup b/scripts/backup index d50ae1f..e9ea8a1 100644 --- a/scripts/backup +++ b/scripts/backup @@ -44,7 +44,7 @@ ynh_backup --src_path="$final_path" #================================================= ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf" -ynh_backup --src_path="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" +ynh_backup --src_path="/etc/nginx/conf.d/${synapse_domain}.d/$app.endpoint.conf" #================================================= # BACKUP LOGROTATE diff --git a/scripts/install b/scripts/install index 8895085..e0dfae6 100644 --- a/scripts/install +++ b/scripts/install @@ -103,7 +103,7 @@ ynh_script_progression --message="Configuring NGINX web server..." --weight=2 ynh_add_nginx_config # Create NGINX config to access /_synapse/admin endpoint -ynh_add_config --template="synapse.nginx.conf" --destination="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" +ynh_add_config --template="endpoint.nginx.conf" --destination="/etc/nginx/conf.d/${synapse_domain}.d/$app.endpoint.conf" #================================================= # SPECIFIC SETUP diff --git a/scripts/restore b/scripts/restore index 3e6478f..e9610b3 100644 --- a/scripts/restore +++ b/scripts/restore @@ -43,7 +43,7 @@ test ! -d $final_path || ynh_die --message="There is already a directory: $final ynh_script_progression --message="Restoring the NGINX configuration..." ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf" -ynh_restore_file --origin_path="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" +ynh_restore_file --origin_path="/etc/nginx/conf.d/${synapse_domain}.d/$app.endpoint.conf" #================================================= # RECREATE THE DEDICATED USER diff --git a/scripts/upgrade b/scripts/upgrade index b40662d..36bdc56 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -111,7 +111,7 @@ ynh_script_progression --message="Upgrading NGINX web server configuration..." - ynh_add_nginx_config # Create NGINX config to access /_synapse/admin endpoint -ynh_add_config --template="synapse.nginx.conf" --destination="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" +ynh_add_config --template="endpoint.nginx.conf" --destination="/etc/nginx/conf.d/${synapse_domain}.d/$app.endpoint.conf" #================================================= # UPGRADE DEPENDENCIES From b7d77a410aac4ec210597f3056806def10e692f6 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Thu, 3 Mar 2022 22:13:48 +0100 Subject: [PATCH 5/9] Fix removal of NGINX endpoint.conf Co-authored-by: nathanael-h <7300309+nathanael-h@users.noreply.github.com> --- scripts/remove | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/remove b/scripts/remove index 42a027e..a50c97f 100644 --- a/scripts/remove +++ b/scripts/remove @@ -77,6 +77,7 @@ ynh_remove_nginx_config # Remove NGINX config that enabled /_synapse/admin endpoint ynh_secure_remove --file="/etc/nginx/conf.d/${synapse_domain}.d/synapse-admin.conf" +ynh_secure_remove --file="/etc/nginx/conf.d/${synapse_domain}.d/$app.endpoint.conf" #================================================= # GENERIC FINALIZATION From faf489247a23b295ecd657a526c2d42ef3071eb7 Mon Sep 17 00:00:00 2001 From: tituspijean Date: Mon, 26 Sep 2022 22:43:24 +0200 Subject: [PATCH 6/9] Fix check_process --- check_process | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/check_process b/check_process index 86ae03c..e89ada0 100644 --- a/check_process +++ b/check_process @@ -1,9 +1,11 @@ ;; Test complet + ; pre-install + sudo yunohost tools update apps + sudo yunohost app install https://github.com/YunoHost-Apps/synapse_ynh/tree/823f98a8cbe108ad4cc0e38e280a83401dca2b9f -a "domain=sub.domain.tld&server_name=$server_name&is_free_registration=$is_free_registration&jitsi_server=$jitsi_server" --force ; Manifest domain="domain.tld" + synapse_app="synapse" synapse_domain="sub.domain.tld" - path="/path" - admin="john" is_public=1 ; Checks pkg_linter=1 @@ -18,4 +20,4 @@ change_url=1 ;;; Options Email= -Notification=none \ No newline at end of file +Notification=none From 7a8496deb02c5d411864bf5b4c267ef04d53ef93 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Mon, 26 Sep 2022 20:43:27 +0000 Subject: [PATCH 7/9] Auto-update README --- README.md | 18 +++++++++--------- README_fr.md | 26 +++++++++++++++----------- 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index ee4bf8e..449aadd 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ It shall NOT be edited by hand. # Synapse Admin for YunoHost -[![Integration level](https://dash.yunohost.org/integration/synapse-admin.svg)](https://dash.yunohost.org/appci/app/synapse-admin) ![](https://ci-apps.yunohost.org/ci/badges/synapse-admin.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/synapse-admin.maintain.svg) +[![Integration level](https://dash.yunohost.org/integration/synapse-admin.svg)](https://dash.yunohost.org/appci/app/synapse-admin) ![Working status](https://ci-apps.yunohost.org/ci/badges/synapse-admin.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/synapse-admin.maintain.svg) [![Install Synapse Admin with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=synapse-admin) *[Lire ce readme en français.](./README_fr.md)* @@ -20,27 +20,27 @@ Admin UI for Synapse **Shipped version:** 0.8.5~ynh1 - ## Screenshots -![](./doc/screenshots/screenshots.jpg) +![Screenshot of Synapse Admin](./doc/screenshots/screenshots.jpg) ## Documentation and resources -* Official app website: https://github.com/Awesome-Technologies/synapse-admin -* Upstream app code repository: https://github.com/Awesome-Technologies/synapse-admin -* YunoHost documentation for this app: https://yunohost.org/app_synapse-admin -* Report a bug: https://github.com/YunoHost-Apps/synapse-admin_ynh/issues +* Official app website: +* Upstream app code repository: +* YunoHost documentation for this app: +* Report a bug: ## Developer info Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/synapse-admin_ynh/tree/testing). To try the testing branch, please proceed like that. -``` + +``` bash sudo yunohost app install https://github.com/YunoHost-Apps/synapse-admin_ynh/tree/testing --debug or sudo yunohost app upgrade synapse-admin -u https://github.com/YunoHost-Apps/synapse-admin_ynh/tree/testing --debug ``` -**More info regarding app packaging:** https://yunohost.org/packaging_apps \ No newline at end of file +**More info regarding app packaging:** diff --git a/README_fr.md b/README_fr.md index 7d7c422..2a9280c 100644 --- a/README_fr.md +++ b/README_fr.md @@ -1,10 +1,14 @@ + + # Synapse Admin pour YunoHost -[![Niveau d'intégration](https://dash.yunohost.org/integration/synapse-admin.svg)](https://dash.yunohost.org/appci/app/synapse-admin) ![](https://ci-apps.yunohost.org/ci/badges/synapse-admin.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/synapse-admin.maintain.svg) +[![Niveau d'intégration](https://dash.yunohost.org/integration/synapse-admin.svg)](https://dash.yunohost.org/appci/app/synapse-admin) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/synapse-admin.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/synapse-admin.maintain.svg) [![Installer Synapse Admin avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=synapse-admin) *[Read this readme in english.](./README.md)* -*[Lire ce readme en français.](./README_fr.md)* > *Ce package vous permet d'installer Synapse Admin rapidement et simplement sur un serveur YunoHost. Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.* @@ -13,30 +17,30 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Admin UI pour Synapse -**Version incluse :** 0.8.5~ynh1 - +**Version incluse :** 0.8.5~ynh1 ## Captures d'écran -![](./doc/screenshots/screenshots.jpg) +![Capture d'écran de Synapse Admin](./doc/screenshots/screenshots.jpg) ## Documentations et ressources -* Site officiel de l'app : https://github.com/Awesome-Technologies/synapse-admin -* Dépôt de code officiel de l'app : https://github.com/Awesome-Technologies/synapse-admin -* Documentation YunoHost pour cette app : https://yunohost.org/app_synapse-admin -* Signaler un bug : https://github.com/YunoHost-Apps/synapse-admin_ynh/issues +* Site officiel de l'app : +* Dépôt de code officiel de l'app : +* Documentation YunoHost pour cette app : +* Signaler un bug : ## Informations pour les développeurs Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/synapse-admin_ynh/tree/testing). Pour essayer la branche testing, procédez comme suit. -``` + +``` bash sudo yunohost app install https://github.com/YunoHost-Apps/synapse-admin_ynh/tree/testing --debug ou sudo yunohost app upgrade synapse-admin -u https://github.com/YunoHost-Apps/synapse-admin_ynh/tree/testing --debug ``` -**Plus d'infos sur le packaging d'applications :** https://yunohost.org/packaging_apps \ No newline at end of file +**Plus d'infos sur le packaging d'applications :** From cf8790f5da84d513277a8f67a7fec3cda2dc1df5 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 29 Sep 2022 12:25:29 +0200 Subject: [PATCH 8/9] Bump version --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 88403fb..e131e14 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Admin UI for Synapse", "fr": "Admin UI pour Synapse" }, - "version": "0.8.5~ynh1", + "version": "0.8.5~ynh2", "url": "https://github.com/Awesome-Technologies/synapse-admin", "upstream": { "license": "Apache-2.0", From 0fc37b19a5358d632d8eaccf7d81a39e62d7cd36 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 29 Sep 2022 11:04:12 +0000 Subject: [PATCH 9/9] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 449aadd..c6e3682 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Admin UI for Synapse -**Shipped version:** 0.8.5~ynh1 +**Shipped version:** 0.8.5~ynh2 ## Screenshots diff --git a/README_fr.md b/README_fr.md index 2a9280c..fed43a4 100644 --- a/README_fr.md +++ b/README_fr.md @@ -17,7 +17,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Admin UI pour Synapse -**Version incluse :** 0.8.5~ynh1 +**Version incluse :** 0.8.5~ynh2 ## Captures d'écran