From 865252b2fabb8136decb3dc2c2682e6790b12a02 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 13 Apr 2021 21:29:38 +0200 Subject: [PATCH 1/9] Upgrade to 0.6.5 --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 24ee543..4becca0 100755 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana. It helps define, organize, track and manage work across individuals and teams. -**Shipped version:** 0.6.1 +**Shipped version:** 0.6.5 ## Screenshots diff --git a/README_fr.md b/README_fr.md index dfb1e70..079b1e0 100755 --- a/README_fr.md +++ b/README_fr.md @@ -11,7 +11,7 @@ Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/#/install ## Vue d'ensemble Focalboard est une alternative open source auto-hébergée à Trello, Notion et Asana. Il aide à définir, organiser, suivre et gérer le travail entre les individus et les équipes. -**Version incluse :** 0.6.1 +**Version incluse :** 0.6.5 ## Captures d'écran diff --git a/conf/app.src b/conf/app.src index 3e99c00..ed3dc87 100755 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.1/focalboard-server-linux-amd64.tar.gz -SOURCE_SUM=65ec7e811f37706af33d2f6825850a656fc48be520c55649ad0d3a136716aac6 +SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.5-rc1/focalboard-server-linux-amd64.tar.gz +SOURCE_SUM=51e117b766a21218371e5090aeb3d3e67bed5a15640f9ac950a6466e1398effa SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index e01528e..0043592 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": "0.6.1~ynh1", + "version": "0.6.5~ynh1", "url": "https://www.focalboard.com/", "license": "MIT", "maintainer": { From a6b7bf5839204468cb42b3e73fd2fe9c2685af7c Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 13 Apr 2021 21:40:34 +0200 Subject: [PATCH 2/9] Update nginx.conf --- conf/nginx.conf | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 7af9fdd..353bc76 100755 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,5 +1,4 @@ -#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; -location __PATH__/ { +location / { # Force usage of https if ($scheme = http) { @@ -28,7 +27,7 @@ location __PATH__/ { more_clear_input_headers 'Accept-Encoding'; } -location __PATH__/ws/ { +location /ws/ { proxy_pass http://127.0.0.1:__PORT__/; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; @@ -48,6 +47,6 @@ location __PATH__/ws/ { proxy_read_timeout 1d; } -location __PATH__/uploads/ { +location /uploads/ { alias __FILES_PATH__/uploads/ ; } From d8d08bc74b716093bda92e59d4f9d4f087c978b4 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 13 Apr 2021 22:20:15 +0200 Subject: [PATCH 3/9] Update config.json --- conf/config.json | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/conf/config.json b/conf/config.json index 68b2272..58ea4a7 100644 --- a/conf/config.json +++ b/conf/config.json @@ -9,7 +9,5 @@ "telemetry": false, "session_expire_time": 2592000, "session_refresh_time": 18000, - "localOnly": false, - "enableLocalMode": true, - "localModeSocketLocation": "/var/tmp/focalboard_local.socket" + "localOnly": false } From 23ea7fc97fbd14c7ffc02c593e3c869f38e6b0d5 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 13 Apr 2021 22:51:27 +0200 Subject: [PATCH 4/9] 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 58ea4a7..7790af5 100644 --- a/conf/config.json +++ b/conf/config.json @@ -5,7 +5,7 @@ "dbconfig": "postgres://__DB_NAME__:__DB_PWD__@localhost/__DB_NAME__?sslmode=disable&connect_timeout=10", "useSSL": false, "webpath": "./pack", - "filespath": "/home/yunohost.app/__APP__/files", + "filespath": "./files", "telemetry": false, "session_expire_time": 2592000, "session_refresh_time": 18000, From 8a8f292bf167fcb3a05be55b9c3cc05d0ec65850 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 13 Apr 2021 22:59:33 +0200 Subject: [PATCH 5/9] Update config.json --- conf/config.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf/config.json b/conf/config.json index 7790af5..e7a4c67 100644 --- a/conf/config.json +++ b/conf/config.json @@ -3,6 +3,7 @@ "port": __PORT__, "dbtype": "postgres", "dbconfig": "postgres://__DB_NAME__:__DB_PWD__@localhost/__DB_NAME__?sslmode=disable&connect_timeout=10", + "postgres_dbconfig": "dbname=focalboard sslmode=disable", "useSSL": false, "webpath": "./pack", "filespath": "./files", @@ -11,3 +12,7 @@ "session_refresh_time": 18000, "localOnly": false } + + +"dbtype": "postgres", +"dbconfig": "postgres://__DB_NAME__:__DB_PWD__@localhost/__DB_NAME__?sslmode=disable&connect_timeout=10", From 0c4bd7463e20ec18b699cc6c6db2d5c4ac207776 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 13 Apr 2021 22:59:48 +0200 Subject: [PATCH 6/9] Update config.json --- conf/config.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/conf/config.json b/conf/config.json index e7a4c67..8e8dc13 100644 --- a/conf/config.json +++ b/conf/config.json @@ -12,7 +12,3 @@ "session_refresh_time": 18000, "localOnly": false } - - -"dbtype": "postgres", -"dbconfig": "postgres://__DB_NAME__:__DB_PWD__@localhost/__DB_NAME__?sslmode=disable&connect_timeout=10", From f52da7c7476f77a53a959175776809e8cdfe4215 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 15 Apr 2021 08:38:57 +0200 Subject: [PATCH 7/9] Update app.src --- conf/app.src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/app.src b/conf/app.src index ed3dc87..d6b7d46 100755 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.5-rc1/focalboard-server-linux-amd64.tar.gz -SOURCE_SUM=51e117b766a21218371e5090aeb3d3e67bed5a15640f9ac950a6466e1398effa +SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.5-rc2/focalboard-server-linux-amd64.tar.gz +SOURCE_SUM=b150090f35854334f92fb386efb1aeadcb584b46f7c26aae363c185ca751ad50 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true From 4b94335ec5b0fbcde369ba690f5187ac97f0231a Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Wed, 21 Apr 2021 18:13:32 +0200 Subject: [PATCH 8/9] upgrade --- 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 d6b7d46..b6565ec 100755 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.5-rc2/focalboard-server-linux-amd64.tar.gz -SOURCE_SUM=b150090f35854334f92fb386efb1aeadcb584b46f7c26aae363c185ca751ad50 +SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.5/focalboard-server-linux-amd64.tar.gz.zip +SOURCE_SUM=43a38ca871354520cc50b0a7fa403dae8cbf89011c85053da191b6fc4a949007 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 0043592..9775ec8 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": "0.6.5~ynh1", + "version": "0.6.5~ynh2", "url": "https://www.focalboard.com/", "license": "MIT", "maintainer": { From 76caec97df3a192b2fa521fb3f3b35c9cd7d00fc Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Wed, 21 Apr 2021 20:42:01 +0200 Subject: [PATCH 9/9] Update app.src --- conf/app.src | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/app.src b/conf/app.src index b6565ec..dcaa414 100755 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.5/focalboard-server-linux-amd64.tar.gz.zip -SOURCE_SUM=43a38ca871354520cc50b0a7fa403dae8cbf89011c85053da191b6fc4a949007 +SOURCE_URL=https://github.com/mattermost/focalboard/releases/download/v0.6.5/focalboard-server-linux-amd64.tar.gz +SOURCE_SUM=c8199dcd74a4bd47b55da73248db6f0d8e9dab7ceee91bbfc52284afea1ca9da SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true