summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-08-29 00:11:55 +0300
committerLauri Ojansivu <x@xet7.org>2018-08-29 00:11:55 +0300
commit035334125b37a41ba5db5ce710afa353940ef365 (patch)
tree81ebfea61db0f12be9c1ed24043ad97543190145
parent24f59b1855a2bdd2c77232b435055431e40f7695 (diff)
parent70f37c55fdd501bc3dd5c0c706ac44edc70b1e71 (diff)
downloadwekan-035334125b37a41ba5db5ce710afa353940ef365.tar.gz
wekan-035334125b37a41ba5db5ce710afa353940ef365.tar.bz2
wekan-035334125b37a41ba5db5ce710afa353940ef365.zip
Merge branch 'devel'
-rw-r--r--.meteor/packages1
-rw-r--r--.meteor/versions1
-rw-r--r--CHANGELOG.md13
-rw-r--r--client/components/boards/boardArchive.js3
-rw-r--r--package.json2
-rw-r--r--sandstorm-pkgdef.capnp4
6 files changed, 19 insertions, 5 deletions
diff --git a/.meteor/packages b/.meteor/packages
index c525dbbd..ebe35f81 100644
--- a/.meteor/packages
+++ b/.meteor/packages
@@ -87,3 +87,4 @@ momentjs:moment@2.22.2
atoy40:accounts-cas
browser-policy-framing
mquandalle:moment
+msavin:usercache
diff --git a/.meteor/versions b/.meteor/versions
index c116172a..f1f52d23 100644
--- a/.meteor/versions
+++ b/.meteor/versions
@@ -118,6 +118,7 @@ mquandalle:jquery-ui-drag-drop-sort@0.2.0
mquandalle:moment@1.0.1
mquandalle:mousetrap-bindglobal@0.0.1
mquandalle:perfect-scrollbar@0.6.5_2
+msavin:usercache@1.0.0
npm-bcrypt@0.9.3
npm-mongo@2.2.33
oauth@1.2.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 462f4f1f..ae395e96 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v1.38 2018-08-29 Wekan release
+
+This release adds the following new features:
+
+- Add [msavin:userCache](https://github.com/msavin/userCache) to speedup Wekan.
+ See [meteor forums post](https://forums.meteor.com/t/introducing-a-new-approach-to-meteor-user-this-simple-trick-can-save-you-millions-of-database-requests/45336/7).
+
+and fixes the following bugs:
+
+- [Fix Delete Board](https://github.com/wekan/wekan/commit/534b20fedac9162d2d316bd74eff743d636f2b3d).
+
+Thanks to GitHub users msavin, rjevnikar and xet7 for their contributions.
+
# v1.37 2018-08-28 Wekan release
This release fixes the following bugs:
diff --git a/client/components/boards/boardArchive.js b/client/components/boards/boardArchive.js
index dbebdd70..8f4d5434 100644
--- a/client/components/boards/boardArchive.js
+++ b/client/components/boards/boardArchive.js
@@ -37,8 +37,7 @@ BlazeComponent.extendComponent({
const currentBoard = Boards.findOne(Session.get('currentBoard'));
Boards.remove(currentBoard._id);
}
- const board = this.currentData();
- Boards.remove(board._id);
+ Boards.remove(this._id);
FlowRouter.go('home');
}),
}];
diff --git a/package.json b/package.json
index 76d61684..597dc521 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "wekan",
- "version": "1.37.0",
+ "version": "1.38.0",
"description": "The open-source kanban",
"private": true,
"scripts": {
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 92ef8ae7..cab36a72 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 = 122,
+ appVersion = 123,
# Increment this for every release.
- appMarketingVersion = (defaultText = "1.37.0~2018-08-28"),
+ appMarketingVersion = (defaultText = "1.38.0~2018-08-29"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,