summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2018-05-01 00:12:21 +0300
committerLauri Ojansivu <x@xet7.org>2018-05-01 00:12:21 +0300
commite5cb1906939bae2961ab26be734c006e0932e67e (patch)
treecd5865b87cb9204c261bf34952c7e60977bf6a36
parent6ee6dbade5b36a03d27dbcaa4e6835d47c874bd7 (diff)
parent359d0b376f203a4d309a3a222d35a16b4ed161e3 (diff)
downloadwekan-e5cb1906939bae2961ab26be734c006e0932e67e.tar.gz
wekan-e5cb1906939bae2961ab26be734c006e0932e67e.tar.bz2
wekan-e5cb1906939bae2961ab26be734c006e0932e67e.zip
Merge branch 'devel'
-rw-r--r--CHANGELOG.md13
-rw-r--r--client/components/cards/checklists.styl9
-rw-r--r--package.json2
-rw-r--r--sandstorm-pkgdef.capnp4
4 files changed, 18 insertions, 10 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b9562871..7f6fbd7f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/client/components/cards/checklists.styl b/client/components/cards/checklists.styl
index 7b35488f..e9a6d807 100644
--- a/client/components/cards/checklists.styl
+++ b/client/components/cards/checklists.styl
@@ -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
diff --git a/package.json b/package.json
index 355dfbec..d865e2df 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "wekan",
- "version": "0.89.0",
+ "version": "0.90.0",
"description": "The open-source Trello-like kanban",
"private": true,
"scripts": {
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 4cee3589..508c9514 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 = 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,