diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e62a1f4..7b49738 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,9 +69,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.9.5 — Large Font Fix - Fixed layout overflow when using Large or Extra Large font on Windows. - - **Flex-wrap everywhere** — feed header, note card headers, note actions, compose box, settings theme grid, font size presets, media feed tabs, and profile header buttons all wrap gracefully instead of overflowing off-screen at high zoom levels + ### New in v0.9.6 — Font Size Fix + Fixed font scaling breaking layouts, especially on Windows. + - **Content-only zoom** — font size scaling now applies only to the content area, not the sidebar; sidebar stays consistent and readable at all sizes + - **Flex-wrap everywhere** — feed header, note card headers, note actions, compose box, settings theme grid, font size presets, media feed tabs, and profile header buttons all wrap gracefully at large zoom - **Themes grid** — switched from fixed 4-column grid to responsive wrapping layout ### Previous: v0.9.4 — Search, Follows, Editor & Polish diff --git a/PKGBUILD b/PKGBUILD index d7f577c..4cae22e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: hoornet pkgname=wrystr -pkgver=0.9.5 +pkgver=0.9.6 pkgrel=1 pkgdesc="Cross-platform Nostr desktop client with Lightning integration" arch=('x86_64') diff --git a/package.json b/package.json index b812b65..f376a33 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "wrystr", "private": true, - "version": "0.9.5", + "version": "0.9.6", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index cc29897..e17158e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wrystr" -version = "0.9.5" +version = "0.9.6" 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 f74afb6..2b61b73 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.9.5", + "version": "0.9.6", "identifier": "com.hoornet.wrystr", "build": { "beforeDevCommand": "npm run dev",