@bobfrankston/rmfmail 1.2.190 → 1.2.192

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/client/app.js CHANGED
@@ -3266,6 +3266,24 @@ onWsEvent((event) => {
3266
3266
  case "connectProgress":
3267
3267
  handleConnectProgress(event);
3268
3268
  break;
3269
+ case "bootstrapStatus": {
3270
+ // C156: Android first-boot narration ("Signing into <email>…",
3271
+ // "Fetching settings from Google Drive…"). Rendered in the status
3272
+ // bar, the pre-UI startup banner, AND the folder tree's loading
3273
+ // slot — the tree is the big empty thing a fresh install stares
3274
+ // at, so that's where the progress needs to be.
3275
+ const msg = String(event.message || "");
3276
+ if (msg) {
3277
+ if (statusSync)
3278
+ statusSync.textContent = msg;
3279
+ if (startupStatus)
3280
+ startupStatus.textContent = msg;
3281
+ const slot = document.querySelector(".folder-loading");
3282
+ if (slot)
3283
+ slot.textContent = msg;
3284
+ }
3285
+ break;
3286
+ }
3269
3287
  case "syncProgress": {
3270
3288
  // Aggregate folders phases ("folders:<path>" when starting a folder,
3271
3289
  // "folders-done" between folders) print as a proportion so the user