From cf65f1b7a135f1bef68b8c767411a754bd9bac44 Mon Sep 17 00:00:00 2001 From: Justin Reynolds Date: Thu, 8 Aug 2019 14:54:22 -0500 Subject: Fix null access with board body --- client/components/boards/boardsList.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/boards/boardsList.js b/client/components/boards/boardsList.js index b1371747..3918af82 100644 --- a/client/components/boards/boardsList.js +++ b/client/components/boards/boardsList.js @@ -8,10 +8,10 @@ Template.boardListHeaderBar.events({ Template.boardListHeaderBar.helpers({ templatesBoardId() { - return Meteor.user().getTemplatesBoardId(); + return Meteor.user() && Meteor.user().getTemplatesBoardId(); }, templatesBoardSlug() { - return Meteor.user().getTemplatesBoardSlug(); + return Meteor.user() && Meteor.user().getTemplatesBoardSlug(); }, }); -- cgit v1.2.3-1-g7c22 From 9f6d615ee5bbdb7552e6bdcae75a76a7f74fef7a Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 9 Aug 2019 01:42:23 +0300 Subject: Fix bug on editing users informations, switching to other view, staring a board. Thanks to road42 ! Closes #2590 --- models/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/users.js b/models/users.js index 46e56ad6..870e8fe9 100644 --- a/models/users.js +++ b/models/users.js @@ -260,7 +260,7 @@ Users.attachSchema( Users.allow({ update(userId) { const user = Users.findOne(userId); - return user && Meteor.user().isAdmin; + return user; // && Meteor.user().isAdmin; // GitHub issue #2590 }, remove(userId, doc) { const adminsNumber = Users.find({ isAdmin: true }).count(); -- cgit v1.2.3-1-g7c22 From faa1e73027630c031f8d384ea42ae69bbb6feb88 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 9 Aug 2019 01:50:41 +0300 Subject: Update ChangeLog. --- CHANGELOG.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a85b6561..7a9a9c0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Upcoming Wekan release -This release fixes the following bugs: +This release adds the following new features: + +- [Allowing wekan server admin to specify the attachments to be uploaded to server + file system instead of mongodb by specifying a system + env var: ATTACHMENTS_STORE_PATH](https://github.com/wekan/wekan/pull/2603). + The only caveat for this is if it's not a brand new wekan, if the wekan + server admin switchs to this setting, their old attachments won't be available + anymore, unless someone make a script to export them out to the filesystem. + Thanks to whowillcare. + +and fixes the following bugs: - [Bugfix: style kbd font color became white after introduced summernote editor to card comments](https://github.com/wekan/wekan/pull/2600). @@ -9,6 +19,11 @@ This release fixes the following bugs: on desktop webbrowser view, so that it's not possible for normal users to make accidental clicks to those](https://github.com/wekan/wekan/issues/2599). Thanks to derbolle and xet7. +- [Fix bug on editing users informations, switching to other view, staring + a board](https://github.com/wekan/wekan/issues/2590). + Thanks to road42. +- [Fix null access with board body](https://github.com/wekan/wekan/pull/2602). + Thanks to justinr1234. Thanks to above GitHub users for their contributions and translators for their translations. -- cgit v1.2.3-1-g7c22 From d5d5e4448c3a90052d676bc25694c7fb24a1f403 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 9 Aug 2019 02:25:54 +0300 Subject: Add dependencies for pull request #2603 to meteor-1.6 snap. Thanks to xet7 ! --- .meteor-1.6-snap/.meteor/packages | 2 ++ .meteor-1.6-snap/.meteor/versions | 1 + 2 files changed, 3 insertions(+) diff --git a/.meteor-1.6-snap/.meteor/packages b/.meteor-1.6-snap/.meteor/packages index 8ba42068..7030dd39 100644 --- a/.meteor-1.6-snap/.meteor/packages +++ b/.meteor-1.6-snap/.meteor/packages @@ -94,3 +94,5 @@ wekan-markdown konecty:mongo-counter percolate:synced-cron easylogic:summernote +cfs:filesystem + diff --git a/.meteor-1.6-snap/.meteor/versions b/.meteor-1.6-snap/.meteor/versions index 48e3d06f..896a9177 100644 --- a/.meteor-1.6-snap/.meteor/versions +++ b/.meteor-1.6-snap/.meteor/versions @@ -30,6 +30,7 @@ cfs:collection@0.5.5 cfs:collection-filters@0.2.4 cfs:data-man@0.0.6 cfs:file@0.1.17 +cfs:filesystem@0.1.2 cfs:gridfs@0.0.34 cfs:http-methods@0.0.32 cfs:http-publish@0.0.13 -- cgit v1.2.3-1-g7c22 From 46cd1aced9e96494765073bae4073491f0c2f318 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 9 Aug 2019 02:34:50 +0300 Subject: v3.12 --- .meteor-1.6-snap/package.json | 2 +- CHANGELOG.md | 2 +- Stackerfile.yml | 2 +- package.json | 2 +- sandstorm-pkgdef.capnp | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.meteor-1.6-snap/package.json b/.meteor-1.6-snap/package.json index 53f56490..ad73607f 100644 --- a/.meteor-1.6-snap/package.json +++ b/.meteor-1.6-snap/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v3.11.0", + "version": "v3.12.0", "description": "Open-Source kanban", "private": true, "scripts": { diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a9a9c0c..6ecadf92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Upcoming Wekan release +# v3.12 2019-08-09 Wekan release This release adds the following new features: diff --git a/Stackerfile.yml b/Stackerfile.yml index f40728b2..eb4cbcf0 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -1,5 +1,5 @@ appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 -appVersion: "v3.11.0" +appVersion: "v3.12.0" files: userUploads: - README.md diff --git a/package.json b/package.json index 1ec9f127..ec82e87e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v3.11.0", + "version": "v3.12.0", "description": "Open-Source kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 144ccc5d..a7f94fc3 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = ( appTitle = (defaultText = "Wekan"), # The name of the app as it is displayed to the user. - appVersion = 313, + appVersion = 314, # Increment this for every release. - appMarketingVersion = (defaultText = "3.11.0~2019-08-07"), + appMarketingVersion = (defaultText = "3.12.0~2019-08-09"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, -- cgit v1.2.3-1-g7c22 -- cgit v1.2.3-1-g7c22 From 76ff96561999fa82a09a1360522b0f8f75d8578d Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 9 Aug 2019 02:49:24 +0300 Subject: Add to ChangeLog those that I forgot to add previously from Wekan v3.12. --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ecadf92..e03174c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,9 +9,15 @@ This release adds the following new features: server admin switchs to this setting, their old attachments won't be available anymore, unless someone make a script to export them out to the filesystem. Thanks to whowillcare. +- [Allowing user to insert video, link and image, or paste in html with sanitization. + In user comments display area, images can be clicked and shown as + swipebox](https://github.com/wekan/wekan/pull/2593). + Thanks to whowillcare. and fixes the following bugs: +- [Fix comment-editor marking issue](https://github.com/wekan/wekan/issues/2575). + Thanks to whowillcare. - [Bugfix: style kbd font color became white after introduced summernote editor to card comments](https://github.com/wekan/wekan/pull/2600). Thanks to whowillcare. -- cgit v1.2.3-1-g7c22 From 80f1222af47d0cb1a6dd06d9ddfa8fee035901fa Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Fri, 9 Aug 2019 02:55:15 +0300 Subject: v3.13 --- .meteor-1.6-snap/package.json | 2 +- CHANGELOG.md | 4 ++++ Stackerfile.yml | 2 +- package.json | 2 +- sandstorm-pkgdef.capnp | 4 ++-- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.meteor-1.6-snap/package.json b/.meteor-1.6-snap/package.json index ad73607f..cff817b0 100644 --- a/.meteor-1.6-snap/package.json +++ b/.meteor-1.6-snap/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v3.12.0", + "version": "v3.13.0", "description": "Open-Source kanban", "private": true, "scripts": { diff --git a/CHANGELOG.md b/CHANGELOG.md index e03174c4..4cf4b518 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v3.13 2019-08-09 Wekan relese + +Update translations. Thanks to translators. + # v3.12 2019-08-09 Wekan release This release adds the following new features: diff --git a/Stackerfile.yml b/Stackerfile.yml index eb4cbcf0..c3208f04 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -1,5 +1,5 @@ appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 -appVersion: "v3.12.0" +appVersion: "v3.13.0" files: userUploads: - README.md diff --git a/package.json b/package.json index ec82e87e..e96beb53 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v3.12.0", + "version": "v3.13.0", "description": "Open-Source kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index a7f94fc3..79f0f3a0 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = ( appTitle = (defaultText = "Wekan"), # The name of the app as it is displayed to the user. - appVersion = 314, + appVersion = 315, # Increment this for every release. - appMarketingVersion = (defaultText = "3.12.0~2019-08-09"), + appMarketingVersion = (defaultText = "3.13.0~2019-08-09"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, -- cgit v1.2.3-1-g7c22