@bobfrankston/rmfmail 1.2.71 → 1.2.73

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.
@@ -173,7 +173,12 @@ async function buildAll() {
173
173
  }
174
174
  const failed = results.filter(r => !r.ok).length;
175
175
  if (failed) process.exit(1);
176
- stampAll();
176
+ // NOTE: do NOT stamp `?v=` cache-bust query strings onto the bundle URLs.
177
+ // msger's custom protocol can't resolve `app.bundle.js?v=<hash>` — the
178
+ // dynamic import() hangs forever (never resolves OR rejects), so the whole
179
+ // app dies: no version, no interactivity, only the boot-snapshot paint
180
+ // (Bob 2026-06-26 "very broken, no version"). Cache-busting must use a real
181
+ // filename change (hashed filename) if revisited, never a query string.
177
182
  console.log(`build-bundles: done in ${Date.now() - t0} ms`);
178
183
  }
179
184
 
@@ -10353,7 +10353,11 @@ var savedPreview = localStorage.getItem("mailx-preview") !== "false";
10353
10353
  var savedSnippet = localStorage.getItem("mailx-snippet") !== "false";
10354
10354
  var savedFlagStars = localStorage.getItem("mailx-flag-stars") !== "false";
10355
10355
  var savedThreaded = localStorage.getItem("mailx-threaded") === "true";
10356
- var savedFlagged = localStorage.getItem("mailx-flagged") === "true";
10356
+ var savedFlagged = false;
10357
+ try {
10358
+ localStorage.removeItem("mailx-flagged");
10359
+ } catch {
10360
+ }
10357
10361
  var savedFolderCounts = localStorage.getItem("mailx-folder-counts") === "true";
10358
10362
  if (optTwoLine) optTwoLine.checked = savedTwoLine;
10359
10363
  if (optPreview) optPreview.checked = savedPreview;
@@ -10367,13 +10371,6 @@ if (!savedPreview) document.querySelector(".main-area")?.classList.add("no-previ
10367
10371
  if (!savedSnippet) document.getElementById("message-list")?.classList.add("no-snippets");
10368
10372
  if (!savedFlagStars) document.getElementById("message-list")?.classList.add("no-empty-stars");
10369
10373
  if (savedThreaded) document.getElementById("ml-body")?.classList.add("threaded");
10370
- if (savedFlagged) {
10371
- document.getElementById("ml-body")?.classList.add("flagged-only");
10372
- try {
10373
- logClientEvent("boot-restore-flagged", { savedFlagged });
10374
- } catch {
10375
- }
10376
- }
10377
10374
  if (savedFolderCounts) document.getElementById("folder-tree")?.classList.add("show-folder-counts");
10378
10375
  optThreadFilter?.addEventListener("change", () => {
10379
10376
  const body = document.getElementById("ml-body");