@bobfrankston/rmfmail 1.2.323 → 1.2.325
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/.commitmsg +17 -15
- package/.llm/config-cache-crash.md +26 -0
- package/.llm/trusted-lists.md +1 -0
- package/bin/mailx.js +96 -25
- package/bin/mailx.js.map +1 -1
- package/bin/mailx.ts +105 -16
- package/client/android-bootstrap.bundle.js +5 -2
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +11 -3
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +15 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +13 -1
- package/client/components/message-viewer.js +12 -2
- package/client/components/message-viewer.js.map +1 -1
- package/client/components/message-viewer.ts +13 -3
- package/docs/allowlist.md +1 -0
- package/npmchanges.md +47 -0
- package/package.json +5 -5
- package/packages/mailx-imap/index.d.ts.map +1 -1
- package/packages/mailx-imap/index.js +7 -2
- package/packages/mailx-imap/index.js.map +1 -1
- package/packages/mailx-imap/index.ts +7 -2
- package/packages/mailx-imap/package-lock.json +2 -2
- package/packages/mailx-imap/package.json +1 -1
- package/packages/mailx-settings/docs/allowlist.md +1 -0
- package/packages/mailx-settings/index.d.ts +15 -0
- package/packages/mailx-settings/index.d.ts.map +1 -1
- package/packages/mailx-settings/index.js +71 -14
- package/packages/mailx-settings/index.js.map +1 -1
- package/packages/mailx-settings/index.ts +65 -14
- package/packages/mailx-settings/package.json +1 -1
- package/packages/mailx-store/package.json +1 -1
- package/packages/mailx-store-web/package.json +1 -1
- package/packages/mailx-types/package.json +1 -1
- package/packages/mailx-types/trust.d.ts +4 -0
- package/packages/mailx-types/trust.d.ts.map +1 -1
- package/packages/mailx-types/trust.js +17 -1
- package/packages/mailx-types/trust.js.map +1 -1
- package/packages/mailx-types/trust.ts +20 -1
package/client/app.js
CHANGED
|
@@ -3691,8 +3691,22 @@ onWsEvent((event) => {
|
|
|
3691
3691
|
statusSync.textContent = "";
|
|
3692
3692
|
}, 8000);
|
|
3693
3693
|
}
|
|
3694
|
+
// 2026-09-13 17:20 EDT — Claude Code (Fable 5.1), at Bob's direction.
|
|
3695
|
+
// The daemon now reconciles accounts.jsonc itself (new accounts are
|
|
3696
|
+
// added live) and says whether a restart is still needed. The
|
|
3697
|
+
// Restart banner was firing for the daemon's own repair of a
|
|
3698
|
+
// crash-zeroed cache from the cloud copy, seconds after launch.
|
|
3694
3699
|
if (event.filename && /accounts\.jsonc/i.test(String(event.filename))) {
|
|
3695
|
-
|
|
3700
|
+
if (event.restartNeeded) {
|
|
3701
|
+
showRestartForConfigBanner();
|
|
3702
|
+
}
|
|
3703
|
+
else if (event.detail && statusSync) {
|
|
3704
|
+
statusSync.textContent = String(event.detail);
|
|
3705
|
+
setTimeout(() => {
|
|
3706
|
+
if (statusSync.textContent === String(event.detail))
|
|
3707
|
+
statusSync.textContent = "";
|
|
3708
|
+
}, 8000);
|
|
3709
|
+
}
|
|
3696
3710
|
}
|
|
3697
3711
|
break;
|
|
3698
3712
|
case "cloudError":
|