|
1 | 1 | Release Notes |
2 | 2 | ============= |
3 | 3 |
|
| 4 | +# Version 8.8.0 (08-Februrary-2017) |
| 5 | + |
| 6 | +New: |
| 7 | +* `nativeReleaseVersion` will now get sanitized, anything than numbers and dots are removed, this ensures compatibility with the used bundler toolsets |
| 8 | +* when using `noBlobSigning = true` (which will get dropped with JDK9) the `jarsigner` executable will be used, but it was lacking proper customization, therefor a new property was introduced `additionalJarsignerParameters` which will be appended to all other stuff on the jarsigner-command |
| 9 | +* added ability to fail the build on errors while bundling, just set `failOnError = true` inside the jfx-block |
| 10 | +* when having not specified any bundler, it now is possible to remove that JNLP-warning regarding "No OutFile Specificed", which makes that bundler being skipped, just set `skipJNLP = true` inside the jfx-block |
| 11 | +* added property to skip `nativeReleaseVersion` rewriting, just set `skipNativeVersionNumberSanitizing = true` inside the jfx-block |
| 12 | +* added `skipCopyingDependencies` to make it possible to NOT copying dependencies, but they are added to the classpath inside the manifest like normal |
| 13 | +* added `fixedManifestClasspath` for setting the classpath-entry inside the generated manifest-file in the main jfx-jar, this is already possible for secondary launchers by setting `classpath` within the configuration-block of the secondary launcher |
| 14 | +* added `useLibFolderContentForManifestClasspath` for creating the manifest-entriy for the classpath, depending on the content of the lib-folder, makes it possible to have files not being inside dependencies being present there (which got copied beforehand) |
| 15 | + |
| 16 | +Changes: |
| 17 | +* reimplemented `additionalBundlerResources`, now searching for folders with the name of the used bundler, makes it possible to adjust nearly all bundlers now (for Mac a special replacement-class was created, as the default one did not provide any way to add more files) |
| 18 | + |
| 19 | +Enhancements: |
| 20 | +* updated all example-projects to use a different variable-name of the "current" plugin-version (fixes issue #40) |
| 21 | +* added warning about slow performance (even on SSD) when having ext4/btrfs filesystems using "deb"-bundler (fixes issue #41) |
| 22 | +* added warning about missing "jnlp.outfile"-property inside bundleArguments when using JNLP-bundler (from issue #42) |
| 23 | +* added ability to change name of the lib-folder by setting `libFolderName` |
| 24 | + |
| 25 | +Bugfixes: |
| 26 | +* added support for Gradle 3.3 (fixes issue #52) |
| 27 | + |
| 28 | + |
| 29 | + |
4 | 30 | # Version 8.7.0 (09-September-2016) |
5 | 31 |
|
6 | 32 | New: |
@@ -150,4 +176,4 @@ There will be some examples with the next updates/releases, but this is a spare- |
150 | 176 |
|
151 | 177 | # Version 1.0 (16-Jan-2016) Initial Release |
152 | 178 |
|
153 | | -This is the very first release of my javafx-gradle-plugin, and my first official gradle-plugin too. |
| 179 | +This is the very first release of my javafx-gradle-plugin, and my first official gradle-plugin too. |
0 commit comments