Merge branch 'devel'

This commit is contained in:
Lauri Ojansivu 2018-09-06 19:55:04 +03:00
commit 2ef8803dfd
5 changed files with 14 additions and 3 deletions

View file

@ -1,3 +1,11 @@
# v1.43 2018-09-06 Wekan release
This release fixes the following bugs:
- [Fix "No Comments" permission on Wekan and Trello import](https://github.com/wekan/wekan/commit/0a001d505d81961e6bd6715d885fffee0adb702d).
Thanks to GitHub user xet7 for contributions.
# v1.42 2018-09-06 Wekan release
This release adds the following new features:

View file

@ -150,6 +150,7 @@ export class TrelloCreator {
userId: Meteor.userId(),
isAdmin: true,
isActive: true,
isNoComments: false,
isCommentOnly: false,
swimlaneId: false,
}],
@ -177,6 +178,7 @@ export class TrelloCreator {
userId: wekanId,
isAdmin: this.getAdmin(trelloMembership.memberType),
isActive: true,
isNoComments: false,
isCommentOnly: false,
swimlaneId: false,
});

View file

@ -160,6 +160,7 @@ export class WekanCreator {
wekanId: Meteor.userId(),
isActive: true,
isAdmin: true,
isNoComments: false,
isCommentOnly: false,
swimlaneId: false,
}],

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "1.42.0",
"version": "1.43.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 = 127,
appVersion = 128,
# Increment this for every release.
appMarketingVersion = (defaultText = "1.42.0~2018-09-06"),
appMarketingVersion = (defaultText = "1.43.0~2018-09-06"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,