File tree Expand file tree Collapse file tree 3 files changed +18
-9
lines changed Expand file tree Collapse file tree 3 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
- ## [ v0.6.10] ( https://github.com/FXMisc/Flowless/tree/v0.6.9 ) (2022-06-13)
3
+ ## [ v0.7.0] ( https://github.com/FXMisc/Flowless/tree/v0.7.0 ) (2022-11-10)
4
+ [ Full Changelog] ( https://github.com/FXMisc/Flowless/compare/v0.6.10...v0.7.0 )
5
+
6
+ - Fix first cell not showing sometimes [ \# 110] ( https://github.com/FXMisc/Flowless/pull/110 )
7
+ - Take padding into account when scrolling [ \# 111] ( https://github.com/FXMisc/Flowless/pull/111 )
8
+ - Fix for scrolling [ \# 112] ( https://github.com/FXMisc/Flowless/pull/112 )
9
+ - Fix wrapped text scrollbar flicker [ \# 113] ( https://github.com/FXMisc/Flowless/pull/113 )
10
+ - Removed scroll noise and improved bidirectional binding behavior [ \# 113] ( https://github.com/FXMisc/Flowless/pull/113 )
11
+
12
+ ## [ v0.6.10] ( https://github.com/FXMisc/Flowless/tree/v0.6.10 ) (2022-06-13)
4
13
[ Full Changelog] ( https://github.com/FXMisc/Flowless/compare/v0.6.9...v0.6.10 )
5
14
6
15
- Fix Virtualized height NPE [ \# 107] ( https://github.com/FXMisc/Flowless/pull/107 )
Original file line number Diff line number Diff line change @@ -75,27 +75,27 @@ Include Flowless in your project
75
75
76
76
| Group ID | Artifact ID | Version |
77
77
| :---------: | :---------: | :-----: |
78
- | org.fxmisc.flowless | flowless | 0.6.10 |
78
+ | org.fxmisc.flowless | flowless | 0.7.0 |
79
79
80
80
#### Gradle example
81
81
82
82
``` groovy
83
83
dependencies {
84
- implementation group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.10 '
84
+ implementation group: 'org.fxmisc.flowless', name: 'flowless', version: '0.7.0 '
85
85
}
86
86
```
87
87
88
88
#### Sbt example
89
89
90
90
``` scala
91
- libraryDependencies += " org.fxmisc.flowless" % " flowless" % " 0.6.10 "
91
+ libraryDependencies += " org.fxmisc.flowless" % " flowless" % " 0.7.0 "
92
92
```
93
93
94
94
#### Manual download
95
95
96
- Download the [ 0.6.10 jar] ( https://github.com/FXMisc/Flowless/releases/tag/v0.6.10 ) and place it on your classpath.
96
+ Download the [ 0.7.0 jar] ( https://github.com/FXMisc/Flowless/releases/tag/v0.7.0 ) and place it on your classpath.
97
97
98
98
Documentation
99
99
-------------
100
100
101
- [ Javadoc] ( http://fxmisc.github.io/flowless/javadoc/0.6.2 /org/fxmisc/flowless/package-summary.html )
101
+ [ Javadoc] ( http://fxmisc.github.io/flowless/javadoc/0.7.0 /org/fxmisc/flowless/package-summary.html )
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
13
13
id ' signing'
14
14
}
15
15
16
- version = ' 0.6.9 -SNAPSHOT'
16
+ version = ' 0.7.1 -SNAPSHOT'
17
17
18
18
repositories {
19
19
mavenCentral()
@@ -52,8 +52,8 @@ javadoc {
52
52
53
53
options. links = [
54
54
// resolve links to Java and JavaFX Javadocs
55
- ' http://docs.oracle.com/javase/8 /docs/api/' ,
56
- ' http://docs.oracle.com/javase/8 /javafx/api/' ,
55
+ ' http://docs.oracle.com/javase/9 /docs/api/' ,
56
+ ' http://docs.oracle.com/javase/9 /javafx/api/' ,
57
57
58
58
// resolve links to ReactFX
59
59
' https://www.javadoc.io/doc/org.reactfx/reactfx/2.0-M5/'
You can’t perform that action at this time.
0 commit comments