1848d0c796
Infrastructure (P0): deployed nostr-rs-relay (wss://nrelay.us-ea.st) and the goblin-nip05d NIP-05 service (goblin.st) on us-ea.st with TLS + DNS. Brand & theme (P1): Goblin name/icon/data-dir (.goblin); three-theme token system (light/dark/yellow) in gui/theme.rs with colors.rs remapped as a shim; Geist + Geist Mono fonts; AppConfig theme/density/last_wallet_id. Nostr subsystem (P2-P3): src/nostr/ with NIP-06 identity (seed-derived, NIP-49 encrypted), per-wallet rkv archive, guarded ingest policy (never auto-pays Invoice1; binds replies to the stored counterparty npub), NIP-17 send/receive pipeline, NIP-05 client. Relay traffic routed over the embedded arti Tor client via a custom WebSocketTransport. Wired into Wallet lifecycle and the task handler. 26 unit tests pass. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
27 lines
715 B
Bash
Executable File
27 lines
715 B
Bash
Executable File
#!/bin/bash
|
|
|
|
case $2 in
|
|
x86_64|arm)
|
|
;;
|
|
*)
|
|
echo "Usage: release_linux.sh [platform] [version]\n - platform: 'x86_64', 'arm'" >&2
|
|
exit 1
|
|
esac
|
|
|
|
# Setup build directory
|
|
BASEDIR=$(cd $(dirname $0) && pwd)
|
|
cd ${BASEDIR}
|
|
cd ..
|
|
|
|
# Setup platform argument
|
|
[[ $2 == "x86_64" ]] && arch+=(x86_64-unknown-linux-gnu)
|
|
[[ $2 == "arm" ]] && arch+=(aarch64-unknown-linux-gnu)
|
|
|
|
rustup target add ${arch}
|
|
cargo install cargo-zigbuild
|
|
cargo zigbuild --release --target ${arch}
|
|
|
|
# Create AppImage with https://github.com/AppImage/appimagetool
|
|
cp target/${arch}/release/goblin linux/Goblin.AppDir/AppRun
|
|
rm target/${arch}/release/*.AppImage
|
|
appimagetool linux/Goblin.AppDir target/${arch}/release/goblin-v$2-linux-$1.AppImage |