Skip to content

Commit

Permalink
Version 0.7.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jugen committed Nov 10, 2022
1 parent 80c0fe9 commit 54a2765
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Change Log

## [v0.6.10](https://github.com/FXMisc/Flowless/tree/v0.6.9) (2022-06-13)
## [v0.7.0](https://github.com/FXMisc/Flowless/tree/v0.7.0) (2022-11-10)
[Full Changelog](https://github.com/FXMisc/Flowless/compare/v0.6.10...v0.7.0)

- Fix first cell not showing sometimes [\#110](https://github.com/FXMisc/Flowless/pull/110)
- Take padding into account when scrolling [\#111](https://github.com/FXMisc/Flowless/pull/111)
- Fix for scrolling [\#112](https://github.com/FXMisc/Flowless/pull/112)
- Fix wrapped text scrollbar flicker [\#113](https://github.com/FXMisc/Flowless/pull/113)
- Removed scroll noise and improved bidirectional binding behavior [\#113](https://github.com/FXMisc/Flowless/pull/113)

## [v0.6.10](https://github.com/FXMisc/Flowless/tree/v0.6.10) (2022-06-13)
[Full Changelog](https://github.com/FXMisc/Flowless/compare/v0.6.9...v0.6.10)

- Fix Virtualized height NPE [\#107](https://github.com/FXMisc/Flowless/pull/107)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,27 +75,27 @@ Include Flowless in your project

| Group ID | Artifact ID | Version |
| :---------: | :---------: | :-----: |
| org.fxmisc.flowless | flowless | 0.6.10 |
| org.fxmisc.flowless | flowless | 0.7.0 |

#### Gradle example

```groovy
dependencies {
implementation group: 'org.fxmisc.flowless', name: 'flowless', version: '0.6.10'
implementation group: 'org.fxmisc.flowless', name: 'flowless', version: '0.7.0'
}
```

#### Sbt example

```scala
libraryDependencies += "org.fxmisc.flowless" % "flowless" % "0.6.10"
libraryDependencies += "org.fxmisc.flowless" % "flowless" % "0.7.0"
```

#### Manual download

Download the [0.6.10 jar](https://github.com/FXMisc/Flowless/releases/tag/v0.6.10) and place it on your classpath.
Download the [0.7.0 jar](https://github.com/FXMisc/Flowless/releases/tag/v0.7.0) and place it on your classpath.

Documentation
-------------

[Javadoc](http://fxmisc.github.io/flowless/javadoc/0.6.2/org/fxmisc/flowless/package-summary.html)
[Javadoc](http://fxmisc.github.io/flowless/javadoc/0.7.0/org/fxmisc/flowless/package-summary.html)
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
id 'signing'
}

version = '0.6.9-SNAPSHOT'
version = '0.7.1-SNAPSHOT'

repositories {
mavenCentral()
Expand Down Expand Up @@ -52,8 +52,8 @@ javadoc {

options.links = [
// resolve links to Java and JavaFX Javadocs
'http://docs.oracle.com/javase/8/docs/api/',
'http://docs.oracle.com/javase/8/javafx/api/',
'http://docs.oracle.com/javase/9/docs/api/',
'http://docs.oracle.com/javase/9/javafx/api/',

// resolve links to ReactFX
'https://www.javadoc.io/doc/org.reactfx/reactfx/2.0-M5/'
Expand Down

0 comments on commit 54a2765

Please sign in to comment.