Merge branch 'edge' into meteor-1.8

This commit is contained in:
Lauri Ojansivu 2019-01-28 02:59:32 +02:00
commit 2dba189830
5 changed files with 17 additions and 5 deletions

View file

@ -1,3 +1,11 @@
# v2.07 2019-01-28 Wekan release
This release fixes the following bugs:
- [Fix Firefox left-rigth scrollbar](https://github.com/wekan/wekan/issues/2137).
Thanks to GitHub user xet7 for contributions.
# v2.06 2019-01-27 Wekan release # v2.06 2019-01-27 Wekan release
This release fixes the following bugs: This release fixes the following bugs:

View file

@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
appVersion: "v2.06.0" appVersion: "v2.07.0"
files: files:
userUploads: userUploads:
- README.md - README.md

View file

@ -54,9 +54,13 @@
flex-direction: row flex-direction: row
height: 100% height: 100%
// Firefox fix for cards behind swimlane to overflow-y
// https://github.com/wekan/wekan/pull/2132/commits/f7c6b7fce237a6dbdbbd6d728cfb11ad3f4378eb
// and enable Firefox left-right scroll https://github.com/wekan/wekan/issues/2137
@-moz-document url-prefix() { @-moz-document url-prefix() {
.list-group { .list-group {
overflow: hidden; overflow-y: hidden;
overflow: -moz-scrollbars-vertical;
} }
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v2.06.0", "version": "v2.07.0",
"description": "Open-Source kanban", "description": "Open-Source kanban",
"private": true, "private": true,
"scripts": { "scripts": {

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"), appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user. # The name of the app as it is displayed to the user.
appVersion = 208, appVersion = 209,
# Increment this for every release. # Increment this for every release.
appMarketingVersion = (defaultText = "2.06.0~2019-01-27"), appMarketingVersion = (defaultText = "2.07.0~2019-01-28"),
# Human-readable presentation of the app version. # Human-readable presentation of the app version.
minUpgradableAppVersion = 0, minUpgradableAppVersion = 0,