diff --git a/README.md b/README.md index 5bf1c8b..4dde988 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to ## Overview Wekan is an open-source kanban board (task manager and organizer) -**Shipped version:** 3.79 +**Shipped version:** 3.95 ## Screenshots diff --git a/check_process b/check_process index 1919bb5..d4c8d8b 100644 --- a/check_process +++ b/check_process @@ -24,6 +24,8 @@ # upgrade=1 from_commit=2e6131af03c723cf9eaf82e13aa9488f42c085f9 # 3.55~ynh1 # upgrade=1 from_commit=3be3f1d7290b534f7689222645a42c06f3103589 + # 3.79~ynh2 + upgrade=1 from_commit=2843d504bcdb0402939f87ebeeda3417de02a9e4 backup_restore=1 multi_instance=1 # This test is no longer necessary since the version 2.7 (PR: https://github.com/YunoHost/yunohost/pull/304), you can still do it if your app could be installed with this version. diff --git a/conf/.env b/conf/.env index 1f8a66a..0575b20 100644 --- a/conf/.env +++ b/conf/.env @@ -30,8 +30,8 @@ MAIL_FROM='Wekan Support ' # This is local port where Wekan Node.js runs, same as below on Caddyfile settings. PORT=__PORT__ #--------------------------------------------- -# Wekan Board works when WITH_API=true. -# If you disable Wekan API with false, Board does not work. +# Wekan Export Board works when WITH_API=true. +# If you disable Wekan API with false, Export Board does not work. WITH_API='true' #--------------------------------------------------------------- # ==== PASSWORD BRUTE FORCE PROTECTION ==== @@ -48,6 +48,11 @@ WITH_API='true' # https://github.com/wekan/wekan/pull/2560 RICHER_CARD_COMMENT_EDITOR=true #--------------------------------------------------------------- +# ==== MOUSE SCROLL ==== +# https://github.com/wekan/wekan/issues/2949 +SCROLLINERTIA=0 +SCROLLAMOUNT=auto +#--------------------------------------------------------------- # ==== CARD OPENED, SEND WEBHOOK MESSAGE ==== CARD_OPENED_WEBHOOK_ENABLED=false #--------------------------------------------------------------- @@ -56,6 +61,11 @@ CARD_OPENED_WEBHOOK_ENABLED=false #MAX_IMAGE_PIXEL=1024 #IMAGE_COMPRESS_RATIO=80 #--------------------------------------------------------------- +# ==== NOTIFICATION TRAY AFTER READ DAYS BEFORE REMOVE ===== +# Number of days after a notification is read before we remove it. +# Default: 2 +#- NOTIFICATION_TRAY_AFTER_READ_DAYS_BEFORE_REMOVE=2 +#--------------------------------------------------------------- # ==== BIGEVENTS DUE ETC NOTIFICATIONS ===== # https://github.com/wekan/wekan/pull/2541 # Introduced a system env var BIGEVENTS_PATTERN default as "NONE", diff --git a/conf/arm64.src b/conf/arm64.src index 87b9cf3..5ed2277 100644 --- a/conf/arm64.src +++ b/conf/arm64.src @@ -1,9 +1,9 @@ # This is on YunoHost server just to avoid the file from disappearing -# Original source is https://releases.wekan.team/raspi3/wekan-3.79-arm64.zip -# YunoHost source is https://build.yunohost.org/apps/wekan-3.79-arm64.zip -SOURCE_URL=https://build.yunohost.org/apps/wekan-3.79-arm64.zip -SOURCE_SUM=1c389d9f0963f19614be90722e2dc05dc0bac2c0c75de4a3063100dbe87129ea +# Original source is https://releases.wekan.team/raspi3/wekan-3.95-arm64.zip +# YunoHost source is https://build.yunohost.org/apps/wekan-3.95-arm64.zip +SOURCE_URL=https://build.yunohost.org/apps/wekan-3.95-arm64.zip +SOURCE_SUM=c5a87debc54e633428eed3667bafa7eb630843a58243fa53f40aba2d089d89fb SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=zip SOURCE_IN_SUBDIR=true -SOURCE_FILENAME=wekan-3.79-arm64.zip +SOURCE_FILENAME=wekan-3.95-arm64.zip diff --git a/conf/x86-64.src b/conf/x86-64.src index b8ae685..15bb797 100644 --- a/conf/x86-64.src +++ b/conf/x86-64.src @@ -1,9 +1,9 @@ # This is on YunoHost server just to avoid the file from disappearing -# Original source is https://releases.wekan.team/wekan-3.79.zip -# YunoHost source is https://build.yunohost.org/apps/wekan-3.79.zip -SOURCE_URL=https://build.yunohost.org/apps/wekan-3.79.zip -SOURCE_SUM=b5bf48e4f709bb3b1a86d8db8d50c9aa8468c640fff1806135881da0de976f01 +# Original source is https://releases.wekan.team/wekan-3.95.zip +# YunoHost source is https://build.yunohost.org/apps/wekan-3.95.zip +SOURCE_URL=https://build.yunohost.org/apps/wekan-3.95.zip +SOURCE_SUM=a3c69d3f95790d2e616bdd0355498b876ee735f01d83fdd4c99efdaeaf950374 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=zip SOURCE_IN_SUBDIR=true -SOURCE_FILENAME=wekan-3.79.zip +SOURCE_FILENAME=wekan-3.95.zip diff --git a/manifest.json b/manifest.json index d139062..aff3094 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Trello-like kanban", "fr": "Un kanban similaire à Trello" }, - "version": "3.79~ynh2", + "version": "3.95~ynh1", "url": "https://wekan.io", "license": "MIT", "maintainer": [ diff --git a/scripts/_common.sh b/scripts/_common.sh index fe27352..6299267 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -9,7 +9,7 @@ pkg_dependencies="mongodb mongodb-server mongo-tools" pkg_dependencies_buster="mongodb-org mongodb-org-server mongodb-org-tools" mongodb_stretch="mongodb" mongodb_buster="mongod" -nodejsversion=12.15.0 +nodejsversion=12.16.2 #================================================= # PERSONAL HELPERS