Skip to content

Commit 8e38d82

Browse files
committed
Release version 2.0.0
1 parent e47af9a commit 8e38d82

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.apposed"
7-
version = "2.0.0-SNAPSHOT"
7+
version = "2.0.0"
88

99
repositories {
1010
mavenCentral()

β€Ždoc/MACOS.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ The next section offers step-by-step instructions for the second path: signing a
164164
6. Run Jaunch's code-signing script:
165165
```shell
166166
export DEV_ID="Penelope Realperson (XY1Q234ABC)"
167-
~/jaunch-1.0.4/bin/sign.sh /path/to/MyApp.app
167+
~/jaunch-2.0.0/bin/sign.sh /path/to/MyApp.app
168168
```
169169
Where your actual `DEV_ID` value is your developer ID info from step 3, and
170170
`/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.4
6-
release into your home directory at `~/jaunch-1.0.4`.
5+
The rest of this guide will assume you unpacked the Jaunch v2.0.0
6+
release into your home directory at `~/jaunch-2.0.0`.
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.4/bin/appify.sh \
54+
~/jaunch-2.0.0/bin/appify.sh \
5555
--app-exe fizzbuzz \
5656
--app-icon-linux fizzbuzz.svg \
5757
--app-icon-macos fizzbuzz.icns \
@@ -88,14 +88,14 @@ Or maybe you don't, in which case you can ask for help on the
8888
Next steps:
8989

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

9898
2. Code-sign your macOS and/or Windows binaries using
99-
`~/jaunch-1.0.4/bin/sign.sh`. See these guides for detailed instructions:
99+
`~/jaunch-2.0.0/bin/sign.sh`. See these guides for detailed instructions:
100100
- [Code-signing on macOS](MACOS.md#code-signing)
101101
- [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.4/bin/sign.sh /path/to/myapp/*.exe /path/to/myapp/jaunch/*.exe
197+
~/jaunch-2.0.0/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)