mirror of
https://github.com/hoornet/vega.git
synced 2026-05-12 12:58:37 -07:00
Bump to v0.9.10 — instant everything via SQLite caching
Followers, bookmarks, articles feed, and own profile all load instantly from SQLite cache. Relay data merges in background.
This commit is contained in:
16
.github/workflows/release.yml
vendored
16
.github/workflows/release.yml
vendored
@@ -69,12 +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.
|
> **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.9.9 — Speed, Stability & Linux Fix
|
### New in v0.9.10 — Instant Everything
|
||||||
- **Instant thread loading** — clicked note renders immediately; ancestors and replies load in background; timeouts cut in half
|
- **SQLite-backed followers cache** — followers list loads instantly from local DB; relay results merged in background; follower count only grows (never lost to partial relay results)
|
||||||
- **Image upload fixed on Linux/Wayland** — manual multipart body construction bypasses WebKitGTK FormData bug
|
- **SQLite-backed bookmarks cache** — bookmarked notes load instantly from DB; relay fetch fills in any new additions
|
||||||
- **Trending feed reliability** — notes always appear even when engagement data times out
|
- **SQLite-backed articles cache** — articles feed (latest tab) loads instantly from DB cache
|
||||||
- **Notification retry** — longer timeout for mention queries; automatic retry on empty results
|
- **Instant own-profile load** — sidebar badge shows your name/picture immediately from DB cache, no more raw npub on slow relays
|
||||||
- **Upload service scope** — void.cat and nostrimg.com fallbacks now properly allowed
|
- **Followers fetch timeout** — increased from 8s to 15s for slow `#p` tag queries on kind 3
|
||||||
|
- **Retry-on-empty** — followers, profile articles, and hashtag feeds retry once after 3s if relays return empty
|
||||||
|
|
||||||
|
### Previous: v0.9.9 — Speed, Stability & Linux Fix
|
||||||
|
- Instant thread loading, Linux/Wayland image upload fix, trending feed reliability, notification retry, upload service scope fix
|
||||||
|
|
||||||
### Previous: v0.9.8 — Web of Trust & Instant Notifications
|
### Previous: v0.9.8 — Web of Trust & Instant Notifications
|
||||||
- Web of Trust on profiles (Vertex DVM), SQLite-backed notification cache, profile notes retry, reaction queue fix
|
- Web of Trust on profiles (Vertex DVM), SQLite-backed notification cache, profile notes retry, reaction queue fix
|
||||||
|
|||||||
2
PKGBUILD
2
PKGBUILD
@@ -1,6 +1,6 @@
|
|||||||
# Maintainer: hoornet <hoornet@users.noreply.github.com>
|
# Maintainer: hoornet <hoornet@users.noreply.github.com>
|
||||||
pkgname=wrystr
|
pkgname=wrystr
|
||||||
pkgver=0.9.9
|
pkgver=0.9.10
|
||||||
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')
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "wrystr",
|
"name": "wrystr",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.9.9",
|
"version": "0.9.10",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@@ -6157,7 +6157,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wrystr"
|
name = "wrystr"
|
||||||
version = "0.9.9"
|
version = "0.9.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"keyring",
|
"keyring",
|
||||||
"rusqlite",
|
"rusqlite",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "wrystr"
|
name = "wrystr"
|
||||||
version = "0.9.9"
|
version = "0.9.10"
|
||||||
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": "Wrystr",
|
"productName": "Wrystr",
|
||||||
"version": "0.9.9",
|
"version": "0.9.10",
|
||||||
"identifier": "com.hoornet.wrystr",
|
"identifier": "com.hoornet.wrystr",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "npm run dev",
|
"beforeDevCommand": "npm run dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user