diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be51073..457a5f5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,7 +69,11 @@ jobs: > **Windows note:** The installer is not yet code-signed. Windows SmartScreen will show an "Unknown publisher" warning — click "More info → Run anyway" to install. - ### New in v0.10.0 — Renamed to Vega + UX Improvements + ### New in v0.10.1 — Search Reliability + - **Search resilience** — each search relay (relay.nostr.band, search.nos.today, nostr.wine) now queried independently; a dead relay no longer blocks results from the others + - **nostr: URI prefix** — pasting `nostr:nevent1...` or `nostr:npub1...` share links in search now works (strips NIP-21 prefix) + + ### v0.10.0 — Renamed to Vega + UX Improvements - **Renamed from Wrystr to Vega** — named after Jurij Vega (1754–1802), Slovenian mathematician and artillery officer. Fresh identity, same mission: a desktop Nostr client built for writers. - **Paste nevent/note1/naddr in search** — pasting a Nostr event link navigates directly to the note or article (GitHub #2) - **Copy npub from profiles** — click the pubkey on any profile to copy the full npub to clipboard (GitHub #2) diff --git a/PKGBUILD b/PKGBUILD index e5b0d13..b6f00f2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: hoornet pkgname=vega-nostr -pkgver=0.10.0 +pkgver=0.10.1 pkgrel=1 pkgdesc="Cross-platform Nostr desktop client with Lightning integration" arch=('x86_64') diff --git a/package.json b/package.json index bdee774..3817517 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vega", "private": true, - "version": "0.10.0", + "version": "0.10.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index eae96fa..b52c201 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vega" -version = "0.10.0" +version = "0.10.1" description = "Cross-platform Nostr desktop client with Lightning integration" authors = ["hoornet"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 6235151..52d43f2 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Vega", - "version": "0.10.0", + "version": "0.10.1", "identifier": "com.hoornet.vega", "build": { "beforeDevCommand": "npm run dev",