From 5d78aac0911ceba3637cbe48651cbae50035874b Mon Sep 17 00:00:00 2001 From: Jure <44338+hoornet@users.noreply.github.com> Date: Sat, 4 Apr 2026 21:09:41 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20to=20v0.12.1=20=E2=80=94=20Media=20feed,?= =?UTF-8?q?=20Trending=20retry,=20read-only=20banner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 8 +++++++- PKGBUILD | 2 +- README.md | 1 + package.json | 2 +- src-tauri/Cargo.lock | 6 +++--- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 7 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe428ea..6b35308 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,7 +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. - ### New in v0.12.0 — Podcasts & Value 4 Value + ### v0.12.1 — Fixes + - **Fix empty Media feed** — widened time window from 2h to 24h so media notes actually appear + - **Fix empty Trending feed** — retry once after 3s when relays return nothing on startup + - **Read-only mode banner** — persistent amber warning at top of app when not signed in + - **Larger account badge** — avatar and name more prominent when logged in + + ### v0.12.0 — Podcasts & Value 4 Value - **Built-in podcast player** — search and play podcasts via Fountain.fm with Podcast Index enrichment - **V4V streaming** — stream sats per minute to podcast creators via Lightning (keysend + LNURL-pay) - **Auto-streaming** — enable once, V4V starts automatically on every supported episode at your chosen rate diff --git a/PKGBUILD b/PKGBUILD index 1ab3aac..9b35d45 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: hoornet pkgname=vega-nostr -pkgver=0.12.0 +pkgver=0.12.1 pkgrel=1 pkgdesc="Cross-platform Nostr desktop client with Lightning integration" arch=('x86_64') diff --git a/README.md b/README.md index 040d964..d1849c5 100644 --- a/README.md +++ b/README.md @@ -126,6 +126,7 @@ sudo dnf install gstreamer1-plugins-base gstreamer1-plugins-good gstreamer1-liba - **Media pause on navigation** — video and audio in feed automatically pause when you navigate to another view - **Accessibility** — WCAG AA contrast compliance, ARIA labels, reduced motion support - **Podcast player stability** — 15s loading timeout with user-friendly error messages; automatic V4V stop on audio failure +- **Read-only mode banner** — persistent top-of-app warning when not signed in, so you always know you're in read-only mode ## Supported NIPs diff --git a/package.json b/package.json index 8ea911d..497fc11 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vega", "private": true, - "version": "0.12.0", + "version": "0.12.1", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 2566a0a..00c9265 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2440,9 +2440,9 @@ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" [[package]] name = "notify-rust" -version = "4.13.0" +version = "4.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9612133a804b4bc753f9f806de73fc9730b7694eb1bada2dc252cce022638be8" +checksum = "7d782ebad628d1a24303e9a0aac4656115ceb482ba56c66c4af3d85530852d9a" dependencies = [ "futures-lite", "log", @@ -5320,7 +5320,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "vega" -version = "0.12.0" +version = "0.12.1" dependencies = [ "futures-util", "hex", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 95c9a0d..0e2661e 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vega" -version = "0.12.0" +version = "0.12.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 225894f..681c56e 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.0", + "version": "0.12.1", "identifier": "com.hoornet.vega", "build": { "beforeDevCommand": "npm run dev",