mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
Merge branch 'devel'
This commit is contained in:
commit
1189259a55
4 changed files with 13 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -7,6 +7,7 @@ Checklists.attachSchema(new SimpleSchema({
|
|||
title: {
|
||||
type: String,
|
||||
defaultValue: 'Checklist',
|
||||
optional: true,
|
||||
},
|
||||
finishedAt: {
|
||||
type: Date,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wekan",
|
||||
"version": "1.14.0",
|
||||
"version": "1.15.0",
|
||||
"description": "The open-source Trello-like kanban",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue