Bump to v0.13.1 — article reader scroll lock fix + click-to-zoom

This commit is contained in:
Jure
2026-05-24 20:15:10 +02:00
parent 94f610c2d3
commit d80233e4d9
6 changed files with 12 additions and 5 deletions
+7
View File
@@ -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.
+1 -1
View File
@@ -1,6 +1,6 @@
# Maintainer: hoornet <hoornet@users.noreply.github.com>
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')
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "vega",
"private": true,
"version": "0.13.0",
"version": "0.13.1",
"type": "module",
"scripts": {
"dev": "vite",
+1 -1
View File
@@ -5429,7 +5429,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "vega"
version = "0.13.0"
version = "0.13.1"
dependencies = [
"futures-util",
"hex",
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -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",