summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-07-06 13:41:34 +0300
committerLauri Ojansivu <x@xet7.org>2018-07-06 13:41:34 +0300
commit1189259a55d8b8c4e77f017f13560a7091eec706 (patch)
treef476c93e039750a66c520d96b0439631b5589e14
parent5d573a7aa183ca8a495984834e31b1aaf206cda1 (diff)
parent9a053164acac9943bf4773d5f3b8c13e2c0fdf50 (diff)
downloadwekan-1189259a55d8b8c4e77f017f13560a7091eec706.tar.gz
wekan-1189259a55d8b8c4e77f017f13560a7091eec706.tar.bz2
wekan-1189259a55d8b8c4e77f017f13560a7091eec706.zip
Merge branch 'devel'
-rw-r--r--CHANGELOG.md9
-rw-r--r--models/checklists.js1
-rw-r--r--package.json2
-rw-r--r--sandstorm-pkgdef.capnp4
4 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index afb3d643..fb9ac1a0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+# v1.15 2018-07-06 Wekan release
+
+This release fixes the following bugs:
+
+- Fix [Title is required](https://github.com/wekan/wekan/issues/1576)
+ by making [Checklist title optional](https://github.com/wekan/wekan/issues/1753).
+
+Thanks to GitHub users centigrade-kdk and xet7 for their contributions.
+
# v1.14 2018-07-06 Wekan release
This release fixes the following bugs:
diff --git a/models/checklists.js b/models/checklists.js
index c58453ef..2277736e 100644
--- a/models/checklists.js
+++ b/models/checklists.js
@@ -7,6 +7,7 @@ Checklists.attachSchema(new SimpleSchema({
title: {
type: String,
defaultValue: 'Checklist',
+ optional: true,
},
finishedAt: {
type: Date,
diff --git a/package.json b/package.json
index f5da7d1b..47137ee7 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "wekan",
- "version": "1.14.0",
+ "version": "1.15.0",
"description": "The open-source Trello-like kanban",
"private": true,
"scripts": {
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 0aedaa90..cfcfba84 100644
--- a/sandstorm-pkgdef.capnp
+++ b/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 = 99,
+ appVersion = 100,
# Increment this for every release.
- appMarketingVersion = (defaultText = "1.14.0~2018-07-06"),
+ appMarketingVersion = (defaultText = "1.15.0~2018-07-06"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,