@bobfrankston/rmfmail 1.1.73 → 1.1.75
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 +5 -0
- package/bin/mailx.js +1 -1
- package/bin/mailx.js.map +1 -1
- package/bin/mailx.ts +1 -1
- package/client/android-bootstrap.bundle.js +10 -2
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +2 -0
- package/client/app.bundle.js.map +2 -2
- package/client/components/folder-tree.js +2 -0
- package/client/components/folder-tree.js.map +1 -1
- package/client/components/folder-tree.ts +2 -0
- package/package.json +7 -7
- package/packages/mailx-store-web/android-bootstrap.d.ts.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.js +6 -2
- package/packages/mailx-store-web/android-bootstrap.js.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.ts +6 -2
- package/packages/mailx-store-web/db.d.ts +5 -0
- package/packages/mailx-store-web/db.d.ts.map +1 -1
- package/packages/mailx-store-web/db.js +8 -0
- package/packages/mailx-store-web/db.js.map +1 -1
- package/packages/mailx-store-web/db.ts +9 -0
- package/packages/mailx-store-web/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-34412 → node_modules.npmglobalize-stash-63876}/.package-lock.json +0 -0
package/client/app.bundle.js
CHANGED
|
@@ -5913,11 +5913,13 @@ async function loadFolderTree(container) {
|
|
|
5913
5913
|
const formDisplay = isAndroid ? "display:none;" : "";
|
|
5914
5914
|
const introText = isAndroid ? "" : "Add your email account to get started.";
|
|
5915
5915
|
const checkingHtml = isAndroid ? '<div style="padding:0.5rem;color:var(--color-text-muted)">Checking for accounts...</div>' : "";
|
|
5916
|
+
const gmailNote = isAndroid ? "" : `<p style="margin-top:0.5rem;padding:0.5rem 0.75rem;background:color-mix(in oklch, var(--color-accent) 12%, var(--color-bg-surface));border:1px solid var(--color-border);border-radius:4px;font-size:0.9rem">For now, a <strong>Gmail</strong> or Google Workspace account is required. Support for other providers is coming.</p>`;
|
|
5916
5917
|
mainBody.innerHTML = `<div style="padding:2rem;line-height:1.8;max-width:500px">
|
|
5917
5918
|
<h2 style="margin-bottom:1rem">Welcome to mailx</h2>
|
|
5918
5919
|
<div id="setup-device-accounts">${checkingHtml}</div>
|
|
5919
5920
|
<div id="setup-cloud-status"></div>
|
|
5920
5921
|
<p id="setup-form-intro">${introText}</p>
|
|
5922
|
+
${gmailNote}
|
|
5921
5923
|
<form id="setup-form" style="margin-top:1rem;${formDisplay}">
|
|
5922
5924
|
<label style="display:block;margin-bottom:0.5rem">
|
|
5923
5925
|
Email address
|