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 # v1.42 2018-09-06 Wekan release
This release adds the following new features: This release adds the following new features:

View file

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

View file

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

View file

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

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"), appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user. # The name of the app as it is displayed to the user.
appVersion = 127, appVersion = 128,
# Increment this for every release. # 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. # Human-readable presentation of the app version.
minUpgradableAppVersion = 0, minUpgradableAppVersion = 0,