From 609d2c4468bf26204e4bf64fb16f715929a75afa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 21 Jun 2024 09:52:43 +0200 Subject: [PATCH 1/7] cleaning --- .gitignore | 3 +++ manifest.toml | 1 + scripts/_common.sh | 16 ++-------------- scripts/backup | 17 ++++------------- scripts/change_url | 12 +++--------- scripts/config | 8 -------- scripts/install | 32 +++++++++++++------------------- scripts/remove | 12 +++--------- scripts/restore | 18 ++++++------------ scripts/upgrade | 38 ++++++++++++++++---------------------- 10 files changed, 51 insertions(+), 106 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8727f14 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*~ +~.sw[op] +.DS_Store diff --git a/manifest.toml b/manifest.toml index e7cbf70..6acf4b5 100644 --- a/manifest.toml +++ b/manifest.toml @@ -19,6 +19,7 @@ cpe = "cpe:2.3:a:matrix:element" [integration] yunohost = ">= 11.2" +helpers_version = "2.1" architectures = "all" multi_instance = true diff --git a/scripts/_common.sh b/scripts/_common.sh index c71aa26..cb1662c 100755 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -1,24 +1,12 @@ #!/bin/bash #================================================= -# COMMON VARIABLES -#================================================= - -#================================================= -# PERSONAL HELPERS +# COMMON VARIABLES AND CUSTOM HELPERS #================================================= configure_element() { - ynh_add_config --template="config.json" --destination="$install_dir/config.json" + ynh_config_add --template="config.json" --destination="$install_dir/config.json" chmod -R u=rwX,g=rX,o= "$install_dir" chown -R $app:www-data "$install_dir" } - -#================================================= -# EXPERIMENTAL HELPERS -#================================================= - -#================================================= -# FUTURE OFFICIAL HELPERS -#================================================= diff --git a/scripts/backup b/scripts/backup index 52eea5b..af443d9 100644 --- a/scripts/backup +++ b/scripts/backup @@ -1,34 +1,25 @@ #!/bin/bash -#================================================= -# GENERIC START -#================================================= -# IMPORT GENERIC HELPERS -#================================================= - # Keep this path for calling _common.sh inside the execution's context of backup and restore scripts source ../settings/scripts/_common.sh source /usr/share/yunohost/helpers -#================================================= -# DECLARE DATA AND CONF FILES TO BACKUP -#================================================= -ynh_print_info --message="Declaring files to be backed up..." +ynh_print_info "Declaring files to be backed up..." #================================================= # BACKUP THE APP MAIN DIR #================================================= -ynh_backup --src_path="$install_dir" +ynh_backup "$install_dir" #================================================= # BACKUP THE NGINX CONFIGURATION #================================================= -ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf" +ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" #================================================= # END OF SCRIPT #================================================= -ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." +ynh_print_info "Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." diff --git a/scripts/change_url b/scripts/change_url index ab2d658..2678882 100644 --- a/scripts/change_url +++ b/scripts/change_url @@ -1,22 +1,16 @@ #!/bin/bash -#================================================= -# GENERIC STARTING -#================================================= -# IMPORT GENERIC HELPERS -#================================================= - source /usr/share/yunohost/helpers #================================================= # MODIFY URL IN NGINX CONF #================================================= -ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1 +ynh_script_progression "Updating NGINX web server configuration..." -ynh_change_url_nginx_config +ynh_config_change_url_nginx #================================================= # END OF SCRIPT #================================================= -ynh_script_progression --message="Change of URL completed for $app" --last +ynh_script_progression "Change of URL completed for $app" diff --git a/scripts/config b/scripts/config index 3c2c734..5652989 100644 --- a/scripts/config +++ b/scripts/config @@ -1,11 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC START -#================================================= -# IMPORT GENERIC HELPERS -#================================================= - source ./_common.sh source /usr/share/yunohost/helpers @@ -14,8 +8,6 @@ ynh_app_config_apply() { configure_element } -#================================================= -# GENERIC FINALIZATION #================================================= # SELECT THE ACTION FOLLOWING THE GIVEN ARGUMENT #================================================= diff --git a/scripts/install b/scripts/install index 940db4a..51d43c9 100644 --- a/scripts/install +++ b/scripts/install @@ -1,11 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC START -#================================================= -# IMPORT GENERIC HELPERS -#================================================= - source _common.sh source /usr/share/yunohost/helpers @@ -22,19 +16,19 @@ default_federate=true default_theme=light show_labs_settings=false -ynh_app_setting_set --app=$app --key=disable_custom_urls --value=$disable_custom_urls -ynh_app_setting_set --app=$app --key=disable_guests --value=$disable_guests -ynh_app_setting_set --app=$app --key=disable_3pid_login --value=$disable_3pid_login -ynh_app_setting_set --app=$app --key=default_country_code --value=$default_country_code -ynh_app_setting_set --app=$app --key=brand_text --value=$brand_text -ynh_app_setting_set --app=$app --key=default_federate --value=$default_federate -ynh_app_setting_set --app=$app --key=default_theme --value=$default_theme -ynh_app_setting_set --app=$app --key=show_labs_settings --value=$show_labs_settings +ynh_app_setting_set --key=disable_custom_urls --value=$disable_custom_urls +ynh_app_setting_set --key=disable_guests --value=$disable_guests +ynh_app_setting_set --key=disable_3pid_login --value=$disable_3pid_login +ynh_app_setting_set --key=default_country_code --value=$default_country_code +ynh_app_setting_set --key=brand_text --value=$brand_text +ynh_app_setting_set --key=default_federate --value=$default_federate +ynh_app_setting_set --key=default_theme --value=$default_theme +ynh_app_setting_set --key=show_labs_settings --value=$show_labs_settings #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= -ynh_script_progression --message="Setting up source files..." --weight=4 +ynh_script_progression "Setting up source files..." # Download, check integrity, uncompress and patch the source from app.src ynh_setup_source --dest_dir="$install_dir" @@ -42,15 +36,15 @@ ynh_setup_source --dest_dir="$install_dir" #================================================= # SYSTEM CONFIGURATION #================================================= -ynh_script_progression --message="Adding system configurations related to $app..." --weight=1 +ynh_script_progression "Adding system configurations related to $app..." # Create a dedicated NGINX config -ynh_add_nginx_config +ynh_config_add_nginx #================================================= # ADD A CONFIGURATION #================================================= -ynh_script_progression --message="Adding a configuration file..." --weight=1 +ynh_script_progression "Adding $app's configuration..." configure_element @@ -58,4 +52,4 @@ configure_element # END OF SCRIPT #================================================= -ynh_script_progression --message="Installation of $app completed" --last +ynh_script_progression "Installation of $app completed" diff --git a/scripts/remove b/scripts/remove index b41853e..3a218e8 100755 --- a/scripts/remove +++ b/scripts/remove @@ -1,24 +1,18 @@ #!/bin/bash -#================================================= -# GENERIC START -#================================================= -# IMPORT GENERIC HELPERS -#================================================= - source _common.sh source /usr/share/yunohost/helpers #================================================= # REMOVE SYSTEM CONFIGURATIONS #================================================= -ynh_script_progression --message="Removing system configurations related to $app..." --weight=1 +ynh_script_progression "Removing system configurations related to $app..." # Remove the dedicated NGINX config -ynh_remove_nginx_config +ynh_config_remove_nginx #================================================= # END OF SCRIPT #================================================= -ynh_script_progression --message="Removal of $app completed" --last +ynh_script_progression "Removal of $app completed" diff --git a/scripts/restore b/scripts/restore index 470dc24..0289e6e 100644 --- a/scripts/restore +++ b/scripts/restore @@ -1,11 +1,5 @@ #!/bin/bash -#================================================= -# GENERIC START -#================================================= -# IMPORT GENERIC HELPERS -#================================================= - # Keep this path for calling _common.sh inside the execution's context of backup and restore scripts source ../settings/scripts/_common.sh source /usr/share/yunohost/helpers @@ -13,23 +7,23 @@ source /usr/share/yunohost/helpers #================================================= # RESTORE THE APP MAIN DIR #================================================= -ynh_script_progression --message="Restoring the app main directory..." --weight=1 +ynh_script_progression "Restoring the app main directory..." -ynh_restore_file --origin_path="$install_dir" +ynh_restore "$install_dir" chown -R $app:www-data "$install_dir" #================================================= # RESTORE SYSTEM CONFIGURATIONS #================================================= -ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1 +ynh_script_progression "Restoring system configurations related to $app..." -ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf" +ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf" -ynh_systemd_action --service_name=nginx --action=reload +ynh_systemctl --service=nginx --action=reload #================================================= # END OF SCRIPT #================================================= -ynh_script_progression --message="Restoration completed for $app" --last +ynh_script_progression "Restoration completed for $app" diff --git a/scripts/upgrade b/scripts/upgrade index bf9e67d..b746d4d 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -1,71 +1,65 @@ #!/bin/bash -#================================================= -# GENERIC START -#================================================= -# IMPORT GENERIC HELPERS -#================================================= - source _common.sh source /usr/share/yunohost/helpers #================================================= # ENSURE DOWNWARD COMPATIBILITY #================================================= -ynh_script_progression --message='Ensuring downward compatibility...' --weight=1 +ynh_script_progression 'Ensuring downward compatibility...' if [ -z "${default_home_server:-}" ]; then default_home_server='matrix.org' - ynh_app_setting_set --app=$app --key=default_home_server --value=$default_home_server + ynh_app_setting_set --key=default_home_server --value=$default_home_server fi if [ -z "${disable_custom_urls:-}" ]; then disable_custom_urls=false - ynh_app_setting_set --app=$app --key=disable_custom_urls --value=$disable_custom_urls + ynh_app_setting_set --key=disable_custom_urls --value=$disable_custom_urls fi if [ -z "${disable_guests:-}" ]; then disable_guests=false - ynh_app_setting_set --app=$app --key=disable_guests --value=$disable_guests + ynh_app_setting_set --key=disable_guests --value=$disable_guests fi if [ -z "${disable_3pid_login:-}" ]; then disable_3pid_login=false - ynh_app_setting_set --app=$app --key=disable_3pid_login --value=$disable_3pid_login + ynh_app_setting_set --key=disable_3pid_login --value=$disable_3pid_login fi if [ -z "${default_country_code:-}" ]; then default_country_code=false - ynh_app_setting_set --app=$app --key=default_country_code --value=$default_country_code + ynh_app_setting_set --key=default_country_code --value=$default_country_code fi if [ -z "${brand_text:-}" ]; then brand_text=Element - ynh_app_setting_set --app=$app --key=brand_text --value=$brand_text + ynh_app_setting_set --key=brand_text --value=$brand_text fi if [ -z "${default_federate:-}" ]; then default_federate=true - ynh_app_setting_set --app=$app --key=default_federate --value=$default_federate + ynh_app_setting_set --key=default_federate --value=$default_federate fi if [ -z "${default_theme:-}" ]; then default_theme=light - ynh_app_setting_set --app=$app --key=default_theme --value=$default_theme + ynh_app_setting_set --key=default_theme --value=$default_theme fi if [ -z "${show_labs_settings:-}" ]; then show_labs_settings=false - ynh_app_setting_set --app=$app --key=show_labs_settings --value=$show_labs_settings + ynh_app_setting_set --key=show_labs_settings --value=$show_labs_settings fi #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= -ynh_script_progression --message="Upgrading source files..." --weight=1 +ynh_script_progression "Upgrading source files..." # Download, check integrity, uncompress and patch the source from app.src -ynh_setup_source --dest_dir="$install_dir" --full_replace=1 --keep="config.json" +ynh_setup_source --dest_dir="$install_dir" --full_replace --keep="config.json" chmod -R o-rwx "$install_dir" chown -R $app:www-data "$install_dir" @@ -73,20 +67,20 @@ chown -R $app:www-data "$install_dir" #================================================= # ADD A CONFIGURATION #================================================= -ynh_script_progression --message="Adding a configuration file..." --weight=1 +ynh_script_progression "Adding $app's configuration..." configure_element #================================================= # REAPPLY SYSTEM CONFIGURATIONS #================================================= -ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1 +ynh_script_progression "Upgrading system configurations related to $app..." # Create a dedicated NGINX config -ynh_add_nginx_config +ynh_config_add_nginx #================================================= # END OF SCRIPT #================================================= -ynh_script_progression --message="Upgrade of $app completed" --last +ynh_script_progression "Upgrade of $app completed" From 29bc3111c038a86d3bb58001eb3ae98aedcfdcd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 21 Jun 2024 09:55:01 +0200 Subject: [PATCH 2/7] fix --- manifest.toml | 2 +- scripts/install | 2 -- scripts/remove | 1 - scripts/upgrade | 2 -- 4 files changed, 1 insertion(+), 6 deletions(-) diff --git a/manifest.toml b/manifest.toml index 6acf4b5..247c8c5 100644 --- a/manifest.toml +++ b/manifest.toml @@ -18,7 +18,7 @@ code = "https://github.com/element-hq/element-web" cpe = "cpe:2.3:a:matrix:element" [integration] -yunohost = ">= 11.2" +yunohost = ">= 11.2.15" helpers_version = "2.1" architectures = "all" multi_instance = true diff --git a/scripts/install b/scripts/install index 51d43c9..a6cb3eb 100644 --- a/scripts/install +++ b/scripts/install @@ -30,7 +30,6 @@ ynh_app_setting_set --key=show_labs_settings --value=$show_labs_settings #================================================= ynh_script_progression "Setting up source files..." -# Download, check integrity, uncompress and patch the source from app.src ynh_setup_source --dest_dir="$install_dir" #================================================= @@ -38,7 +37,6 @@ ynh_setup_source --dest_dir="$install_dir" #================================================= ynh_script_progression "Adding system configurations related to $app..." -# Create a dedicated NGINX config ynh_config_add_nginx #================================================= diff --git a/scripts/remove b/scripts/remove index 3a218e8..33f9552 100755 --- a/scripts/remove +++ b/scripts/remove @@ -8,7 +8,6 @@ source /usr/share/yunohost/helpers #================================================= ynh_script_progression "Removing system configurations related to $app..." -# Remove the dedicated NGINX config ynh_config_remove_nginx #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index b746d4d..0bfc406 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -58,7 +58,6 @@ fi #================================================= ynh_script_progression "Upgrading source files..." -# Download, check integrity, uncompress and patch the source from app.src ynh_setup_source --dest_dir="$install_dir" --full_replace --keep="config.json" chmod -R o-rwx "$install_dir" @@ -76,7 +75,6 @@ configure_element #================================================= ynh_script_progression "Upgrading system configurations related to $app..." -# Create a dedicated NGINX config ynh_config_add_nginx #================================================= From 6c6621200a4597c0dd07eb4b89421d728e24883c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 23 Jun 2024 19:49:20 +0200 Subject: [PATCH 3/7] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 247c8c5..556f23d 100644 --- a/manifest.toml +++ b/manifest.toml @@ -18,7 +18,7 @@ code = "https://github.com/element-hq/element-web" cpe = "cpe:2.3:a:matrix:element" [integration] -yunohost = ">= 11.2.15" +yunohost = ">= 11.2.16" helpers_version = "2.1" architectures = "all" multi_instance = true From 81d8c37727cabf8eab672fabaeecc2597cb555a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 5 Jul 2024 14:44:16 +0200 Subject: [PATCH 4/7] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 556f23d..4dfe6c0 100644 --- a/manifest.toml +++ b/manifest.toml @@ -18,7 +18,7 @@ code = "https://github.com/element-hq/element-web" cpe = "cpe:2.3:a:matrix:element" [integration] -yunohost = ">= 11.2.16" +yunohost = ">= 11.2.20" helpers_version = "2.1" architectures = "all" multi_instance = true From ecf2e0e244f245825c77ca80f38ef99d040bd8be Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 5 Jul 2024 12:44:21 +0000 Subject: [PATCH 5/7] Auto-update READMEs --- README.md | 2 +- README_es.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_zh_Hans.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ae67e2c..8a9de69 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ It shall NOT be edited by hand. # Element for YunoHost -[![Integration level](https://dash.yunohost.org/integration/element.svg)](https://dash.yunohost.org/appci/app/element) ![Working status](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) +[![Integration level](https://dash.yunohost.org/integration/element.svg)](https://ci-apps.yunohost.org/ci/apps/element/) ![Working status](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) [![Install Element with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=element) diff --git a/README_es.md b/README_es.md index 240020c..9204869 100644 --- a/README_es.md +++ b/README_es.md @@ -5,7 +5,7 @@ No se debe editar a mano. # Element para Yunohost -[![Nivel de integración](https://dash.yunohost.org/integration/element.svg)](https://dash.yunohost.org/appci/app/element) ![Estado funcional](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Estado En Mantención](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) +[![Nivel de integración](https://dash.yunohost.org/integration/element.svg)](https://ci-apps.yunohost.org/ci/apps/element/) ![Estado funcional](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Estado En Mantención](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) [![Instalar Element con Yunhost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=element) diff --git a/README_eu.md b/README_eu.md index 60fc01e..c0f76ec 100644 --- a/README_eu.md +++ b/README_eu.md @@ -5,7 +5,7 @@ EZ editatu eskuz. # Element YunoHost-erako -[![Integrazio maila](https://dash.yunohost.org/integration/element.svg)](https://dash.yunohost.org/appci/app/element) ![Funtzionamendu egoera](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Mantentze egoera](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) +[![Integrazio maila](https://dash.yunohost.org/integration/element.svg)](https://ci-apps.yunohost.org/ci/apps/element/) ![Funtzionamendu egoera](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Mantentze egoera](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) [![Instalatu Element YunoHost-ekin](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=element) diff --git a/README_fr.md b/README_fr.md index 2a4c383..5cd5a55 100644 --- a/README_fr.md +++ b/README_fr.md @@ -5,7 +5,7 @@ Il NE doit PAS être modifié à la main. # Element pour YunoHost -[![Niveau d’intégration](https://dash.yunohost.org/integration/element.svg)](https://dash.yunohost.org/appci/app/element) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) +[![Niveau d’intégration](https://dash.yunohost.org/integration/element.svg)](https://ci-apps.yunohost.org/ci/apps/element/) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) [![Installer Element avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=element) diff --git a/README_gl.md b/README_gl.md index 8703f15..303190e 100644 --- a/README_gl.md +++ b/README_gl.md @@ -5,7 +5,7 @@ NON debe editarse manualmente. # Element para YunoHost -[![Nivel de integración](https://dash.yunohost.org/integration/element.svg)](https://dash.yunohost.org/appci/app/element) ![Estado de funcionamento](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Estado de mantemento](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) +[![Nivel de integración](https://dash.yunohost.org/integration/element.svg)](https://ci-apps.yunohost.org/ci/apps/element/) ![Estado de funcionamento](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![Estado de mantemento](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) [![Instalar Element con YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=element) diff --git a/README_zh_Hans.md b/README_zh_Hans.md index f188bce..7263046 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -5,7 +5,7 @@ # YunoHost 上的 Element -[![集成程度](https://dash.yunohost.org/integration/element.svg)](https://dash.yunohost.org/appci/app/element) ![工作状态](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![维护状态](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) +[![集成程度](https://dash.yunohost.org/integration/element.svg)](https://ci-apps.yunohost.org/ci/apps/element/) ![工作状态](https://ci-apps.yunohost.org/ci/badges/element.status.svg) ![维护状态](https://ci-apps.yunohost.org/ci/badges/element.maintain.svg) [![使用 YunoHost 安装 Element](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=element) From 6a31fd1cbfa757ea521df95703d9ea96ca75160f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:45:39 +0200 Subject: [PATCH 6/7] Update manifest.toml --- manifest.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.toml b/manifest.toml index 4dfe6c0..c935c81 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Element" description.en = "Web client for Matrix" description.fr = "Client web pour Matrix" -version = "1.11.69~ynh1" +version = "1.11.70~ynh1" maintainers = ["Josué Tille"] @@ -57,8 +57,8 @@ ram.runtime = "0M" [resources.sources] [resources.sources.main] - url = "https://github.com/element-hq/element-web/releases/download/v1.11.69/element-v1.11.69.tar.gz" - sha256 = "378a72551461717545ee04624773c2fe77c6c83213b6a15f7ddf6acb8ed5b31a" + url = "https://github.com/element-hq/element-web/releases/download/v1.11.70/element-v1.11.70.tar.gz" + sha256 = "ab5fa83233b79a6baa5fea3592169d8476c779c48eb71a1f6bd7c4111f39f55e" autoupdate.strategy = "latest_github_release" autoupdate.asset = "^element-v.*.tar.gz$" From 729ddf15491f0d088875bdba6a60535c78f10c67 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Mon, 8 Jul 2024 14:45:44 +0000 Subject: [PATCH 7/7] Auto-update READMEs --- README.md | 2 +- README_es.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_zh_Hans.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8a9de69..0f1d13b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ It shall NOT be edited by hand. Element is a new type of messaging app. You choose where your messages are stored, putting you in control of your data. It gives you access to the Matrix open network, so you can talk to anyone. Element provides a new level of security, adding cross-signed device verification to default end-to-end encryption. -**Shipped version:** 1.11.69~ynh1 +**Shipped version:** 1.11.70~ynh1 **Demo:** diff --git a/README_es.md b/README_es.md index 9204869..34a9a87 100644 --- a/README_es.md +++ b/README_es.md @@ -18,7 +18,7 @@ No se debe editar a mano. Element is a new type of messaging app. You choose where your messages are stored, putting you in control of your data. It gives you access to the Matrix open network, so you can talk to anyone. Element provides a new level of security, adding cross-signed device verification to default end-to-end encryption. -**Versión actual:** 1.11.69~ynh1 +**Versión actual:** 1.11.70~ynh1 **Demo:** diff --git a/README_eu.md b/README_eu.md index c0f76ec..3e5633c 100644 --- a/README_eu.md +++ b/README_eu.md @@ -18,7 +18,7 @@ EZ editatu eskuz. Element is a new type of messaging app. You choose where your messages are stored, putting you in control of your data. It gives you access to the Matrix open network, so you can talk to anyone. Element provides a new level of security, adding cross-signed device verification to default end-to-end encryption. -**Paketatutako bertsioa:** 1.11.69~ynh1 +**Paketatutako bertsioa:** 1.11.70~ynh1 **Demoa:** diff --git a/README_fr.md b/README_fr.md index 5cd5a55..ae46773 100644 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,7 @@ Il NE doit PAS être modifié à la main. Element est un nouveau type d'application de messagerie. Vous choisissez où vos messages sont stockés, ce qui vous donne le contrôle de vos données. Il vous donne accès au réseau ouvert Matrix, vous pouvez donc parler à n'importe qui. Element offre un nouveau niveau de sécurité, en ajoutant la vérification des appareils par signature croisée au chiffrement de bout en bout par défaut. -**Version incluse :** 1.11.69~ynh1 +**Version incluse :** 1.11.70~ynh1 **Démo :** diff --git a/README_gl.md b/README_gl.md index 303190e..8c8eebb 100644 --- a/README_gl.md +++ b/README_gl.md @@ -18,7 +18,7 @@ NON debe editarse manualmente. Element is a new type of messaging app. You choose where your messages are stored, putting you in control of your data. It gives you access to the Matrix open network, so you can talk to anyone. Element provides a new level of security, adding cross-signed device verification to default end-to-end encryption. -**Versión proporcionada:** 1.11.69~ynh1 +**Versión proporcionada:** 1.11.70~ynh1 **Demo:** diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 7263046..6fcd21c 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -18,7 +18,7 @@ Element is a new type of messaging app. You choose where your messages are stored, putting you in control of your data. It gives you access to the Matrix open network, so you can talk to anyone. Element provides a new level of security, adding cross-signed device verification to default end-to-end encryption. -**分发版本:** 1.11.69~ynh1 +**分发版本:** 1.11.70~ynh1 **演示:**