diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 38085d7..42b55c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,6 +64,12 @@ jobs: Cross-platform Nostr desktop client — polished UI, deep Lightning integration, first-class long-form writing. + ### New in 0.1.4 + - **Sidebar** — explicit ‹/› collapse toggle always visible; collapsed state persisted across restarts; nav icons + tooltips in collapsed mode + - **Profile image upload** — "upload" button next to picture/banner fields; uploads to nostr.build, auto-fills URL + - **NIP-05 live verification** — checks your domain's /.well-known/nostr.json in real time; shows ✓ verified / ✗ mismatch / ✗ not found + - **Search improvements** — detects which relays support NIP-50 full-text; zero-results state shows relay count and one-click "Search #hashtag" fallback; tabs always shown after search + ### New in 0.1.3 - **OS keychain** — nsec stored securely; sessions survive restarts (macOS Keychain, Windows Credential Manager, Linux Secret Service) - **Multi-account switcher** — save multiple identities, switch instantly from the sidebar footer diff --git a/package.json b/package.json index dddf70e..a521d9a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "wrystr", "private": true, - "version": "0.1.3", + "version": "0.1.4", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b4a292f..c87417d 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wrystr" -version = "0.1.3" +version = "0.1.4" 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 22c3203..dc4517b 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": "Wrystr", - "version": "0.1.3", + "version": "0.1.4", "identifier": "com.hoornet.wrystr", "build": { "beforeDevCommand": "npm run dev",