@bobfrankston/rmfmail 1.2.187 → 1.2.190

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.
Files changed (33) hide show
  1. package/TODO.md +10 -7
  2. package/client/android-bootstrap.bundle.js +66 -47
  3. package/client/android-bootstrap.bundle.js.map +2 -2
  4. package/client/app.bundle.js +22 -0
  5. package/client/app.bundle.js.map +3 -3
  6. package/client/components/calendar-sidebar.js +12 -1
  7. package/client/components/calendar-sidebar.js.map +1 -1
  8. package/client/components/calendar-sidebar.ts +8 -1
  9. package/client/components/message-viewer.js +19 -0
  10. package/client/components/message-viewer.js.map +1 -1
  11. package/client/components/message-viewer.ts +17 -0
  12. package/client/compose/compose.bundle.js +4 -2
  13. package/client/compose/compose.bundle.js.map +2 -2
  14. package/client/compose/editor.js +11 -2
  15. package/client/compose/editor.js.map +1 -1
  16. package/client/compose/editor.ts +11 -2
  17. package/client/package.json +1 -1
  18. package/docs/TODO-prereorg-snapshot-2026-07-15.md +1130 -0
  19. package/package.json +5 -5
  20. package/packages/mailx-imap/package-lock.json +2 -2
  21. package/packages/mailx-imap/package.json +1 -1
  22. package/packages/mailx-store/db.d.ts +6 -2
  23. package/packages/mailx-store/db.d.ts.map +1 -1
  24. package/packages/mailx-store/db.js +46 -16
  25. package/packages/mailx-store/db.js.map +1 -1
  26. package/packages/mailx-store/db.ts +53 -24
  27. package/packages/mailx-store/package.json +1 -1
  28. package/packages/mailx-store-web/android-bootstrap.d.ts.map +1 -1
  29. package/packages/mailx-store-web/android-bootstrap.js +84 -50
  30. package/packages/mailx-store-web/android-bootstrap.js.map +1 -1
  31. package/packages/mailx-store-web/android-bootstrap.ts +86 -51
  32. package/packages/mailx-store-web/package.json +1 -1
  33. /package/packages/mailx-imap/{node_modules.npmglobalize-stash-35072 → node_modules.npmglobalize-stash-12376}/.package-lock.json +0 -0
@@ -1898,6 +1898,20 @@ async function showMessage(accountId, uid, folderId, specialUse, isRetry = false
1898
1898
  }
1899
1899
  }
1900
1900
  });
1901
+ items.push({
1902
+ label: `\u2298 Never use this address: ${addr.address}`,
1903
+ action: async () => {
1904
+ try {
1905
+ const { addToDenylist: addToDenylist2 } = await Promise.resolve().then(() => (init_api_client(), api_client_exports));
1906
+ await addToDenylist2(addr.address);
1907
+ const status = document.getElementById("status-sync");
1908
+ if (status)
1909
+ status.textContent = `Denylisted: ${addr.address}`;
1910
+ } catch (e2) {
1911
+ alert(`Couldn't denylist: ${e2?.message || e2}`);
1912
+ }
1913
+ }
1914
+ });
1901
1915
  items.push({
1902
1916
  label: `\u2605 Mark sender as priority: ${addr.address}`,
1903
1917
  action: async () => {
@@ -5412,6 +5426,8 @@ async function deleteSelectedTasks() {
5412
5426
  const uuids = [...selectedTaskUuids];
5413
5427
  if (uuids.length === 0)
5414
5428
  return;
5429
+ if (!confirm(`Delete ${uuids.length} task${uuids.length === 1 ? "" : "s"}? This removes ${uuids.length === 1 ? "it" : "them"} from Google Tasks \u2014 to mark done, use the checkbox instead.`))
5430
+ return;
5415
5431
  selectedTaskUuids.clear();
5416
5432
  for (const uuid of uuids) {
5417
5433
  try {
@@ -5697,6 +5713,9 @@ async function renderTasks(prefetched) {
5697
5713
  });
5698
5714
  row.querySelector(".cal-side-task-delete")?.addEventListener("click", async (e) => {
5699
5715
  e.stopPropagation();
5716
+ const title = tasks.find((t) => t.uuid === uuid)?.title || "this task";
5717
+ if (!confirm(`Delete task "${title}"? This removes it from Google Tasks \u2014 to mark done, use the checkbox instead.`))
5718
+ return;
5700
5719
  await deleteTask(uuid);
5701
5720
  selectedTaskUuids.delete(uuid);
5702
5721
  renderTasks();
@@ -5723,6 +5742,9 @@ async function renderTasks(prefetched) {
5723
5742
  { label: "", action: () => {
5724
5743
  }, separator: true },
5725
5744
  { label: "Delete task", action: async () => {
5745
+ const title = tasks.find((t) => t.uuid === uuid)?.title || "this task";
5746
+ if (!confirm(`Delete task "${title}"? This removes it from Google Tasks \u2014 to mark done, use the checkbox instead.`))
5747
+ return;
5726
5748
  await deleteTask(uuid);
5727
5749
  renderTasks();
5728
5750
  } }