mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 21:17:18 -04:00
Merge branch 'devel'
This commit is contained in:
commit
5e17b01077
4 changed files with 10 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
|||
# v1.16 2018-07-06 Wekan release
|
||||
|
||||
- Fix: [Boards.forEach is not function](https://github.com/wekan/wekan/commit/a41190cdf024df65ad1c9931b3065c6ababeaf25).
|
||||
|
||||
Thanks to GitHub user xet7 for contributions.
|
||||
|
||||
# v1.15 2018-07-06 Wekan release
|
||||
|
||||
This release fixes the following bugs:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wekan",
|
||||
"version": "1.15.0",
|
||||
"version": "1.16.0",
|
||||
"description": "The open-source Trello-like kanban",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
|
|||
appTitle = (defaultText = "Wekan"),
|
||||
# The name of the app as it is displayed to the user.
|
||||
|
||||
appVersion = 100,
|
||||
appVersion = 101,
|
||||
# Increment this for every release.
|
||||
|
||||
appMarketingVersion = (defaultText = "1.15.0~2018-07-06"),
|
||||
appMarketingVersion = (defaultText = "1.16.0~2018-07-06"),
|
||||
# Human-readable presentation of the app version.
|
||||
|
||||
minUpgradableAppVersion = 0,
|
||||
|
|
|
@ -153,7 +153,7 @@ Migrations.add('add-sort-checklists', () => {
|
|||
});
|
||||
|
||||
Migrations.add('add-swimlanes', () => {
|
||||
Boards.forEach((board) => {
|
||||
Boards.find().forEach((board) => {
|
||||
const swimlaneId = board.getDefaultSwimline()._id;
|
||||
Cards.find({ boardId: board._id }).forEach((card) => {
|
||||
if (!card.hasOwnProperty('swimlaneId')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue