From a86a8eff2dc1c1862f9ffd53fe722b01faaba8c0 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 28 Jun 2018 00:26:37 +0300 Subject: [PATCH 1/5] Fix typo. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7701572e..f15246229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ This release adds the following new features: and fixes the following bugs: * To fix ["title is required"](https://github.com/wekan/wekan/issues/1576) fix only - add-checklist-items and revert all other migration changes](https://github.com/wekan/wekan/issues/1734); + [add-checklist-items and revert all other migration changes](https://github.com/wekan/wekan/issues/1734); * [Restore invitation code logic](https://github.com/wekan/wekan/pull/1732). Please test and add comment to those invitation code issues that this fixes. From e044769d854dbbce18f2c6af3adbdf6869156694 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 28 Jun 2018 13:48:36 +0300 Subject: [PATCH 2/5] - Fix migration error "TypeError: Checklists.foreach" Thanks to Jubi94, kestrelhawk and xet7 ! Fixes #1736, fixes wekan/wekan-snap#51 --- server/migrations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/migrations.js b/server/migrations.js index 91ab4cb91..a1a5c65a1 100644 --- a/server/migrations.js +++ b/server/migrations.js @@ -189,7 +189,7 @@ Migrations.add('add-views', () => { }); Migrations.add('add-checklist-items', () => { - Checklists.forEach((checklist) => { + Checklists.find().forEach((checklist) => { // Create new items _.sortBy(checklist.items, 'sort').forEach((item, index) => { ChecklistItems.direct.insert({ From 9fceb212d9339977d659421fef7d0c820145dd20 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 28 Jun 2018 13:56:41 +0300 Subject: [PATCH 3/5] Fix migration error "TypeError: Checklists.foreach" at Snap, Docker etc. Thanks to Jubi94, kestrelhawk and xet7 ! --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f15246229..444cd9706 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# Upcoming Wekan release + +This release fixes the following bugs: + +* Fix migration error "TypeError: Checklists.foreach" at [Snap](https://github.com/wekan/wekan-snap/issues/51), + [Docker](https://github.com/wekan/wekan/issues/1736) etc. + +Thanks to Jubi94, kestrelhawk and xet7 ! + # v1.09 2018-06-28 Wekan release This release adds the following new features: From 5adce79842be8539f6051b951af47488c0e20cfa Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 28 Jun 2018 13:59:43 +0300 Subject: [PATCH 4/5] Update translations (de) --- i18n/de.i18n.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n/de.i18n.json b/i18n/de.i18n.json index 756bc8f66..2ae21b930 100644 --- a/i18n/de.i18n.json +++ b/i18n/de.i18n.json @@ -100,7 +100,7 @@ "boardMenuPopup-title": "Boardmenü", "boards": "Boards", "board-view": "Boardansicht", - "board-view-cal": "Calendar", + "board-view-cal": "Kalender", "board-view-swimlanes": "Swimlanes", "board-view-lists": "Listen", "bucket-example": "z.B. \"Löffelliste\"", From ad54a8a48404a84b0bf5ff7dab5348be6dda574e Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Thu, 28 Jun 2018 14:02:57 +0300 Subject: [PATCH 5/5] v1.10 --- CHANGELOG.md | 4 ++-- package.json | 2 +- sandstorm-pkgdef.capnp | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 444cd9706..56fc9f2a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ -# Upcoming Wekan release +# v1.10 2018-06-28 Wekan release This release fixes the following bugs: * Fix migration error "TypeError: Checklists.foreach" at [Snap](https://github.com/wekan/wekan-snap/issues/51), [Docker](https://github.com/wekan/wekan/issues/1736) etc. -Thanks to Jubi94, kestrelhawk and xet7 ! +Thanks to GitHub users Jubi94, kestrelhawk and xet7 for their contributions. # v1.09 2018-06-28 Wekan release diff --git a/package.json b/package.json index e61130451..e3f7b0d84 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "1.09.0", + "version": "1.10.0", "description": "The open-source Trello-like kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 1553133ee..6dccb65de 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 = 94, + appVersion = 95, # Increment this for every release. - appMarketingVersion = (defaultText = "1.09.0~2018-06-28"), + appMarketingVersion = (defaultText = "1.10.0~2018-06-28"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0,