@bobfrankston/rmfmail 1.2.188 → 1.2.191
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/TODO.md +12 -9
- package/client/android-bootstrap.bundle.js +76 -49
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +32 -0
- package/client/app.bundle.js.map +3 -3
- package/client/app.js +18 -0
- package/client/app.js.map +1 -1
- package/client/app.ts +15 -0
- package/client/components/calendar-sidebar.js +12 -1
- package/client/components/calendar-sidebar.js.map +1 -1
- package/client/components/calendar-sidebar.ts +8 -1
- package/client/components/message-viewer.js +19 -0
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +17 -0
- package/client/compose/compose.bundle.js +4 -2
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/editor.js +11 -2
- package/client/compose/editor.js.map +1 -1
- package/client/compose/editor.ts +11 -2
- package/client/package.json +1 -1
- package/docs/TODO-prereorg-snapshot-2026-07-15.md +1130 -0
- package/package.json +5 -5
- package/packages/mailx-store-web/android-bootstrap.d.ts.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.js +108 -52
- package/packages/mailx-store-web/android-bootstrap.js.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.ts +111 -53
- package/packages/mailx-store-web/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-33816 → node_modules.npmglobalize-stash-47576}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -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
|
} }
|
|
@@ -10321,6 +10343,16 @@ onWsEvent((event) => {
|
|
|
10321
10343
|
case "connectProgress":
|
|
10322
10344
|
handleConnectProgress(event);
|
|
10323
10345
|
break;
|
|
10346
|
+
case "bootstrapStatus": {
|
|
10347
|
+
const msg = String(event.message || "");
|
|
10348
|
+
if (msg) {
|
|
10349
|
+
if (statusSync) statusSync.textContent = msg;
|
|
10350
|
+
if (startupStatus) startupStatus.textContent = msg;
|
|
10351
|
+
const slot = document.querySelector(".folder-loading");
|
|
10352
|
+
if (slot) slot.textContent = msg;
|
|
10353
|
+
}
|
|
10354
|
+
break;
|
|
10355
|
+
}
|
|
10324
10356
|
case "syncProgress": {
|
|
10325
10357
|
let label = `${event.phase} ${event.progress || 0}%`;
|
|
10326
10358
|
if (typeof event.phase === "string" && event.phase.startsWith("folders:")) {
|