@bobfrankston/rmfmail 1.2.239 → 1.2.241
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/bin/build-bundles.mjs +14 -0
- package/bin/check-bridge-contract.mjs +59 -0
- package/client/app.bundle.js +8 -2
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +8 -2
- package/client/app.js.map +1 -1
- package/client/app.ts +8 -2
- package/client/lib/mailxapi.js +11 -0
- package/package.json +3 -3
- package/packages/mailx-imap/index.d.ts +20 -0
- package/packages/mailx-imap/index.d.ts.map +1 -1
- package/packages/mailx-imap/index.js +64 -1
- package/packages/mailx-imap/index.js.map +1 -1
- package/packages/mailx-imap/index.ts +62 -1
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-imap/test/rate-limit-backoff.test.mjs +61 -0
- package/packages/mailx-settings/package.json +1 -1
- package/packages/mailx-types/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-57024 → node_modules.npmglobalize-stash-26520}/.package-lock.json +0 -0
package/client/app.js
CHANGED
|
@@ -2041,8 +2041,14 @@ document.addEventListener("mailx-flagged-batch", (e) => {
|
|
|
2041
2041
|
const n = msgs.length;
|
|
2042
2042
|
const label = n === 1 ? "message" : `${n} messages`;
|
|
2043
2043
|
showContextMenu(x, y, [
|
|
2044
|
-
|
|
2045
|
-
|
|
2044
|
+
// Name the destination, never say "here". A menu that appears
|
|
2045
|
+
// under the pointer still has to read correctly on its own: by the
|
|
2046
|
+
// time the user is reading the menu, the folder they were dragging
|
|
2047
|
+
// over may not be what they think it is, and "here" gives them
|
|
2048
|
+
// nothing to check against (Bob 2026-08-09: "using HERE in a
|
|
2049
|
+
// message is very very bad — give the folder name").
|
|
2050
|
+
{ label: `Move ${label} to ${targetName}`, emphasized: true, action: () => void runRightDragOp(msgs, targetAccount, targetFolderId, targetName, "move") },
|
|
2051
|
+
{ label: `Copy ${label} to ${targetName}`, action: () => void runRightDragOp(msgs, targetAccount, targetFolderId, targetName, "copy") },
|
|
2046
2052
|
]);
|
|
2047
2053
|
}
|
|
2048
2054
|
async function runRightDragOp(msgs, targetAccount, targetFolderId, targetName, op) {
|