Skip to content

Commit 720c2b3

Browse files
committed
Release version 1.0.3
1 parent 660b7f0 commit 720c2b3

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.3-SNAPSHOT"
7+
version = "1.0.3"
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.0/bin/sign.sh /path/to/MyApp.app
90+
~/jaunch-1.0.3/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. 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.2
6-
release into your home directory at `~/jaunch-1.0.2`.
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`.
77

88
2. Alternately, 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.2/bin/appify.sh \
54+
~/jaunch-1.0.3/bin/appify.sh \
5555
--app-exe fizzbuzz \
5656
--app-icon-linux fizzbuzz.svg \
5757
--app-icon-macos fizzbuzz.icns \
@@ -83,14 +83,14 @@ Or maybe you don't, in which case you can ask for help on the
8383
Next steps:
8484

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

9393
2. Code-sign your macOS and/or Windows binaries using
94-
`~/jaunch-1.0.2/bin/sign.sh`. See these guides for detailed instructions:
94+
`~/jaunch-1.0.3/bin/sign.sh`. See these guides for detailed instructions:
9595
- [Code-signing on macOS](MACOS.md#code-signing)
9696
- [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.0/bin/sign.sh /path/to/myapp/*.exe /path/to/myapp/jaunch/*.exe
197+
~/jaunch-1.0.3/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)