瀏覽代碼

Merge branch 'devel'

Lauri Ojansivu 7 年之前
父節點
當前提交
5168fb7717
共有 4 個文件被更改,包括 12 次插入3 次删除
  1. 8 0
      CHANGELOG.md
  2. 1 0
      models/boards.js
  3. 1 1
      package.json
  4. 2 2
      sandstorm-pkgdef.capnp

+ 8 - 0
CHANGELOG.md

@@ -1,3 +1,11 @@
+# v1.25 2018-08-09 Wekan release
+
+This release fixes the following bugs:
+
+- [Fix showing only the cards of the current board in calendar view](https://github.com/wekan/wekan/pull/1822).
+
+Thanks to GitHub user Yanonix for contributions.
+
 # v1.24 2018-08-09 Wekan release
 
 This release add the following new features:

+ 1 - 0
models/boards.js

@@ -372,6 +372,7 @@ Boards.helpers({
 
   cardsInInterval(start, end) {
     return Cards.find({
+      boardId: this._id,
       $or: [
         {
           startAt: {

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "wekan",
-  "version": "1.24.0",
+  "version": "1.25.0",
   "description": "The open-source Trello-like 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 = 109,
+    appVersion = 110,
     # Increment this for every release.
 
-    appMarketingVersion = (defaultText = "1.24.0~2018-08-09"),
+    appMarketingVersion = (defaultText = "1.25.0~2018-08-09"),
     # Human-readable presentation of the app version.
 
     minUpgradableAppVersion = 0,