@bobfrankston/rmfmail 1.0.480 → 1.0.482
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 +5 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +3 -1
- package/package.json +1 -1
- package/packages/mailx-store-web/android-bootstrap.d.ts.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.js +32 -6
- package/packages/mailx-store-web/android-bootstrap.js.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.ts +36 -8
- package/packages/mailx-store-web/web-service.d.ts +2 -0
- package/packages/mailx-store-web/web-service.d.ts.map +1 -1
- package/packages/mailx-store-web/web-service.ts +1 -1
- package/packages/mailx-store-web/web-settings.d.ts +3 -1
- package/packages/mailx-store-web/web-settings.d.ts.map +1 -1
- package/packages/mailx-store-web/web-settings.js +12 -2
- package/packages/mailx-store-web/web-settings.js.map +1 -1
- package/packages/mailx-store-web/web-settings.ts +11 -3
- package/packages/mailx-store-web/worker-entry.js +23 -4
- package/packages/mailx-store-web/worker-entry.js.map +1 -1
- package/packages/mailx-store-web/worker-entry.ts +25 -6
package/client/app.js
CHANGED
|
@@ -2886,10 +2886,14 @@ async function openAboutDialog() {
|
|
|
2886
2886
|
rows.push(["Cloud path", `My Drive/${storage.cloudPath}/`]);
|
|
2887
2887
|
if (storage.mode)
|
|
2888
2888
|
rows.push(["Storage mode", storage.mode]);
|
|
2889
|
-
if (storage.
|
|
2889
|
+
if (storage.folderPath)
|
|
2890
|
+
rows.push(["Drive path", storage.folderPath]);
|
|
2891
|
+
else if (storage.folderName)
|
|
2890
2892
|
rows.push(["Drive folder", storage.folderName]);
|
|
2891
2893
|
if (storage.folderId)
|
|
2892
2894
|
rows.push(["Drive folderId", storage.folderId]);
|
|
2895
|
+
if (storage.folderOwner)
|
|
2896
|
+
rows.push(["Drive owner", storage.folderOwner]);
|
|
2893
2897
|
if (storage.configDir)
|
|
2894
2898
|
rows.push(["Config dir", storage.configDir]);
|
|
2895
2899
|
rows.push(["Accounts", String((accounts || []).length)]);
|