Merge branch 'devel'

This commit is contained in:
Lauri Ojansivu 2018-05-02 18:19:19 +03:00
commit 01804daf24
4 changed files with 18 additions and 6 deletions

View file

@ -1,3 +1,12 @@
# v0.93 2018-05-02 Wekan release
This release adds the following new features:
* [Checklist items lineheight to 18px, and positioning
improvements](https://github.com/wekan/wekan/issues/1619).
Thanks to GitHub user lichtamberg for contributions.
# v0.92 2018-05-01 Wekan release
This release tries to fix the following bugs, please test:

View file

@ -94,7 +94,7 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
.checklist-item
margin: 0 0 0 0.1em
line-height: 14px
line-height: 18px
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: 0px
margin: 0.1em 0 0 0;
&.is-checked
border-bottom: 2px solid #3cb500
border-right: 2px solid #3cb500
@ -125,6 +125,9 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
&.is-checked
color: #8c8c8c
font-style: italic
& .viewer
p
margin-bottom: 2px
.js-delete-checklist-item
margin: 0 0 0.5em 1.33em
@ -132,5 +135,5 @@ textarea.js-add-checklist-item, textarea.js-edit-checklist-item
padding: 12px 0 0 0
.add-checklist-item
margin: 0 0 0.5em 1.33em
margin: 0.2em 0 0.5em 1.33em
display: inline-block

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "0.92.0",
"version": "0.93.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 = 77,
appVersion = 78,
# Increment this for every release.
appMarketingVersion = (defaultText = "0.92.0~2018-05-01"),
appMarketingVersion = (defaultText = "0.93.0~2018-05-02"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,