From 9d13001b903f9ec50f5fa3a4bdbacae32b27ac65 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 5 Mar 2020 21:51:03 +0200 Subject: Add settings for mouse wheen scroll inertia and scroll amount. For example: sudo snap set scrollinertia='200' sudo snap set scrollamount='200' Thanks to danger89 and xet7 ! Related #2949 --- start-wekan.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'start-wekan.sh') diff --git a/start-wekan.sh b/start-wekan.sh index 8dade1cc..9a839b3c 100755 --- a/start-wekan.sh +++ b/start-wekan.sh @@ -41,6 +41,11 @@ # https://github.com/wekan/wekan/pull/2560 export RICHER_CARD_COMMENT_EDITOR=false #--------------------------------------------------------------- + # ==== MOUSE SCROLL ==== + # https://github.com/wekan/wekan/issues/2949 + export SCROLLINERTIA=0 + export SCROLLAMOUNT=auto + #--------------------------------------------------------------- # ==== CARD OPENED, SEND WEBHOOK MESSAGE ==== export CARD_OPENED_WEBHOOK_ENABLED=false #--------------------------------------------------------------- -- cgit v1.2.3-1-g7c22 From c60a092fc0ed9fe15c417bcb443b1e3e3aaedf7e Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 1 Apr 2020 00:34:21 +0300 Subject: Fix start-wekan.sh MongoDB port to 27017. Thanks to Keelan and xet7 ! Related #2979 --- start-wekan.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'start-wekan.sh') diff --git a/start-wekan.sh b/start-wekan.sh index 9a839b3c..bb9249a6 100755 --- a/start-wekan.sh +++ b/start-wekan.sh @@ -7,7 +7,7 @@ # Debug OIDC OAuth2 etc. #export DEBUG=true #--------------------------------------------- - export MONGO_URL='mongodb://127.0.0.1:27018/wekan' + export MONGO_URL='mongodb://127.0.0.1:27017/wekan' #--------------------------------------------- # Production: https://example.com/wekan # Local: http://localhost:2000 -- cgit v1.2.3-1-g7c22 From 5ebb47cb0ec7272894a37d99579ede872251f55c Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 8 Apr 2020 23:16:48 +0300 Subject: Add setting default NOTIFICATION_TRAY_AFTER_READ_DAYS_BEFORE_REMOVE=2 to all Wekan platforms https://github.com/wekan/wekan/pull/2998 Thanks to xet7 ! --- start-wekan.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'start-wekan.sh') diff --git a/start-wekan.sh b/start-wekan.sh index bb9249a6..bf598e39 100755 --- a/start-wekan.sh +++ b/start-wekan.sh @@ -54,6 +54,11 @@ #export MAX_IMAGE_PIXEL=1024 #export 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", -- cgit v1.2.3-1-g7c22 From 94b558cf434316fab64a3651fb7ce18b8101d14b Mon Sep 17 00:00:00 2001 From: Allemand <37148072+salleman33@users.noreply.github.com> Date: Tue, 14 Apr 2020 09:09:38 +0200 Subject: Update start-wekan.sh --- start-wekan.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'start-wekan.sh') diff --git a/start-wekan.sh b/start-wekan.sh index bf598e39..f3fb18e9 100755 --- a/start-wekan.sh +++ b/start-wekan.sh @@ -362,6 +362,9 @@ # LOGOUT_ON_MINUTES : The number of minutes # example : LOGOUT_ON_MINUTES=55 #export LOGOUT_ON_MINUTES= + #--------------------------------------------------------------------- + # PASSWORD_LOGIN_ENABLED : Enable or not the password login form. + #export PASSWORD_LOGIN_ENABLED=true node main.js # & >> ../../wekan.log -- cgit v1.2.3-1-g7c22