narrarium-astro-reader 0.1.23 → 0.1.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "narrarium-astro-reader",
3
- "version": "0.1.23",
3
+ "version": "0.1.25",
4
4
  "type": "module",
5
5
  "description": "Astro reader and scaffolding CLI for Narrarium book repositories.",
6
6
  "license": "MIT",
@@ -50,7 +50,7 @@
50
50
  "test": "npm run build:cli && node --test test/**/*.test.mjs"
51
51
  },
52
52
  "dependencies": {
53
- "narrarium": "^0.1.23",
53
+ "narrarium": "^0.1.25",
54
54
  "astro": "^5.14.1",
55
55
  "chokidar": "^4.0.3",
56
56
  "marked": "^16.3.0"
@@ -239,6 +239,7 @@ const renderedParagraphs = await Promise.all(
239
239
  let focusHintHideTimer = null;
240
240
  let railPointerInside = false;
241
241
  let focusHintShownForSession = false;
242
+ let refreshScheduled = false;
242
243
 
243
244
  applyFocusMode(readStorage(focusModeKey) === "true", false, { allowFullscreenRequest: false });
244
245
  updateMarkerUi(readMarker());
@@ -313,8 +314,6 @@ const renderedParagraphs = await Promise.all(
313
314
  handleFocusRailWake();
314
315
  });
315
316
 
316
- let refreshScheduled = false;
317
-
318
317
  function scheduleSceneRefresh() {
319
318
  if (refreshScheduled) {
320
319
  return;