Bump to v0.12.6 — DM polish, multi-image upload fix, Blossom image rendering

This commit is contained in:
Jure
2026-04-10 20:10:20 +02:00
parent 214c42b9e5
commit 37e87825d4
5 changed files with 12 additions and 4 deletions

View File

@@ -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. > **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 ### 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 - **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

View File

@@ -1,6 +1,6 @@
# Maintainer: hoornet <hoornet@users.noreply.github.com> # Maintainer: hoornet <hoornet@users.noreply.github.com>
pkgname=vega-nostr pkgname=vega-nostr
pkgver=0.12.5 pkgver=0.12.6
pkgrel=1 pkgrel=1
pkgdesc="Cross-platform Nostr desktop client with Lightning integration" pkgdesc="Cross-platform Nostr desktop client with Lightning integration"
arch=('x86_64') arch=('x86_64')

View File

@@ -1,7 +1,7 @@
{ {
"name": "vega", "name": "vega",
"private": true, "private": true,
"version": "0.12.5", "version": "0.12.6",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "vega" name = "vega"
version = "0.12.5" version = "0.12.6"
description = "Cross-platform Nostr desktop client with Lightning integration" description = "Cross-platform Nostr desktop client with Lightning integration"
authors = ["hoornet"] authors = ["hoornet"]
edition = "2021" edition = "2021"

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "Vega", "productName": "Vega",
"version": "0.12.5", "version": "0.12.6",
"identifier": "com.hoornet.vega", "identifier": "com.hoornet.vega",
"build": { "build": {
"beforeDevCommand": "npm run dev", "beforeDevCommand": "npm run dev",