Merge branch 'devel'

This commit is contained in:
Lauri Ojansivu 2018-05-01 00:12:21 +03:00
commit e5cb190693
4 changed files with 18 additions and 10 deletions

View file

@ -1,3 +1,12 @@
# v0.90 2018-05-01 Wekan release
This release adds the following new features:
- [Remove space from between checklist items, so longer checklists can be seen
at once](https://github.com/wekan/wekan/commit/1124f4120cd77622c0a6313e228e1a00690ff566).
Thanks to GitHub user xet7 for contributions.
# v0.89 2018-04-29 Wekan release
This release fixes the following bugs:
@ -5,7 +14,7 @@ This release fixes the following bugs:
- [Fix Wekan import / Export for
ChecklistItems](https://github.com/wekan/wekan/commit/30b17ff6c92df07922f875071e864cf688902293).
Thanks to Github user zebby76 for contributions.
Thanks to GitHub user zebby76 for contributions.
# v0.88 2018-04-27 Wekan release
@ -13,7 +22,7 @@ This release fixes the following bugs:
- [Fix Trello import of ChecklistItems](https://github.com/wekan/wekan/pull/1611).
Thanks to Github user zebby76 for contributions.
Thanks to GitHub user zebby76 for contributions.
# v0.87 2018-04-27 Wekan release

View file

@ -26,7 +26,7 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
.title
font-size: 18px
line-height: 30px
line-height: 25px
.checklist-stat
margin: 0 0.5em
@ -93,8 +93,8 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
.checklist-item
margin: 0 0 0.5em 1.33em
line-height: 25px
margin: 0 0 0 0.1em
line-height: 14px
font-size: 1.1em
margin-top: 3px
display: flex
@ -114,7 +114,7 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
background-color: darken(white, 8%)
.check-box
margin-top: 5px
margin-top: 0px
&.is-checked
border-bottom: 2px solid #3cb500
border-right: 2px solid #3cb500
@ -133,5 +133,4 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
.add-checklist-item
margin: 0 0 0.5em 1.33em
padding-top: 0.5em
display: inline-block

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "0.89.0",
"version": "0.90.0",
"description": "The open-source Trello-like kanban",
"private": true,
"scripts": {

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
appVersion = 74,
appVersion = 75,
# Increment this for every release.
appMarketingVersion = (defaultText = "0.89.0~2018-04-29"),
appMarketingVersion = (defaultText = "0.90.0~2018-05-01"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,