summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-03-02 12:48:01 +0200
committerLauri Ojansivu <x@xet7.org>2018-03-02 12:48:01 +0200
commit0cee496270bee327d5acce66a25215bdb27fc1cc (patch)
tree3429f40ba034b74f466eb619fd1fd056f5599cc8
parent2c1dadf712ca63169f2e1c00a00e4fe03c65cf3b (diff)
parent9e62584b260a4a1bc5be1a66dfc3b6950664788d (diff)
downloadwekan-0cee496270bee327d5acce66a25215bdb27fc1cc.tar.gz
wekan-0cee496270bee327d5acce66a25215bdb27fc1cc.tar.bz2
wekan-0cee496270bee327d5acce66a25215bdb27fc1cc.zip
Merge branch 'devel'
-rw-r--r--CHANGELOG.md9
-rw-r--r--models/boards.js2
-rw-r--r--models/wekanCreator.js3
3 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 77f69a75..dc52005a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,17 @@
# Upcoming Wekan release
-This release fixes the following bugs:
+This release adds the following new features:
+
+- [Allow swimlanes reordering](https://github.com/wekan/wekan/commit/37c94622e476f50bf2387bc8b140454d66200e78);
+- [Import missing card fields: isOvertime, startAt and spentTime](https://github.com/wekan/wekan/commit/b475127c53031fa498da139a7d16f3e54d43b90d);
+- [Lists view is the default view when creating boards](https://github.com/wekan/wekan/commit/1ca9e96f35389c0eec2290e8e1207801ee25f907).
+
+and fixes the following bugs:
- [Fix lint errors related to sandstorm](https://github.com/wekan/wekan/commit/0a16147470246c8f49bb918f5ddc7bb2e54fba14);
- [Add Swimlanes to globals](https://github.com/wekan/wekan/commit/373e9782dcf87a9c1169b5d1f8175ce14e4898c9);
- [Fix lint errors related to trello creator](https://github.com/wekan/wekan/commit/951a0db380d60f3d948ae38d50b85a54983a51de);
- [Fix lint errors related to language names](https://github.com/wekan/wekan/commit/c0d33d97f2c8d4e9371a03d4ad3022df3ed64d3d);
-- [Allow swimlanes reordering](https://github.com/wekan/wekan/commit/37c94622e476f50bf2387bc8b140454d66200e78);
- [Avoid swimlane title overlap](https://github.com/wekan/wekan/commit/c4fa9010f34966b633c7bf7e46ad49fc101127c9);
- [Fix scrollbar inside list and outer scroll](https://github.com/wekan/wekan/commit/a033c35a3411902b9bf8f62a40cd68f641e573d3);
- [Remove list max-height 350px](https://github.com/wekan/wekan/commit/b6d3e79548d1e88c93fa2965a936595176a95565);
diff --git a/models/boards.js b/models/boards.js
index 8a7ae1aa..436a99f5 100644
--- a/models/boards.js
+++ b/models/boards.js
@@ -35,7 +35,7 @@ Boards.attachSchema(new SimpleSchema({
type: String,
autoValue() { // eslint-disable-line consistent-return
if (this.isInsert) {
- return 'board-view-swimlanes';
+ return 'board-view-lists';
}
},
},
diff --git a/models/wekanCreator.js b/models/wekanCreator.js
index d774db67..99d1df2d 100644
--- a/models/wekanCreator.js
+++ b/models/wekanCreator.js
@@ -228,7 +228,10 @@ export class WekanCreator {
title: card.title,
// we attribute the card to its creator if available
userId: this._user(this.createdBy.cards[card._id]),
+ isOvertime: card.isOvertime || false,
+ startAt: card.startAt ? this._now(card.startAt) : null,
dueAt: card.dueAt ? this._now(card.dueAt) : null,
+ spentTime: card.spentTime || null,
};
// add labels
if (card.labelIds) {