From 37e87825d4a9a1e1a5cfb9f189c851b2731c1460 Mon Sep 17 00:00:00 2001 From: Jure <44338+hoornet@users.noreply.github.com> Date: Fri, 10 Apr 2026 20:10:20 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20to=20v0.12.6=20=E2=80=94=20DM=20polish,?= =?UTF-8?q?=20multi-image=20upload=20fix,=20Blossom=20image=20rendering?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 8 ++++++++ PKGBUILD | 2 +- package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 339bdf6..58c283f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,6 +69,14 @@ 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.12.6 — DM Polish & Image Fixes + + - **Clickable links in DMs** — URLs, nostr entities, and images now render properly inside direct messages; images show inline, links open in browser + - **Multi-image upload fix** — selecting multiple images in the article editor now inserts all of them (previously only the last one was kept) + - **Article image lightbox** — clicking a thumbnail in the editor strip opens a full-size lightbox overlay + - **Blossom image rendering** — images served from content-addressed storage (Blossom/NIP-96) with non-standard extensions (`.jp` etc.) now render inline instead of as plain links + - **nostr: entity parsing** — case-insensitive matching for `nostr:` prefix; broader extension support for image URLs + ### v0.12.5 — UI Polish & Consistency - **Comprehensive UI polish** — 14 rounds of systematic fixes across every view: sentence case on all button labels, Unicode ellipsis (…) and × throughout, consistent theme tokens replacing all hard-coded colors diff --git a/PKGBUILD b/PKGBUILD index 7b011cd..922aa20 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: hoornet pkgname=vega-nostr -pkgver=0.12.5 +pkgver=0.12.6 pkgrel=1 pkgdesc="Cross-platform Nostr desktop client with Lightning integration" arch=('x86_64') diff --git a/package.json b/package.json index 6d01be8..0c7f0b9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vega", "private": true, - "version": "0.12.5", + "version": "0.12.6", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e83a50c..f0017c7 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vega" -version = "0.12.5" +version = "0.12.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 f4e4bf4..169374e 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.12.5", + "version": "0.12.6", "identifier": "com.hoornet.vega", "build": { "beforeDevCommand": "npm run dev",