Bump to v0.9.11 — notification cleanup, bookmark fixes

Follower notifications moved to Follows-only, deduped by pubkey.
Article bookmarks now appear under Articles tab. Updated docs.
This commit is contained in:
Jure
2026-03-30 08:32:28 +02:00
parent a507841292
commit 1d86023779
7 changed files with 18 additions and 12 deletions

View File

@@ -69,13 +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.
### New in v0.9.10Instant Everything ### New in v0.9.11Notifications & Bookmarks Polish
- **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) - **Follower notifications cleaned up** — followers no longer appear in the Notifications list (they only show in the Follows badge + OS notification); no more confusing "click a contact list" experience
- **SQLite-backed bookmarks cache** — bookmarked notes load instantly from DB; relay fetch fills in any new additions - **Follower OS notification dedup** — fixed repeated notifications for the same person (kind 3 replaceable event IDs change on every contact list update)
- **SQLite-backed articles cache** — articles feed (latest tab) loads instantly from DB cache - **Article bookmarks fixed** — articles now correctly appear under the Articles tab in Bookmarks, not Notes
- **Instant own-profile load** — sidebar badge shows your name/picture immediately from DB cache, no more raw npub on slow relays - **Notification dedup** — kind 3 follower events deduplicated by pubkey in the notification store
- **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.10 — Instant Everything
- SQLite-backed followers, bookmarks, and articles cache; instant own-profile load; retry-on-empty for followers, articles, hashtags
### Previous: v0.9.9 — Speed, Stability & Linux Fix ### 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 - Instant thread loading, Linux/Wayland image upload fix, trending feed reliability, notification retry, upload service scope fix

View File

@@ -156,6 +156,11 @@ CI triggers on the tag and builds all three platforms (Ubuntu, Windows, macOS AR
- **Font size presets** — Small/Normal/Large/Extra Large; CSS zoom scaling on document root; persisted to localStorage - **Font size presets** — Small/Normal/Large/Extra Large; CSS zoom scaling on document root; persisted to localStorage
- **Web of Trust** — Vertex DVM integration (kind 5312→6312); personalized "Followed by people you trust" on profiles with clickable follower avatars - **Web of Trust** — Vertex DVM integration (kind 5312→6312); personalized "Followed by people you trust" on profiles with clickable follower avatars
- **SQLite-backed notifications** — instant load on startup from local cache; relay diff merged in background; read state persists in DB across restarts - **SQLite-backed notifications** — instant load on startup from local cache; relay diff merged in background; read state persists in DB across restarts
- **SQLite-backed followers cache** — instant load from DB, relay results merged in background; follower count only grows (never lost to partial relay results)
- **SQLite-backed bookmarks cache** — bookmarked notes load instantly from DB; relay fetch fills in any new additions; articles auto-classified to correct tab
- **SQLite-backed articles cache** — articles feed (latest tab) loads instantly from DB
- **Instant own-profile load** — sidebar badge shows name/picture from DB cache immediately, no raw npub on slow relays
- **Retry-on-empty pattern** — followers, profile notes/articles, hashtag feeds retry once after 3s if relays return empty
**Not yet implemented:** **Not yet implemented:**
- NIP-96 file storage - NIP-96 file storage

View File

@@ -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.10 pkgver=0.9.11
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": "wrystr", "name": "wrystr",
"private": true, "private": true,
"version": "0.9.10", "version": "0.9.11",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

2
src-tauri/Cargo.lock generated
View File

@@ -6157,7 +6157,7 @@ dependencies = [
[[package]] [[package]]
name = "wrystr" name = "wrystr"
version = "0.9.10" version = "0.9.11"
dependencies = [ dependencies = [
"keyring", "keyring",
"rusqlite", "rusqlite",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "wrystr" name = "wrystr"
version = "0.9.10" version = "0.9.11"
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": "Wrystr", "productName": "Wrystr",
"version": "0.9.10", "version": "0.9.11",
"identifier": "com.hoornet.wrystr", "identifier": "com.hoornet.wrystr",
"build": { "build": {
"beforeDevCommand": "npm run dev", "beforeDevCommand": "npm run dev",