mirror of
https://github.com/hoornet/vega.git
synced 2026-05-14 03:58:36 -07:00
Bump to v0.12.1 — Media feed, Trending retry, read-only banner
This commit is contained in:
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@@ -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.
|
> **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
|
- **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)
|
- **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
|
- **Auto-streaming** — enable once, V4V starts automatically on every supported episode at your chosen rate
|
||||||
|
|||||||
2
PKGBUILD
2
PKGBUILD
@@ -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.0
|
pkgver=0.12.1
|
||||||
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')
|
||||||
|
|||||||
@@ -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
|
- **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
|
- **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
|
- **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
|
## Supported NIPs
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "vega",
|
"name": "vega",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.12.0",
|
"version": "0.12.1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
6
src-tauri/Cargo.lock
generated
6
src-tauri/Cargo.lock
generated
@@ -2440,9 +2440,9 @@ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "notify-rust"
|
name = "notify-rust"
|
||||||
version = "4.13.0"
|
version = "4.13.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "9612133a804b4bc753f9f806de73fc9730b7694eb1bada2dc252cce022638be8"
|
checksum = "7d782ebad628d1a24303e9a0aac4656115ceb482ba56c66c4af3d85530852d9a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-lite",
|
"futures-lite",
|
||||||
"log",
|
"log",
|
||||||
@@ -5320,7 +5320,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "vega"
|
name = "vega"
|
||||||
version = "0.12.0"
|
version = "0.12.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"hex",
|
"hex",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "vega"
|
name = "vega"
|
||||||
version = "0.12.0"
|
version = "0.12.1"
|
||||||
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"
|
||||||
|
|||||||
@@ -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.0",
|
"version": "0.12.1",
|
||||||
"identifier": "com.hoornet.vega",
|
"identifier": "com.hoornet.vega",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "npm run dev",
|
"beforeDevCommand": "npm run dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user