diff --git a/README.md b/README.md index 19264e8..5ad4c15 100755 --- a/README.md +++ b/README.md @@ -19,7 +19,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.9.4~ynh1 +**Shipped version:** 7.11.3~ynh1 ## Screenshots diff --git a/README_fr.md b/README_fr.md index 54eaa27..1ee44c2 100755 --- a/README_fr.md +++ b/README_fr.md @@ -19,7 +19,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po 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.9.4~ynh1 +**Version incluse :** 7.11.3~ynh1 ## Captures d’écran diff --git a/conf/nginx.conf b/conf/nginx.conf index 5910763..3f2fa0b 100755 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -3,7 +3,7 @@ location ~ /ws/* { proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; client_max_body_size 50M; - proxy_set_header Host $http_host; + proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; @@ -22,7 +22,7 @@ location / { client_max_body_size 50M; proxy_pass http://127.0.0.1:__PORT__; proxy_set_header Connection ""; - proxy_set_header Host $http_host; + proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; diff --git a/manifest.toml b/manifest.toml index 6da8e55..a343ced 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Focalboard" description.en = "Kanban project management software" description.fr = "Logiciel de gestion de projet Kanban" -version = "7.9.4~ynh1" +version = "7.11.3~ynh1" maintainers = ["eric_G"] @@ -17,7 +17,7 @@ userdoc = "https://www.focalboard.com/guide/user/" code = "https://github.com/mattermost/focalboard" [integration] -yunohost = ">= 11.1.19" +yunohost = ">= 11.2" architectures = ["amd64"] multi_instance = false ldap = false @@ -29,11 +29,8 @@ ram.runtime = "50M" [install] [install.domain] type = "domain" - full_domain = true [install.init_main_permission] - help.en = "If enabled, Focalboard will be accessible by people who do not have an account. This can be changed later via the webadmin." - help.fr = "Si cette case est cochée, Focalboard sera accessible aux personnes n’ayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin." type = "group" default = "visitors" @@ -41,8 +38,8 @@ ram.runtime = "50M" [resources.sources] [resources.sources.main] - url = "https://github.com/mattermost/focalboard/releases/download/v7.9.4/focalboard-server-linux-amd64.tar.gz" - sha256 = "3c04b0b21e499f4dc90c4d792748dcb08fa5f6ce17c318c8d2e28c2ed79fc9ba" + url = "https://github.com/mattermost/focalboard/releases/download/v7.11.3/focalboard-server-linux-amd64.tar.gz" + sha256 = "3515ef5b90fe2d958b8869e0191915f0ca46ee4e6950e16c9647423981ebeecd" [resources.ports] diff --git a/scripts/change_url b/scripts/change_url index ebab2f2..9e30fc6 100755 --- a/scripts/change_url +++ b/scripts/change_url @@ -15,7 +15,7 @@ source /usr/share/yunohost/helpers #================================================= ynh_script_progression --message="Stopping a systemd service..." --weight=3 -ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log" +ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd" #================================================= # MODIFY URL IN NGINX CONF @@ -31,7 +31,7 @@ ynh_change_url_nginx_config #================================================= ynh_script_progression --message="Starting a systemd service..." --weight=4 -ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" +ynh_systemd_action --service_name=$app --action="start" --log_path="systemd" #================================================= # END OF SCRIPT diff --git a/scripts/install b/scripts/install index ee23f02..fd4796f 100755 --- a/scripts/install +++ b/scripts/install @@ -57,7 +57,7 @@ chown $app:$app "$install_dir/config.json" ynh_script_progression --message="Starting a systemd service..." --weight=1 # Start a systemd service -ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log" +ynh_systemd_action --service_name=$app --action=start --log_path="systemd" #================================================= # END OF SCRIPT diff --git a/scripts/restore b/scripts/restore index a0e9b50..7d10b8d 100755 --- a/scripts/restore +++ b/scripts/restore @@ -57,7 +57,7 @@ yunohost service add $app --description="Self-hosted kanban board" --log="/var/l #================================================= ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1 -ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log" +ynh_systemd_action --service_name=$app --action=start --log_path="systemd" ynh_systemd_action --service_name=nginx --action=reload diff --git a/scripts/upgrade b/scripts/upgrade index dc8d6b6..7e75e4a 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -91,7 +91,7 @@ chown $app:$app "$install_dir/config.json" #================================================= ynh_script_progression --message="Starting a systemd service..." --weight=1 -ynh_systemd_action --service_name=$app --action=start --log_path="/var/log/$app/$app.log" +ynh_systemd_action --service_name=$app --action=start --log_path="systemd" #================================================= # END OF SCRIPT