From cbbb5deff7d84a91c40becc9caaf70f5b6738b63 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 20 Feb 2020 20:46:25 +0200 Subject: Update to Meteor 1.9.1, Node 12.16.1 etc newest dependencies. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index 1aee54c9..dea7873f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -93,7 +93,7 @@ services: #------------------------------------------------------------------------------------- # ==== MONGODB AND METEOR VERSION ==== # a) For Wekan Meteor 1.8.x version at master branch, use mongo 4.x - image: mongo:4.2.2 + image: mongo:latest # b) For Wekan Meteor 1.6.x version at devel branch. # Only for Snap and Sandstorm while they are not upgraded yet to Meteor 1.8.x #image: mongo:3.2.21 -- cgit v1.2.3-1-g7c22 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 --- docker-compose.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index dea7873f..ea5ffe99 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -240,6 +240,11 @@ services: # https://github.com/wekan/wekan/pull/2560 - RICHER_CARD_COMMENT_EDITOR=false #--------------------------------------------------------------- + # ==== MOUSE SCROLL ==== + # https://github.com/wekan/wekan/issues/2949 + - SCROLLINERTIA=0 + - SCROLLAMOUNT=auto + #--------------------------------------------------------------- # ==== CARD OPENED, SEND WEBHOOK MESSAGE ==== # https://github.com/wekan/wekan/issues/2518 - CARD_OPENED_WEBHOOK_ENABLED=false -- cgit v1.2.3-1-g7c22 From 0b8f1cabefe7508094780f53f53217c4a9d28284 Mon Sep 17 00:00:00 2001 From: Michael Wodniok Date: Sat, 14 Mar 2020 15:38:19 +0100 Subject: Added some descriptions for ldap-group authentication --- docker-compose.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index ea5ffe99..54e50ce2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -509,18 +509,22 @@ services: # The limit number of entries (0=unlimited) #- LDAP_SEARCH_SIZE_LIMIT=0 # - # Enable group filtering + # Enable group filtering. Note the authenticated ldap user must be able to query all relevant group data with own login data from ldap. #- LDAP_GROUP_FILTER_ENABLE=false # # The object class for filtering. Example: group #- LDAP_GROUP_FILTER_OBJECTCLASS= # + # The attribute of a group identifying it. Example: cn #- LDAP_GROUP_FILTER_GROUP_ID_ATTRIBUTE= # + # The attribute inside a group object listing its members. Example: member #- LDAP_GROUP_FILTER_GROUP_MEMBER_ATTRIBUTE= # + # The format of the value of LDAP_GROUP_FILTER_GROUP_MEMBER_ATTRIBUTE. Example: 'dn' if the users dn ist saved as value into the attribute. #- LDAP_GROUP_FILTER_GROUP_MEMBER_FORMAT= # + # The group name (id) that matches all users. #- LDAP_GROUP_FILTER_GROUP_NAME= # # LDAP_UNIQUE_IDENTIFIER_FIELD : This field is sometimes class GUID (Globally Unique Identifier). Example: guid -- 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 ! --- docker-compose.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index 54e50ce2..fe037add 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -254,6 +254,11 @@ services: #-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", -- cgit v1.2.3-1-g7c22 From 2fd577d2c00b5d7c08542f0254f9488c3f12d7ec Mon Sep 17 00:00:00 2001 From: Allemand <37148072+salleman33@users.noreply.github.com> Date: Tue, 14 Apr 2020 08:56:52 +0200 Subject: Update docker-compose.yml --- docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index fe037add..071fb5a6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -598,6 +598,9 @@ services: # example : LOGOUT_ON_MINUTES=55 #- LOGOUT_ON_MINUTES= #------------------------------------------------------------------- + # Hide password login form + # - PASSWORD_LOGIN_ENABLED=true + #------------------------------------------------------------------- depends_on: - wekandb -- cgit v1.2.3-1-g7c22 From 27d1b5acca2d631759f51051b0a3d4fd56dab351 Mon Sep 17 00:00:00 2001 From: Victorio Berra Date: Fri, 24 Apr 2020 09:07:32 -0500 Subject: Fix comment typo in docker-compose.yml webbroser -> web browser. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index 071fb5a6..6a88ab93 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -38,7 +38,7 @@ version: '2' # sudo service docker start # ---------------------------------------------------------------------------------- # ==== USAGE OF THIS docker-compose.yml ==== -# 1) For seeing does Wekan work, try this and check with your webbroser: +# 1) For seeing does Wekan work, try this and check with your web browser: # docker-compose up # 2) Stop Wekan and start Wekan in background: # docker-compose stop -- cgit v1.2.3-1-g7c22