-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreate_release.sh
More file actions
executable file
·46 lines (36 loc) · 1.5 KB
/
Copy pathcreate_release.sh
File metadata and controls
executable file
·46 lines (36 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
# Run this once to create the GitHub release and upload the compiled binaries.
# Usage: ./create_release.sh
set -e
cd "$(dirname "$0")"
gh release create v1.5_1.85.3_Linux_macOS \
--title "MorseRunner v1.5_1.85.3 Linux & macOS" \
--notes "Ready-to-run builds for macOS Apple Silicon, Linux x86_64, and Linux ARM64.
## What's New
- Linux binaries now distributed as self-contained AppImages (no installation or sudo needed)
- Linux x86_64 and ARM64 support (PulseAudio + LCL GTK2)
- macOS Apple Silicon (CoreAudio + LCL Cocoa)
- Unified codebase for all three platforms
## Installation, Option A — Pre-compiled Binary
| File | Platform |
|---|---|
| \`MorseRunner_macOS_arm64.zip\` | macOS Apple Silicon |
| \`MorseRunner-x86_64.AppImage\` | Linux x86_64 |
| \`MorseRunner-aarch64.AppImage\` | Linux ARM64 |
**macOS:** Unzip and double-click \`MorseRunner.app\`. If blocked, right-click → Open.
**Linux (AppImage — no install needed):**
\`\`\`
chmod +x MorseRunner-x86_64.AppImage # or MorseRunner-aarch64.AppImage
./MorseRunner-x86_64.AppImage
\`\`\`
> If you see a FUSE error, run: \`sudo apt install libfuse2\`
## Installation, Option B — Build from Source
See the README for full build instructions.
## Credits
Original MorseRunner by Alex Shovkoplyas VE3NEA.
Windows version further developed by Mike W7SST (github.com/w7sst/MorseRunner).
Linux/macOS port by Nian WU6P.
73" \
compiled/MorseRunner_macOS_arm64.zip \
compiled/MorseRunner-x86_64.AppImage \
compiled/MorseRunner-aarch64.AppImage