Lauri Ojansivu пре 6 година
родитељ
комит
035334125b
6 измењених фајлова са 19 додато и 5 уклоњено
  1. 1 0
      .meteor/packages
  2. 1 0
      .meteor/versions
  3. 13 0
      CHANGELOG.md
  4. 1 2
      client/components/boards/boardArchive.js
  5. 1 1
      package.json
  6. 2 2
      sandstorm-pkgdef.capnp

+ 1 - 0
.meteor/packages

@@ -87,3 +87,4 @@ momentjs:moment@2.22.2
 atoy40:accounts-cas
 browser-policy-framing
 mquandalle:moment
+msavin:usercache

+ 1 - 0
.meteor/versions

@@ -118,6 +118,7 @@ mquandalle:jquery-ui-drag-drop-sort@0.2.0
 mquandalle:moment@1.0.1
 mquandalle:mousetrap-bindglobal@0.0.1
 mquandalle:perfect-scrollbar@0.6.5_2
+msavin:usercache@1.0.0
 npm-bcrypt@0.9.3
 npm-mongo@2.2.33
 oauth@1.2.1

+ 13 - 0
CHANGELOG.md

@@ -1,3 +1,16 @@
+# v1.38 2018-08-29 Wekan release
+
+This release adds the following new features:
+
+- Add [msavin:userCache](https://github.com/msavin/userCache) to speedup Wekan.
+  See [meteor forums post](https://forums.meteor.com/t/introducing-a-new-approach-to-meteor-user-this-simple-trick-can-save-you-millions-of-database-requests/45336/7).
+
+and fixes the following bugs:
+
+- [Fix Delete Board](https://github.com/wekan/wekan/commit/534b20fedac9162d2d316bd74eff743d636f2b3d).
+
+Thanks to GitHub users msavin, rjevnikar and xet7 for their contributions.
+
 # v1.37 2018-08-28 Wekan release
 
 This release fixes the following bugs:

+ 1 - 2
client/components/boards/boardArchive.js

@@ -37,8 +37,7 @@ BlazeComponent.extendComponent({
           const currentBoard = Boards.findOne(Session.get('currentBoard'));
           Boards.remove(currentBoard._id);
         }
-        const board = this.currentData();
-        Boards.remove(board._id);
+        Boards.remove(this._id);
         FlowRouter.go('home');
       }),
     }];

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "wekan",
-  "version": "1.37.0",
+  "version": "1.38.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 = 122,
+    appVersion = 123,
     # Increment this for every release.
 
-    appMarketingVersion = (defaultText = "1.37.0~2018-08-28"),
+    appMarketingVersion = (defaultText = "1.38.0~2018-08-29"),
     # Human-readable presentation of the app version.
 
     minUpgradableAppVersion = 0,