Merge branch 'devel'

This commit is contained in:
Lauri Ojansivu 2018-08-29 00:11:55 +03:00
commit 035334125b
6 changed files with 19 additions and 5 deletions

View file

@ -87,3 +87,4 @@ momentjs:moment@2.22.2
atoy40:accounts-cas
browser-policy-framing
mquandalle:moment
msavin:usercache

View file

@ -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

View file

@ -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:

View file

@ -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');
}),
}];

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "1.37.0",
"version": "1.38.0",
"description": "The open-source kanban",
"private": true,
"scripts": {

View file

@ -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,