From 0083215ea3955a950d345d44a8663e5b05e8f00f Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 26 Aug 2019 22:27:45 +0300 Subject: Default to BIGEVENTS_PATTERN=NONE so that Wekan sends less email notifications. Thanks to rinnaz and xet7 ! Closes #2646, closes #2617 --- releases/virtualbox/start-wekan.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'releases') diff --git a/releases/virtualbox/start-wekan.sh b/releases/virtualbox/start-wekan.sh index 733b6b67..ded310fe 100755 --- a/releases/virtualbox/start-wekan.sh +++ b/releases/virtualbox/start-wekan.sh @@ -50,19 +50,19 @@ #--------------------------------------------------------------- # ==== BIGEVENTS DUE ETC NOTIFICATIONS ===== # https://github.com/wekan/wekan/pull/2541 - # Introduced a system env var BIGEVENTS_PATTERN default as "due", + # Introduced a system env var BIGEVENTS_PATTERN default as "NONE", # so any activityType matches the pattern, system will send out # notifications to all board members no matter they are watching # or tracking the board or not. Owner of the wekan server can # disable the feature by setting this variable to "NONE" or # change the pattern to any valid regex. i.e. '|' delimited # activityType names. - # a) Default + # a) Example #export BIGEVENTS_PATTERN=due # b) All #export BIGEVENTS_PATTERN=received|start|due|end # c) Disabled - #export BIGEVENTS_PATTERN=NONE + export BIGEVENTS_PATTERN=NONE #--------------------------------------------------------------- # ==== EMAIL DUE DATE NOTIFICATION ===== # https://github.com/wekan/wekan/pull/2536 -- cgit v1.2.3-1-g7c22 From e21c47d3cfe0f228ce5ab394142c6ec6ee090d65 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 29 Aug 2019 00:18:15 +0300 Subject: Upgrade node, mongo and fibers. Thanks to xet7 ! --- releases/virtualbox/rebuild-wekan.sh | 111 ----------------------------------- 1 file changed, 111 deletions(-) delete mode 100755 releases/virtualbox/rebuild-wekan.sh (limited to 'releases') diff --git a/releases/virtualbox/rebuild-wekan.sh b/releases/virtualbox/rebuild-wekan.sh deleted file mode 100755 index c1adaf78..00000000 --- a/releases/virtualbox/rebuild-wekan.sh +++ /dev/null @@ -1,111 +0,0 @@ -#!/bin/bash - -echo "Note: If you use other locale than en_US.UTF-8 , you need to additionally install en_US.UTF-8" -echo " with 'sudo dpkg-reconfigure locales' , so that MongoDB works correctly." -echo " You can still use any other locale as your main locale." - -function pause(){ - read -p "$*" -} - -echo -PS3='Please enter your choice: ' -options=("Install Wekan dependencies" "Build Wekan" "Quit") -select opt in "${options[@]}" -do - case $opt in - "Install Wekan dependencies") - - if [[ "$OSTYPE" == "linux-gnu" ]]; then - echo "Linux"; - echo "Ubuntu, Mint, Debian, or Debian on Windows Subsystem for Linux"; - sudo apt-get install -y build-essential git curl wget; - curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -; - elif [[ "$OSTYPE" == "darwin"* ]]; then - echo "macOS"; - pause '1) Install XCode 2) Install Node 8.x from https://nodejs.org/en/ 3) Press [Enter] key to continue.' - elif [[ "$OSTYPE" == "cygwin" ]]; then - # POSIX compatibility layer and Linux environment emulation for Windows - echo "TODO: Add Cygwin"; - exit; - elif [[ "$OSTYPE" == "msys" ]]; then - # Lightweight shell and GNU utilities compiled for Windows (part of MinGW) - echo "TODO: Add msys on Windows"; - exit; - elif [[ "$OSTYPE" == "win32" ]]; then - # I'm not sure this can happen. - echo "TODO: Add Windows"; - exit; - elif [[ "$OSTYPE" == "freebsd"* ]]; then - echo "TODO: Add FreeBSD"; - exit; - else - echo "Unknown" - echo ${OSTYPE} - exit; - fi - - ## Latest npm with Meteor 1.6 - sudo npm -g install npm - sudo npm -g install node-gyp - # Latest fibers for Meteor 1.6 - sudo npm -g install fibers@2.0.0 - # Install Meteor, if it's not yet installed - curl https://install.meteor.com | bash - mkdir ~/repos - cd ~/repos - git clone https://github.com/wekan/wekan.git - cd wekan - git checkout devel - break - ;; - "Build Wekan") - echo "Building Wekan." - cd ~/repos/wekan - ## REPOS BELOW ARE INCLUDED TO WEKAN - #mkdir -p ~/repos/wekan/packages - #cd ~/repos/wekan/packages - #git clone --depth 1 -b master https://github.com/wekan/flow-router.git kadira-flow-router - #git clone --depth 1 -b master https://github.com/meteor-useraccounts/core.git meteor-useraccounts-core - #git clone --depth 1 -b master https://github.com/wekan/meteor-accounts-cas.git - #git clone --depth 1 -b master https://github.com/wekan/wekan-ldap.git - #git clone --depth 1 -b master https://github.com/wekan/wekan-scrollbar.git - #git clone --depth 1 -b master https://github.com/wekan/meteor-accounts-oidc.git - #git clone --depth 1 -b master --recurse-submodules https://github.com/wekan/markdown.git - #mv meteor-accounts-oidc/packages/switch_accounts-oidc wekan_accounts-oidc - #mv meteor-accounts-oidc/packages/switch_oidc wekan_oidc - #rm -rf meteor-accounts-oidc - if [[ "$OSTYPE" == "darwin"* ]]; then - echo "sed at macOS"; - sed -i '' 's/api\.versionsFrom/\/\/api.versionsFrom/' ~/repos/wekan/packages/meteor-useraccounts-core/package.js - else - echo "sed at ${OSTYPE}" - sed -i 's/api\.versionsFrom/\/\/api.versionsFrom/' ~/repos/wekan/packages/meteor-useraccounts-core/package.js - fi - - cd ~/repos/wekan - rm -rf node_modules - meteor npm install - rm -rf .build - meteor build .build --directory - cp -f fix-download-unicode/cfs_access-point.txt .build/bundle/programs/server/packages/cfs_access-point.js - #Removed binary version of bcrypt because of security vulnerability that is not fixed yet. - #https://github.com/wekan/wekan/commit/4b2010213907c61b0e0482ab55abb06f6a668eac - #https://github.com/wekan/wekan/commit/7eeabf14be3c63fae2226e561ef8a0c1390c8d3c - #cd ~/repos/wekan/.build/bundle/programs/server/npm/node_modules/meteor/npm-bcrypt - #rm -rf node_modules/bcrypt - #meteor npm install bcrypt - cd ~/repos/wekan/.build/bundle/programs/server - rm -rf node_modules - meteor npm install - #meteor npm install bcrypt - cd ~/repos - echo Done. - break - ;; - "Quit") - break - ;; - *) echo invalid option;; - esac -done -- cgit v1.2.3-1-g7c22 From 125231beff0fb84a18a46fe246fa12e098246985 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Tue, 17 Sep 2019 22:16:06 +0300 Subject: Add language: Slovenian. Thanks to translators! --- releases/translations/pull-translations.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'releases') diff --git a/releases/translations/pull-translations.sh b/releases/translations/pull-translations.sh index fc8186b7..b97f5a8d 100755 --- a/releases/translations/pull-translations.sh +++ b/releases/translations/pull-translations.sh @@ -36,6 +36,9 @@ tx pull -f -l en_GB echo "Greek:" tx pull -f -l el +echo "Slovenian:" +tx pull -f -l sl_SI + echo "Spanish:" tx pull -f -l es -- cgit v1.2.3-1-g7c22 From e60926f8471c05f50877f46568554e7b2f24815a Mon Sep 17 00:00:00 2001 From: "Sam X. Chen" Date: Tue, 1 Oct 2019 10:39:36 -0400 Subject: #2738 adding all pertinent help file for due days, plus modified the .list-header-name when in mobile mode --- releases/virtualbox/start-wekan.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'releases') diff --git a/releases/virtualbox/start-wekan.sh b/releases/virtualbox/start-wekan.sh index ded310fe..8d1f48e6 100755 --- a/releases/virtualbox/start-wekan.sh +++ b/releases/virtualbox/start-wekan.sh @@ -70,8 +70,9 @@ # dueat startat endat receivedat, also notification to # the watchers and if any card is due, about due or past due. # - # Notify due days, default 2 days before and after. 0 = due notifications disabled. Default: 2 - #export NOTIFY_DUE_DAYS_BEFORE_AND_AFTER=2 + # Notify due days, default is None. + #export NOTIFY_DUE_DAYS_BEFORE_AND_AFTER=2,0 + # it will notify user 2 days before due day and on the due day # # Notify due at hour of day. Default every morning at 8am. Can be 0-23. # If env variable has parsing error, use default. Notification sent to watchers. -- cgit v1.2.3-1-g7c22 From 7318e420802800b554dec756d4f9c56b75c15b0c Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 4 Nov 2019 22:53:10 +0200 Subject: Comment out already existing directory. --- releases/rebuild-docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'releases') diff --git a/releases/rebuild-docs.sh b/releases/rebuild-docs.sh index f0292677..2ac46eb3 100755 --- a/releases/rebuild-docs.sh +++ b/releases/rebuild-docs.sh @@ -1,6 +1,6 @@ # Generate docs. -mkdir -p public/api +#mkdir -p public/api python3 ./openapi/generate_openapi.py --release $(git describe --tags --abbrev=0) > ./public/api/wekan.yml api2html -c ./public/logo-header.png -o ./public/api/wekan.html ./public/api/wekan.yml -- cgit v1.2.3-1-g7c22 From 1eb3d25b40797fdab41d7dd59405cfcea81dcc61 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Wed, 13 Nov 2019 21:46:33 +0200 Subject: Update Node.js to v8.16.2. Thanks to xet7 ! --- releases/rebuild-wekan.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'releases') diff --git a/releases/rebuild-wekan.sh b/releases/rebuild-wekan.sh index 2f3e3eeb..e70ff656 100755 --- a/releases/rebuild-wekan.sh +++ b/releases/rebuild-wekan.sh @@ -25,7 +25,7 @@ do sudo apt install -y build-essential git curl wget # sudo apt -y install nodejs npm # sudo npm -g install n -# sudo n 8.11.3 +# sudo n 8.16.2 fi # if [ "$(grep -Ei 'debian' /etc/*release)" ]; then -- cgit v1.2.3-1-g7c22