From 34593384e159fce908d9defb94d7f646200c7c80 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Fri, 24 Apr 2026 16:14:39 +0900 Subject: [PATCH 1/2] [#166] Fix genesis character limit from 1,000 to 10,000 Co-Authored-By: Claude Opus 4.6 (1M context) --- app/web/components/PreviewPanel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/web/components/PreviewPanel.tsx b/app/web/components/PreviewPanel.tsx index a65126c..83ae353 100644 --- a/app/web/components/PreviewPanel.tsx +++ b/app/web/components/PreviewPanel.tsx @@ -150,7 +150,7 @@ export function PreviewPanel({ storyName, fileName, authFetch, onPublish, publis const isGenesis = fileName === "genesis.md"; const isPlot = fileName ? /^plot-\d+\.md$/.test(fileName) : false; const isPublished = fileData?.status === "published" || fileData?.status === "published-not-indexed"; - const charLimit = isGenesis ? 1000 : isPlot ? 10000 : null; + const charLimit = (isGenesis || isPlot) ? 10000 : null; // Don't show over-limit warning for already-published files const overLimit = !isPublished && charLimit !== null && charCount > charLimit; From 2b5f205068af36b76f7bb74d189b97edfd638f96 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Fri, 24 Apr 2026 16:15:59 +0900 Subject: [PATCH 2/2] [#166] Bump version to 1.0.23 Co-Authored-By: Claude Opus 4.6 (1M context) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 311b829..fc58569 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "plotlink-ows", - "version": "1.0.22", + "version": "1.0.23", "bin": { "plotlink-ows": "./bin/plotlink-ows.js" },