2
0
Lauri Ojansivu 6 жил өмнө
parent
commit
2ef8803dfd

+ 8 - 0
CHANGELOG.md

@@ -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:

+ 2 - 0
models/trelloCreator.js

@@ -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,
             });

+ 1 - 0
models/wekanCreator.js

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

+ 1 - 1
package.json

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

+ 2 - 2
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 = 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,