mirror of
https://github.com/wekan/wekan.git
synced 2025-04-22 04:57:07 -04:00
Merge branch 'edge' into meteor-1.8
This commit is contained in:
commit
2dba189830
5 changed files with 17 additions and 5 deletions
|
@ -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
|
||||
|
||||
This release fixes the following bugs:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
|
||||
appVersion: "v2.06.0"
|
||||
appVersion: "v2.07.0"
|
||||
files:
|
||||
userUploads:
|
||||
- README.md
|
||||
|
|
|
@ -54,9 +54,13 @@
|
|||
flex-direction: row
|
||||
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() {
|
||||
.list-group {
|
||||
overflow: hidden;
|
||||
overflow-y: hidden;
|
||||
overflow: -moz-scrollbars-vertical;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wekan",
|
||||
"version": "v2.06.0",
|
||||
"version": "v2.07.0",
|
||||
"description": "Open-Source 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 = 208,
|
||||
appVersion = 209,
|
||||
# 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.
|
||||
|
||||
minUpgradableAppVersion = 0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue