You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-6Lines changed: 12 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,12 @@ This somewhat vague sentiment does not translate to quality! The code is clean,
8
8
9
9
These features are present in the latest release:
10
10
11
+
*[ControlPropertyListener](https://github.com/CodeFX-org/LibFX/wiki/ControlPropertyListener): creating listeners for the property map of JavaFX controls
12
+
*[ListenerHandle](https://github.com/CodeFX-org/LibFX/wiki/ListenerHandle): encapsulating an observable and a listener for easier add/remove of the listener
11
13
*[Nestings](https://github.com/CodeFX-org/LibFX/wiki/Nestings): using all the power of JavaFX' properties for nested object aggregations
14
+
*[SerializableOptional](https://github.com/CodeFX-org/LibFX/wiki/SerializableOptional): serializable wrapper for `Optional`
15
+
*[WebViewHyperlinkListener](https://github.com/CodeFX-org/LibFX/wiki/WebViewHyperlinkListener): add hyperlink listeners to JavaFX' `WebView`
16
+
12
17
13
18
## Documentation
14
19
@@ -22,24 +27,24 @@ License details can be found in the *LICENSE* file in the project's root folder.
22
27
23
28
## Releases
24
29
25
-
Releases are published [here](https://github.com/CodeFX-org/LibFX/releases). The release notes also contain a link to the artifact in Maven Central and its coordinates.
30
+
Releases are published [on GitHub](https://github.com/CodeFX-org/LibFX/releases). The release notes also contain a link to the artifact in Maven Central and its coordinates.
26
31
27
-
The current version is [0.1.2](http://search.maven.org/#artifactdetails|org.codefx.libfx|LibFX|0.1.2|jar):
32
+
The current version is [0.2.0](http://search.maven.org/#artifactdetails|org.codefx.libfx|LibFX|0.2.0|jar):
28
33
29
34
**Maven**:
30
35
31
36
```XML
32
37
<dependency>
33
38
<groupId>org.codefx.libfx</groupId>
34
39
<artifactId>LibFX</artifactId>
35
-
<version>0.1.2</version>
40
+
<version>0.2.0</version>
36
41
</dependency>
37
42
```
38
43
39
44
**Gradle**:
40
45
41
46
```
42
-
compile 'org.codefx.libfx:LibFX:0.1.2'
47
+
compile 'org.codefx.libfx:LibFX:0.2.0'
43
48
```
44
49
45
50
## Development
@@ -60,7 +65,7 @@ The library has its home on [GitHub](https://github.com/CodeFX-org/LibFX) where
60
65
61
66
I have a blog at [codefx.org](http://blog.codefx.org) where I might occasionally blog about **LibFX**. Those posts are filed under [their own tag](http://blog.codefx.org/tag/libfx/).
62
67
63
-
I use Eclipse and my project settings (like compiler warnings, formatter and save actions) can be found in the repository folder **.settings**. I do this to make it easier for contributors to cope with my obsession for warning free and consistently formatted code.
68
+
I use Eclipse and my project settings (like compiler warnings, formatter and save actions) can be found in the repository folder **.settings**. I know this is a little unusual but it makes it easier for contributors to cope with my obsession for warning free and consistently formatted code.
0 commit comments