Skip to content

Commit 02eeae7

Browse files
committed
Release version 1.0.4
1 parent 415dedc commit 02eeae7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

β€Žbuild.gradle.ktsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "org.scijava"
7-
version = "1.0.4-SNAPSHOT"
7+
version = "1.0.4"
88

99
repositories {
1010
mavenCentral()

β€Ždoc/MACOS.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The next section offers step-by-step instructions for the second path: signing a
8787
6. Run Jaunch's code-signing script:
8888
```shell
8989
export DEV_ID="Penelope Realperson (XY1Q234ABC)"
90-
~/jaunch-1.0.3/bin/sign.sh /path/to/MyApp.app
90+
~/jaunch-1.0.4/bin/sign.sh /path/to/MyApp.app
9191
```
9292
Where your actual `DEV_ID` value is your developer ID info from step 3, and
9393
`/path/to/MyApp.app` is the location of the .app bundle generated in step 1.

β€Ždoc/SETUP.mdβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
1. OPTION 1: Download and unpack the
44
[latest Jaunch release](https://github.com/apposed/jaunch/releases).
5-
The rest of this guide will assume you unpacked the Jaunch v1.0.3
6-
release into your home directory at `~/jaunch-1.0.3`.
5+
The rest of this guide will assume you unpacked the Jaunch v1.0.4
6+
release into your home directory at `~/jaunch-1.0.4`.
77

88
2. OPTION 2: You can [build Jaunch from source](BUILD.md). But if you
99
want launchers for all supported platforms (Linux, macOS, and Windows),
@@ -51,7 +51,7 @@
5151
7. Use Jaunch's app-generation script to copy Jaunch's various bits
5252
into the correct places within your application base directory:
5353
```shell
54-
~/jaunch-1.0.3/bin/appify.sh \
54+
~/jaunch-1.0.4/bin/appify.sh \
5555
--app-exe fizzbuzz \
5656
--app-icon-linux fizzbuzz.svg \
5757
--app-icon-macos fizzbuzz.icns \
@@ -87,14 +87,14 @@ Or maybe you don't, in which case you can ask for help on the
8787
Next steps:
8888

8989
1. Optionally, compress the launcher executables using
90-
`~/jaunch-1.0.3/bin/pack.sh`, which uses [UPX](https://upx.github.io/) to
90+
`~/jaunch-1.0.4/bin/pack.sh`, which uses [UPX](https://upx.github.io/) to
9191
reduce their file sizes. Be warned that while it is nice to reduce Jaunch
9292
to the smallest possible size, we have received reports of Windows
9393
anti-malware tools misidentifying Jaunch binaries as infected by
9494
[various malware](https://github.com/apposed/jaunch/commit/3ecb2a215f6601cd09ef8985597bb1e85ed5e240).
9595
So caveat emptor on the binary shrinking!
9696

9797
2. Code-sign your macOS and/or Windows binaries using
98-
`~/jaunch-1.0.3/bin/sign.sh`. See these guides for detailed instructions:
98+
`~/jaunch-1.0.4/bin/sign.sh`. See these guides for detailed instructions:
9999
- [Code-signing on macOS](MACOS.md#code-signing)
100100
- [Code-signing on Windows](WINDOWS.md#code-signing)

β€Ždoc/WINDOWS.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ The next section offers step-by-step instructions for the second path: re-signin
194194
8. Run Jaunch's code-signing script:
195195
```shell
196196
export THUMBPRINT="effaced0abcdef12345678900987654321fedcba"
197-
~/jaunch-1.0.3/bin/sign.sh /path/to/myapp/*.exe /path/to/myapp/jaunch/*.exe
197+
~/jaunch-1.0.4/bin/sign.sh /path/to/myapp/*.exe /path/to/myapp/jaunch/*.exe
198198
```
199199
Where your actual `THUMBPRINT` value is the one from step 6, and the
200200
`/path/to/...` expressions reference the EXE files constructed in step 1.

0 commit comments

Comments
Β (0)