@bobfrankston/rmfmail 1.2.190 → 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 +7 -7
- package/client/android-bootstrap.bundle.js +10 -2
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +10 -0
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +18 -0
- package/client/app.js.map +1 -1
- package/client/app.ts +15 -0
- package/client/package.json +1 -1
- package/package.json +3 -3
- package/packages/mailx-store-web/android-bootstrap.d.ts.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.js +24 -2
- package/packages/mailx-store-web/android-bootstrap.js.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.ts +25 -2
- package/packages/mailx-store-web/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-12376 → node_modules.npmglobalize-stash-47576}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -10343,6 +10343,16 @@ onWsEvent((event) => {
|
|
|
10343
10343
|
case "connectProgress":
|
|
10344
10344
|
handleConnectProgress(event);
|
|
10345
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
|
+
}
|
|
10346
10356
|
case "syncProgress": {
|
|
10347
10357
|
let label = `${event.phase} ${event.progress || 0}%`;
|
|
10348
10358
|
if (typeof event.phase === "string" && event.phase.startsWith("folders:")) {
|