Skip to content

Commit

Permalink
Release 1.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Edvin Syse committed Mar 12, 2017
1 parent 2223099 commit da32d09
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log
All notable changes to this project will be documented in this file.

## [1.0.15-SNAPSHOT]
## [1.0.15]

- `--lingering-update-screen` will keep the update screen active until the primary stage is shown. The default is false, whereas the old behavior was similar to setting it to true.
- Alternative classloader strategy (https://github.com/edvin/fxlauncher/pull/55)
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,9 @@ already in the local cache. With the option ```--stopOnUpdateErrors``` this will
The error will be shown and the launcher will exit.

## Show what's new dialog.
Starting from 1.0.15, you can have fxlauncher show a whats new dialog. This dialog will
only be shown when fxlauncher has to download new files from the server. Fxlauncher will use a `webView` to show it. Specify `--whats-new=filename.html`

Starting from 1.0.15, you can have FXLauncher show a whats new dialog. This dialog will
only be shown when FXLauncher has to download new files from the server. The html content will be shown in a `WebView`. Specify `--whats-new=filename.html`
The file needs to be copied into the jar like so:

```xml
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>no.tornado</groupId>
<artifactId>fxlauncher</artifactId>
<version>1.0.15-SNAPSHOT</version>
<version>1.0.15</version>
<packaging>jar</packaging>
<name>FX Launcher</name>
<description>Auto updating launcher for JavaFX Applications</description>
Expand Down Expand Up @@ -119,7 +119,7 @@
<executions>
<execution>
<id>sign-artifacts</id>
<phase>deploy</phase>
<phase>install</phase>
<goals>
<goal>sign</goal>
</goals>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fxlauncher/CreateManifest.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public static void main(String[] args) throws IOException {
JAXB.marshal(manifest, appPath.resolve("app.xml").toFile());
}

static FXManifest create(URI baseURI, String launchClass, Path appPath) throws IOException {
private static FXManifest create(URI baseURI, String launchClass, Path appPath) throws IOException {
FXManifest manifest = new FXManifest();
manifest.ts = System.currentTimeMillis();
manifest.uri = baseURI;
Expand Down

0 comments on commit da32d09

Please sign in to comment.