Skip to content

Commit

Permalink
release of version 8.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FibreFoX committed Jul 31, 2016
1 parent 2543f57 commit 249fdf9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Release Notes
=============

# Version 8.5.2 (31-July-2016)

Bugfixes:
* fixed issue #24 regarding NullPointerException inside workaround (I'm very sorry about that, thanks to @AustinShalit for finding this)

**Note:**
There won't be any [GString](http://docs.groovy-lang.org/latest/html/api/groovy/lang/GString.html)-support, please use `toString()` inside your buildscript

Another note: I know, dependency-filtering is not yet implemented, but as this is a rather unused feature, I will take the time ;)



# Version 8.5.1 (29-June-2016)

New:
Expand Down
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Please adjust your parameters accordingly:
```groovy
buildscript {
dependencies {
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.5.1'
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.5.2'
}
repositories {
Expand Down Expand Up @@ -127,24 +127,10 @@ Gradle Tasks
Last Release Notes
==================

**Version 8.5.1 (29-June-2016)**

New:
* added new property to skip workaround for gradle daemon mode (which causes problems with the runtime-folder, see issue #12 for more information), this makes it now possible to create native builds within the IDE (at least once)
**Version 8.5.2 (31-July-2016)**

Bugfixes:
* fixed some classloader-problem when using javafx-gradle-plugin in combination with Netbeans IDE having netbeans-gradle-plugin installed *(I'm very sorry about this, don't know why this wasn't detected by me before)*
* updated workaround-detection for creating native bundles without JRE, because [it got fixed by latest Oracle JDK 1.8.0u92](http://www.oracle.com/technetwork/java/javase/2col/8u92-bugfixes-2949473.html)

Enhancements:
* made it possible to specify file-association icon as [String](http://docs.oracle.com/javase/8/docs/api/java/lang/String.html), [File](http://docs.oracle.com/javase/8/docs/api/java/io/File.html) or [Path](http://docs.oracle.com/javase/8/docs/api/java/nio/file/Path.html)
* changed the way for adding `ant-javafx.jar` to the classloaders (by using more stuff provided by the gradle-api)

Migrated from javafx-maven-plugin:
* (bugfix) added workaround for native linux launcher inside native linux installer bundle (DEB and RPM) not working, see issue [#205](https://github.com/javafx-maven-plugin/javafx-maven-plugin/issues/205) for more details on this (it's a come-back of the [issue 124](https://github.com/javafx-maven-plugin/javafx-maven-plugin/issues/124))
* (new) added ability to write and use custom bundlers! This makes it possible to customize the work which is required for your bundling-process.
* (new) added new property to disable "native linux launcher inside native linux installer"-fix `skipNativeLauncherWorkaround205 = true`
* (improvement) moved workarounds and workaround-detection into its own class (makes it a bit easier to concentrate on the main work inside JfxNativeTask)
* fixed issue #24 regarding NullPointerException inside workaround (I'm very sorry about that, thanks to @AustinShalit for finding this)

**Note:**
There won't be any [GString](http://docs.groovy-lang.org/latest/html/api/groovy/lang/GString.html)-support, please use `toString()` inside your buildscript
Expand All @@ -156,6 +142,6 @@ Another note: I know, dependency-filtering is not yet implemented, but as this i
(Not yet) Release(d) Notes
==========================

upcoming Version 8.5.2 (???-2016)
upcoming Version 8.5.3 (???-2016)

* nothing changed yet
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {

group = 'de.dynamicfiles.projects.gradle.plugins'
archivesBaseName = 'javafx-gradle-plugin'
version = '8.5.2-SNAPSHOT'
version = '8.5.2'

ext.isReleaseVersion = !version.endsWith("SNAPSHOT")

Expand Down

0 comments on commit 249fdf9

Please sign in to comment.