Bump to v0.13.2 — mute-aware search, collapsing compose box, resizable sidebar, update-banner changelog

- Search respects the mute list (#7)
- Compose box collapses to a single line when idle (#6)
- Resizable left sidebar (#6)
- Update banner shows the new version's changelog
- Build: Vite 8 migration, dropped vulnerable esbuild dev dependency
This commit is contained in:
Jure
2026-06-15 21:45:18 +02:00
parent 08f231fb7e
commit e2f98e0d7e
6 changed files with 15 additions and 5 deletions
+10
View File
@@ -69,6 +69,16 @@ 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.2 — Mute-aware search, a tidier compose box & a resizable sidebar
Three community-requested improvements plus a couple of nice touches.
- **Search now respects your mute list.** Notes, articles, and people from muted accounts — and posts matching your muted keywords — no longer show up in search results, just like in the feed. (#7)
- **The compose box collapses when idle.** "What's on your mind?" now sits as a single line until you click it, then expands to full height with the toolbar — reclaiming space at the top of the feed. (#6)
- **The left sidebar is resizable.** Drag its right edge to set the width; double-click to reset. Your choice is remembered between sessions. (#6)
- **The update banner shows what's new.** When an update is available, click "What's new" to read that version's changes inline, with a link to the full changelog on GitHub.
- **Under the hood:** migrated the build to Vite 8 and dropped a vulnerable `esbuild` dev-server dependency.
### v0.13.1 — Article reader: scroll lock fix + click-to-zoom
A targeted fix for a long-standing article-reader bug on Linux.
+1 -1
View File
@@ -1,6 +1,6 @@
# Maintainer: hoornet <hoornet@users.noreply.github.com>
pkgname=vega-nostr
pkgver=0.13.1
pkgver=0.13.2
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.1",
"version": "0.13.2",
"type": "module",
"scripts": {
"dev": "vite",
+1 -1
View File
@@ -5429,7 +5429,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "vega"
version = "0.13.1"
version = "0.13.2"
dependencies = [
"futures-util",
"hex",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "vega"
version = "0.13.1"
version = "0.13.2"
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.1",
"version": "0.13.2",
"identifier": "com.hoornet.vega",
"build": {
"beforeDevCommand": "npm run dev",