Bump to v0.2.7 — multi-account persistence fix

This commit is contained in:
Jure
2026-03-13 09:04:36 +01:00
parent 56cf0bae4d
commit 8e0d92c893
5 changed files with 8 additions and 4 deletions

View File

@@ -66,6 +66,10 @@ 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.2.7
- **Fix: multi-account persistence** — all nsec accounts are now restored from OS keychain on startup; account switching no longer gets stuck after restart
- **Fix: account switcher** — shows re-login prompt when keychain entry is missing instead of silently going read-only
### New in v0.2.6
- **Fix: auto-updater** — added `createUpdaterArtifacts: true` + regenerated signing key; `.sig` files and `latest.json` are now correctly produced by CI

View File

@@ -1,6 +1,6 @@
# Maintainer: hoornet <harpos@getalby.com>
pkgname=wrystr
pkgver=0.2.6
pkgver=0.2.7
pkgrel=1
pkgdesc="Cross-platform Nostr desktop client with Lightning integration"
arch=('x86_64')

View File

@@ -1,7 +1,7 @@
{
"name": "wrystr",
"private": true,
"version": "0.2.6",
"version": "0.2.7",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -1,6 +1,6 @@
[package]
name = "wrystr"
version = "0.2.6"
version = "0.2.7"
description = "Cross-platform Nostr desktop client with Lightning integration"
authors = ["hoornet"]
edition = "2021"

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Wrystr",
"version": "0.2.6",
"version": "0.2.7",
"identifier": "com.hoornet.wrystr",
"build": {
"beforeDevCommand": "npm run dev",