diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bd2ebe1..0f3c5be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,6 +66,10 @@ 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.3.1 + - **Feed tab persists across navigation** — back button now returns to the correct tab (Global/Following) instead of always resetting to Global + - **Available on AUR** — Arch/Manjaro users can install with `yay -S wrystr-git` + ### New in v0.3.0 - **Instant feedback** — posted notes appear in feed immediately; thread replies show up without waiting for relay - **Image paste fix** — uploads now use Tauri HTTP plugin, fixing "Failed to fetch" on Windows diff --git a/PKGBUILD b/PKGBUILD index e84b2e4..719c1de 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: hoornet pkgname=wrystr -pkgver=0.3.0 +pkgver=0.3.1 pkgrel=1 pkgdesc="Cross-platform Nostr desktop client with Lightning integration" arch=('x86_64') diff --git a/package.json b/package.json index d0b295e..4d4df98 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "wrystr", "private": true, - "version": "0.3.0", + "version": "0.3.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 0d1052e..f84a20f 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wrystr" -version = "0.3.0" +version = "0.3.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 9a8baa3..fce5f3c 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.3.0", + "version": "0.3.1", "identifier": "com.hoornet.wrystr", "build": { "beforeDevCommand": "npm run dev",