From d80233e4d9d81f3f069e96ae61098116d0361fb1 Mon Sep 17 00:00:00 2001 From: Jure <44338+hoornet@users.noreply.github.com> Date: Sun, 24 May 2026 20:15:10 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20to=20v0.13.1=20=E2=80=94=20article=20rea?= =?UTF-8?q?der=20scroll=20lock=20fix=20+=20click-to-zoom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 7 +++++++ PKGBUILD | 2 +- package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 6 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3eedd3b..2076636 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,6 +69,13 @@ 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. + ### v0.13.1 — Article reader: scroll lock fix + click-to-zoom + + A targeted fix for a long-standing article-reader bug on Linux. + + - **Scroll lock fixed.** Articles with body images would refuse to scroll past a certain point on Linux (WebKitGTK). Body images now sit in a reserved layout box that survives WebKit's image re-decode loop, so the article scrolls all the way through. + - **Click any body image to open it full-size.** The existing image lightbox is now wired up to article body images — click to enlarge, click again (or press Escape, or hit the ✕) to close. Arrow keys navigate between images in the article. + ### v0.13.0 — Visual overhaul: themes, readability & accessibility A broad visual pass — typography, colour, and icons reworked across the app — plus two new accessibility features and a round of feed fixes. diff --git a/PKGBUILD b/PKGBUILD index 3f7e791..3b773b2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: hoornet pkgname=vega-nostr -pkgver=0.13.0 +pkgver=0.13.1 pkgrel=1 pkgdesc="Cross-platform Nostr desktop client with Lightning integration" arch=('x86_64') diff --git a/package.json b/package.json index 8867e13..6f0d68f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vega", "private": true, - "version": "0.13.0", + "version": "0.13.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 1c9a98c..3ddb7cf 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -5429,7 +5429,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "vega" -version = "0.13.0" +version = "0.13.1" dependencies = [ "futures-util", "hex", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 1092066..6571bd1 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vega" -version = "0.13.0" +version = "0.13.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 52d930c..b8611f2 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.13.0", + "version": "0.13.1", "identifier": "com.hoornet.vega", "build": { "beforeDevCommand": "npm run dev",