From 198fe4073d7d5d3e0936cf99f9ee1dbe775e09b5 Mon Sep 17 00:00:00 2001 From: Yunohost-Bot <> Date: Sun, 7 Aug 2022 20:12:13 +0200 Subject: [PATCH 01/17] =?UTF-8?q?[autopatch]=20Add=20Common=20Platform?= =?UTF-8?q?=C2=A0Enumeration=20id=20to=20`manifest.json`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 24d3b8b..7ff400d 100755 --- a/manifest.json +++ b/manifest.json @@ -13,7 +13,8 @@ "website": "https://www.focalboard.com/", "admindoc": "https://www.focalboard.com/guide/admin/", "userdoc": "https://www.focalboard.com/guide/user/", - "code": "https://github.com/mattermost/focalboard" + "code": "https://github.com/mattermost/focalboard", + "cpe": "cpe:2.3:a:mattermost:focalboard" }, "license": "MIT", "maintainer": { @@ -44,4 +45,4 @@ } ] } -} +} \ No newline at end of file From 5fa73f5abe5e6f6d91d7eacfa98ff3c451414975 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sun, 14 Aug 2022 11:15:05 +0200 Subject: [PATCH 02/17] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 7ff400d..6c2f4fc 100755 --- a/manifest.json +++ b/manifest.json @@ -21,7 +21,7 @@ "name": "eric_G" }, "requirements": { - "yunohost": ">= 4.3.0" + "yunohost": ">= 11.0.9" }, "multi_instance": false, "services": [ From 22e5578f0c19ee9e21591c217325a6da4bff193a Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sun, 14 Aug 2022 09:15:10 +0000 Subject: [PATCH 03/17] Auto-update README --- README.md | 1 + README_fr.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e28067b..c67a2ba 100755 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ Focalboard is a project management tool that helps define, organize, track and m **Shipped version:** 7.1.0~ynh1 + ## Screenshots ![Screenshot of Focalboard](./doc/screenshots/screenshot.jpg) diff --git a/README_fr.md b/README_fr.md index eb64974..99ec0cb 100755 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,8 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Focalboard est un outil de gestion de projet qui aide à définir, organiser, suivre et gérer le travail entre les équipes, à l'aide d'une vue de tableau kanban familière. -**Version incluse :** 7.1.0~ynh1 +**Version incluse :** 7.1.0~ynh1 + ## Captures d'écran From e6ecff7ee8cca9a6f981af589c5a275a7b45ba9f Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 15 Sep 2022 21:13:30 +0200 Subject: [PATCH 04/17] Add config panel --- conf/config.json | 1 + config_panel.toml | 16 ++++++++++++++++ scripts/install | 3 +++ scripts/upgrade | 15 +++++++++++++++ 4 files changed, 35 insertions(+) create mode 100644 config_panel.toml diff --git a/conf/config.json b/conf/config.json index c7d837f..62ed06d 100644 --- a/conf/config.json +++ b/conf/config.json @@ -11,5 +11,6 @@ "telemetry": false, "session_expire_time": 2592000, "session_refresh_time": 18000, + "enablePublicSharedBoards": __ENABLE_PUBLIC_SHARED_BOARDES__, "localOnly": false } diff --git a/config_panel.toml b/config_panel.toml new file mode 100644 index 0000000..7c192eb --- /dev/null +++ b/config_panel.toml @@ -0,0 +1,16 @@ +version = "1.0" + +[main] +name = "Focalboard configuration" +services = ["__APP__"] + + [main.config] + name = "Configuration Options" + + [main.config.enablePublicSharedBoards] + ask = "Enable public boards" + type = "boolean" + yes = "true" + no = "false" + help = "Enable publishing boards for public access" + bind = "enablePublicSharedBoards:__FINALPATH__/config.json" diff --git a/scripts/install b/scripts/install index 9d8ad22..a7e9e19 100755 --- a/scripts/install +++ b/scripts/install @@ -30,6 +30,8 @@ is_public=$YNH_APP_ARG_IS_PUBLIC app=$YNH_APP_INSTANCE_NAME +enable_public_shared_boards="false" + #================================================= # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS #================================================= @@ -50,6 +52,7 @@ ynh_script_progression --message="Storing installation settings..." --weight=5 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=enable_public_shared_boards --value=$enable_public_shared_boards #================================================= # STANDARD MODIFICATIONS diff --git a/scripts/upgrade b/scripts/upgrade index 32f4f92..79b0e31 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -23,6 +23,8 @@ db_name=$(ynh_app_setting_get --app=$app --key=db_name) port=$(ynh_app_setting_get --app=$app --key=port) files_path=$(ynh_app_setting_get --app=$app --key=files_path) +enable_public_shared_boards=$(ynh_app_setting_get --app=$app --key=enable_public_shared_boards) + #================================================= # CHECK VERSION #================================================= @@ -34,6 +36,11 @@ upgrade_type=$(ynh_check_app_version_changed) #================================================= ynh_script_progression --message="Ensuring downward compatibility..." --weight=1 +if [ -z "$enable_public_shared_boards" ]; then + enable_public_shared_boards="true" + ynh_app_setting_set --app=$app --key=enable_public_shared_boards --value=$enable_public_shared_boards +fi + # Cleaning legacy permissions if ynh_legacy_permissions_exists; then ynh_legacy_permissions_delete_all @@ -115,6 +122,14 @@ ynh_script_progression --message="Upgrading NGINX web server configuration..." - # Create a dedicated NGINX config ynh_add_nginx_config +#================================================= +# MODIFY A CONFIG FILE +#================================================= +ynh_script_progression --message="Modifying a config file..." + +ynh_add_config --template="../conf/config.json" --destination="$final_path/config.json" +chmod 600 $final_path/config.json + #================================================= # UPGRADE DEPENDENCIES #================================================= From d3809893f4ea71620c9c94821f146f28b2daf007 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 15 Sep 2022 21:20:16 +0200 Subject: [PATCH 05/17] Fix --- conf/config.json | 2 +- config_panel.toml | 2 +- scripts/install | 4 ++-- scripts/upgrade | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/conf/config.json b/conf/config.json index 62ed06d..7ec25e6 100644 --- a/conf/config.json +++ b/conf/config.json @@ -11,6 +11,6 @@ "telemetry": false, "session_expire_time": 2592000, "session_refresh_time": 18000, - "enablePublicSharedBoards": __ENABLE_PUBLIC_SHARED_BOARDES__, + "enablePublicSharedBoards": __ENABLE_PUBLIC_BOARDS__, "localOnly": false } diff --git a/config_panel.toml b/config_panel.toml index 7c192eb..3276f53 100644 --- a/config_panel.toml +++ b/config_panel.toml @@ -7,7 +7,7 @@ services = ["__APP__"] [main.config] name = "Configuration Options" - [main.config.enablePublicSharedBoards] + [main.config.enable_public_boards] ask = "Enable public boards" type = "boolean" yes = "true" diff --git a/scripts/install b/scripts/install index a7e9e19..42597ff 100755 --- a/scripts/install +++ b/scripts/install @@ -30,7 +30,7 @@ is_public=$YNH_APP_ARG_IS_PUBLIC app=$YNH_APP_INSTANCE_NAME -enable_public_shared_boards="false" +enable_public_boards="false" #================================================= # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS @@ -52,7 +52,7 @@ ynh_script_progression --message="Storing installation settings..." --weight=5 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=enable_public_shared_boards --value=$enable_public_shared_boards +ynh_app_setting_set --app=$app --key=enable_public_boards --value=$enable_public_boards #================================================= # STANDARD MODIFICATIONS diff --git a/scripts/upgrade b/scripts/upgrade index 79b0e31..eebe520 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -23,7 +23,7 @@ db_name=$(ynh_app_setting_get --app=$app --key=db_name) port=$(ynh_app_setting_get --app=$app --key=port) files_path=$(ynh_app_setting_get --app=$app --key=files_path) -enable_public_shared_boards=$(ynh_app_setting_get --app=$app --key=enable_public_shared_boards) +enable_public_boards=$(ynh_app_setting_get --app=$app --key=enable_public_boards) #================================================= # CHECK VERSION @@ -36,9 +36,9 @@ upgrade_type=$(ynh_check_app_version_changed) #================================================= ynh_script_progression --message="Ensuring downward compatibility..." --weight=1 -if [ -z "$enable_public_shared_boards" ]; then - enable_public_shared_boards="true" - ynh_app_setting_set --app=$app --key=enable_public_shared_boards --value=$enable_public_shared_boards +if [ -z "$enable_public_boards" ]; then + enable_public_boards="false" + ynh_app_setting_set --app=$app --key=enable_public_boards --value=$enable_public_boards fi # Cleaning legacy permissions From f069db137eecc24c6b128a2da04a7b1e893b1e83 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 15 Sep 2022 21:26:20 +0200 Subject: [PATCH 06/17] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 6c2f4fc..7e7f29b 100755 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Self-hosted alternative to Trello, Notion, and Asana", "fr": "Alternative auto-hébergée à Trello, Notion et Asana" }, - "version": "7.1.0~ynh1", + "version": "7.1.0~ynh2", "url": "https://www.focalboard.com/", "upstream": { "license": "MIT", From 66562cb51313d286a3308422629337295d8fb9d9 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 15 Sep 2022 19:26:24 +0000 Subject: [PATCH 07/17] 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 c67a2ba..d4506e8 100755 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Focalboard is a project management tool that helps define, organize, track and manage work across teams, using a familiar kanban board view. -**Shipped version:** 7.1.0~ynh1 +**Shipped version:** 7.1.0~ynh2 ## Screenshots diff --git a/README_fr.md b/README_fr.md index 99ec0cb..eac786f 100755 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Focalboard est un outil de gestion de projet qui aide à définir, organiser, suivre et gérer le travail entre les équipes, à l'aide d'une vue de tableau kanban familière. -**Version incluse :** 7.1.0~ynh1 +**Version incluse :** 7.1.0~ynh2 ## Captures d'écran From 4bff322c9e528c411a375dae6b0b3932d1990afe Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 15 Sep 2022 22:52:18 +0200 Subject: [PATCH 08/17] Update upgrade --- scripts/upgrade | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/upgrade b/scripts/upgrade index eebe520..587f42f 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -20,6 +20,8 @@ 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) db_name=$(ynh_app_setting_get --app=$app --key=db_name) +db_user=$db_name +db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd) port=$(ynh_app_setting_get --app=$app --key=port) files_path=$(ynh_app_setting_get --app=$app --key=files_path) From 485fe4175abbb1aa96cf2cbd75dcba9467468eaf Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 15 Sep 2022 22:53:25 +0200 Subject: [PATCH 09/17] Update config.json --- conf/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/config.json b/conf/config.json index 7ec25e6..fad0d01 100644 --- a/conf/config.json +++ b/conf/config.json @@ -2,7 +2,7 @@ "serverRoot": "http://127.0.0.1:__PORT__", "port": __PORT__, "dbtype": "postgres", - "dbconfig": "postgres://__DB_NAME__:__DB_PWD__@localhost/__DB_NAME__?sslmode=disable&connect_timeout=10", + "dbconfig": "postgres://__DB_USER__:__DB_PWD__@localhost/__DB_NAME__?sslmode=disable&connect_timeout=10", "postgres_dbconfig": "dbname=__APP__ sslmode=disable", "useSSL": false, "webpath": "./pack", From 5eb19e30aa30a29d3fa5640a41ff734cbc228452 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 15 Sep 2022 23:00:21 +0200 Subject: [PATCH 10/17] Fix --- conf/config.json | 2 +- scripts/install | 3 ++- scripts/restore | 5 +++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/conf/config.json b/conf/config.json index fad0d01..264d0c3 100644 --- a/conf/config.json +++ b/conf/config.json @@ -7,7 +7,7 @@ "useSSL": false, "webpath": "./pack", "filesdriver": "local", - "filespath": "./files", + "filespath": "__FILES_PATH__/files", "telemetry": false, "session_expire_time": 2592000, "session_refresh_time": 18000, diff --git a/scripts/install b/scripts/install index 42597ff..f012038 100755 --- a/scripts/install +++ b/scripts/install @@ -86,9 +86,10 @@ ynh_system_user_create --username=$app --home_dir="$final_path" ynh_script_progression --message="Creating a PostgreSQL database..." --weight=2 db_name=$(ynh_sanitize_dbid --db_name=$app) +db_user=$db_name ynh_app_setting_set --app=$app --key=db_name --value=$db_name ynh_psql_test_if_first_run -ynh_psql_setup_db --db_user=$db_name --db_name=$db_name +ynh_psql_setup_db --db_user=$db_user --db_name=$db_name #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE diff --git a/scripts/restore b/scripts/restore index 50ca3ec..09be040 100755 --- a/scripts/restore +++ b/scripts/restore @@ -41,7 +41,8 @@ db_pwd=$(ynh_app_setting_get --app=$app --key=psqlpwd) #================================================= ynh_script_progression --message="Validating restoration parameters..." --weight=1 -test ! -d $final_path || ynh_die --message="There is already a directory: $final_path " +test ! -d $final_path \ + || ynh_die --message="There is already a directory: $final_path " #================================================= # STANDARD RESTORATION STEPS @@ -77,7 +78,7 @@ ynh_script_progression --message="Restoring the data directory..." --weight=1 ynh_restore_file --origin_path="$files_path" --not_mandatory -mkdir -p files_path +mkdir -p $files_path/files chmod 755 "$files_path" chmod -R o-rwx "$files_path" From 737cc9d9b0674537a22f879ba97043548874ecfe Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 15 Sep 2022 23:05:59 +0200 Subject: [PATCH 11/17] Update config.json --- conf/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/config.json b/conf/config.json index 264d0c3..fad0d01 100644 --- a/conf/config.json +++ b/conf/config.json @@ -7,7 +7,7 @@ "useSSL": false, "webpath": "./pack", "filesdriver": "local", - "filespath": "__FILES_PATH__/files", + "filespath": "./files", "telemetry": false, "session_expire_time": 2592000, "session_refresh_time": 18000, From 386eb4146e74dae443b3b1a605b0203058669152 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Fri, 16 Sep 2022 08:11:58 +0200 Subject: [PATCH 12/17] Update upgrade --- scripts/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index 587f42f..1ed2f2d 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -104,7 +104,7 @@ then ynh_secure_remove --file="$final_path" # Download, check integrity, uncompress and patch the source from app.src - ynh_setup_source --dest_dir="$final_path" #--keep="$final_path/config.json" + ynh_setup_source --dest_dir="$final_path" #--keep="config.json" # Copy the admin saved settings from tmp directory to final path cp -a "$tmpdir/config.json" "$final_path/config.json" From e1d994d2d65815a4478070a9125854ce03734814 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 6 Oct 2022 06:26:45 +0000 Subject: [PATCH 13/17] Upgrade to v7.2.1 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index 49b129e..6dc9964 100755 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v7.1.0/focalboard-server-linux-amd64.tar.gz -SOURCE_SUM=25101fa5e2fbc4a6a9cde1de00dba2dad086bc38c25410b5cddda593db271284 +SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v7.2.1/focalboard-server-linux-amd64.tar.gz +SOURCE_SUM=fdbc08e37f398364cf2d84b6bc4f44165c6230f00558f9ae18743ba3297cbb39 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 7e7f29b..d1b6933 100755 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Self-hosted alternative to Trello, Notion, and Asana", "fr": "Alternative auto-hébergée à Trello, Notion et Asana" }, - "version": "7.1.0~ynh2", + "version": "7.2.1~ynh1", "url": "https://www.focalboard.com/", "upstream": { "license": "MIT", From ca3fc85b010befcba8ba47278743cf02f5f53013 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 6 Oct 2022 06:26:53 +0000 Subject: [PATCH 14/17] 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 d4506e8..cdcc9a7 100755 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Focalboard is a project management tool that helps define, organize, track and manage work across teams, using a familiar kanban board view. -**Shipped version:** 7.1.0~ynh2 +**Shipped version:** 7.2.1~ynh1 *(:warning: This is the `ci-auto-update-v7.2.1` branch. The [`master` branch](https://github.com/YunoHost-Apps/focalboard_ynh/tree/master) used in the catalog is currently on version 7.1.0\~ynh1.)* ## Screenshots diff --git a/README_fr.md b/README_fr.md index eac786f..00531a0 100755 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Focalboard est un outil de gestion de projet qui aide à définir, organiser, suivre et gérer le travail entre les équipes, à l'aide d'une vue de tableau kanban familière. -**Version incluse :** 7.1.0~ynh2 +**Version incluse :** 7.2.1~ynh1 *(:warning: Il s'agit de la branche `ci-auto-update-v7.2.1`. La [branche `master`](https://github.com/YunoHost-Apps/focalboard_ynh/tree/master) utilisée dans le catalogue est actuellement en 7.1.0\~ynh1.)* ## Captures d'écran From e89e4f9545fdba21eeb9197ad07360e2e243dece Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 6 Oct 2022 12:25:41 +0000 Subject: [PATCH 15/17] 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 cdcc9a7..a8454e7 100755 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Focalboard is a project management tool that helps define, organize, track and manage work across teams, using a familiar kanban board view. -**Shipped version:** 7.2.1~ynh1 *(:warning: This is the `ci-auto-update-v7.2.1` branch. The [`master` branch](https://github.com/YunoHost-Apps/focalboard_ynh/tree/master) used in the catalog is currently on version 7.1.0\~ynh1.)* +**Shipped version:** 7.2.1~ynh1 *(:warning: This is the `testing` branch. The [`master` branch](https://github.com/YunoHost-Apps/focalboard_ynh/tree/master) used in the catalog is currently on version 7.1.0\~ynh1.)* ## Screenshots diff --git a/README_fr.md b/README_fr.md index 00531a0..8137119 100755 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Focalboard est un outil de gestion de projet qui aide à définir, organiser, suivre et gérer le travail entre les équipes, à l'aide d'une vue de tableau kanban familière. -**Version incluse :** 7.2.1~ynh1 *(:warning: Il s'agit de la branche `ci-auto-update-v7.2.1`. La [branche `master`](https://github.com/YunoHost-Apps/focalboard_ynh/tree/master) utilisée dans le catalogue est actuellement en 7.1.0\~ynh1.)* +**Version incluse :** 7.2.1~ynh1 *(:warning: Il s'agit de la branche `testing`. La [branche `master`](https://github.com/YunoHost-Apps/focalboard_ynh/tree/master) utilisée dans le catalogue est actuellement en 7.1.0\~ynh1.)* ## Captures d'écran From 1579800b085da5df7137a5db3d977cb546ef7c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 21 Oct 2022 17:41:21 +0200 Subject: [PATCH 16/17] 7.4.3 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index 6dc9964..76ea51f 100755 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v7.2.1/focalboard-server-linux-amd64.tar.gz -SOURCE_SUM=fdbc08e37f398364cf2d84b6bc4f44165c6230f00558f9ae18743ba3297cbb39 +SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v7.4.3/focalboard-server-linux-amd64.tar.gz +SOURCE_SUM=bca66712f79489891c66a68a90554930193e0cd400916484d33bab1ad2edf921 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index d1b6933..159281f 100755 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Self-hosted alternative to Trello, Notion, and Asana", "fr": "Alternative auto-hébergée à Trello, Notion et Asana" }, - "version": "7.2.1~ynh1", + "version": "7.4.3~ynh1", "url": "https://www.focalboard.com/", "upstream": { "license": "MIT", From 1833ddad9ae28d9a22e75c74a1032988f6ca5af0 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 21 Oct 2022 15:41:27 +0000 Subject: [PATCH 17/17] Auto-update README --- README.md | 3 +-- README_fr.md | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a8454e7..53810cd 100755 --- a/README.md +++ b/README.md @@ -18,8 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Focalboard is a project management tool that helps define, organize, track and manage work across teams, using a familiar kanban board view. -**Shipped version:** 7.2.1~ynh1 *(:warning: This is the `testing` branch. The [`master` branch](https://github.com/YunoHost-Apps/focalboard_ynh/tree/master) used in the catalog is currently on version 7.1.0\~ynh1.)* - +**Shipped version:** 7.4.3~ynh1 ## Screenshots diff --git a/README_fr.md b/README_fr.md index 8137119..f863cc3 100755 --- a/README_fr.md +++ b/README_fr.md @@ -18,8 +18,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Focalboard est un outil de gestion de projet qui aide à définir, organiser, suivre et gérer le travail entre les équipes, à l'aide d'une vue de tableau kanban familière. -**Version incluse :** 7.2.1~ynh1 *(:warning: Il s'agit de la branche `testing`. La [branche `master`](https://github.com/YunoHost-Apps/focalboard_ynh/tree/master) utilisée dans le catalogue est actuellement en 7.1.0\~ynh1.)* - +**Version incluse :** 7.4.3~ynh1 ## Captures d'écran