From 6f0c38e6611c752df1a2794641525223f1edb68c Mon Sep 17 00:00:00 2001 From: Jheison Martinez Bolivar Date: Wed, 15 Jul 2026 09:25:28 -0500 Subject: [PATCH 1/2] fix: serve font files before SPA catch-all redirect The catch-all /* redirect was serving index.html for /fonts/*.ttf requests, preventing the DejaVu Sans Mono font from loading. Add /fonts/* rule before the catch-all to serve font files directly. --- public/_redirects | 1 + 1 file changed, 1 insertion(+) diff --git a/public/_redirects b/public/_redirects index bbb3e7a..9f357c0 100644 --- a/public/_redirects +++ b/public/_redirects @@ -1 +1,2 @@ +/fonts/* /fonts/:splat 200 /* /index.html 200 From af4d2e76642790cbbe48124d724578a6d822c01a Mon Sep 17 00:00:00 2001 From: Jheison Martinez Bolivar Date: Wed, 15 Jul 2026 09:27:10 -0500 Subject: [PATCH 2/2] chore: bump version to 0.1.3 --- package-lock.json | 4 ++-- package.json | 2 +- src/pages/about.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 0620779..44b1be1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@univerlab/quorum", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@univerlab/quorum", - "version": "0.1.2", + "version": "0.1.3", "license": "MIT", "dependencies": { "trystero": "^0.21.0" diff --git a/package.json b/package.json index 71d5034..4b7b920 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@univerlab/quorum", - "version": "0.1.2", + "version": "0.1.3", "description": "Browser-native planning poker — P2P, no accounts, no server", "license": "MIT", "type": "module", diff --git a/src/pages/about.js b/src/pages/about.js index 72d3f4d..22e8ae6 100644 --- a/src/pages/about.js +++ b/src/pages/about.js @@ -1,6 +1,6 @@ import { BANNER } from '../banner.js'; -const VERSION = '0.1.2'; +const VERSION = '0.1.3'; const FEATURES = [ { title: 'Planning poker', desc: 'Fibonacci deck (0, 1, 2, 3, 5, 8, 13, 21, ☕). Cards auto-reveal when everyone has voted — no surprises.' },