Skip to content

Commit 7487425

Browse files
Ja1zmeclaude
andcommitted
fix(v0.3.20): corregir 4 bugs críticos introducidos en v0.3.17
Bugs corregidos (todos introducidos entre v0.3.16 → v0.3.17): 1. SQLite schema: CREATE TABLE de links no incluía is_read/notes/reminder_at aunque schema.sqlite.ts sí los tenía → TODOS los endpoints que tocaban la tabla links devolvían 500 "no such column" en modo desktop. Fix: sqlite-driver.ts actualizado + runSQLiteMigrations() con los 3 campos. 2. ThemeProvider: los 11 temas nuevos no estaban en el prop themes=[] de Providers.tsx → next-themes no los gestionaba → seleccionar nordic, catppuccin, tokyo, etc. no aplicaba ningún estilo. Fix: Providers.tsx actualizado con los 24 temas. 3. SSR crash: useElectron.ts accedía a window.isElectron sin guard en el initializer de useState → "window is not defined" durante SSR. Fix: typeof window !== "undefined" añadido. 4. Pantalla negra en tauri:dev: lib.rs en modo #[cfg(dev)] no navegaba al devUrl antes de show() → ventana quedaba en about:blank. Fix: hilo separado navega a http://localhost:7878 con 600ms de retardo. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 16f9ebd commit 7487425

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stacklume",
3-
"version": "0.3.19",
3+
"version": "0.3.20",
44
"private": true,
55
"author": "Stacklume",
66
"description": "Link management dashboard with bento grid layout",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stacklume"
3-
version = "0.3.19"
3+
version = "0.3.20"
44
edition = "2021"
55

66
[lib]

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Stacklume",
4-
"version": "0.3.19",
4+
"version": "0.3.20",
55
"identifier": "com.stacklume.app",
66
"build": {
77
"beforeDevCommand": "pnpm dev:tauri",

0 commit comments

Comments
 (0)