@bobfrankston/rmfmail 1.1.76 → 1.1.78
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 +6 -7
- package/client/android-bootstrap.bundle.js +1 -1
- package/client/android-bootstrap.bundle.js.map +1 -1
- package/client/compose/compose.bundle.js.map +1 -1
- package/client/compose/spellcheck.js +4 -4
- package/client/compose/spellcheck.js.map +1 -1
- package/client/compose/spellcheck.ts +4 -4
- package/npmchanges.md +23 -0
- package/package.json +3 -3
- package/packages/mailx-service/index.js +6 -6
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +6 -6
- package/packages/mailx-settings/index.d.ts +5 -4
- package/packages/mailx-settings/index.d.ts.map +1 -1
- package/packages/mailx-settings/index.js +66 -16
- package/packages/mailx-settings/index.js.map +1 -1
- package/packages/mailx-settings/index.ts +60 -16
- package/packages/mailx-store-web/package.json +1 -1
- package/packages/mailx-store-web/web-service.js +1 -1
- package/packages/mailx-store-web/web-service.js.map +1 -1
- package/packages/mailx-store-web/web-service.ts +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-70324 → node_modules.npmglobalize-stash-66360}/.package-lock.json +0 -0
package/.commitmsg
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
User dictionary: drop dead JSON-migration code, read cloud-first
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
cryptic crash. Also: setup screen note that a Gmail account is needed.
|
|
3
|
+
There were no pre-existing dictionaries to convert, so the legacy
|
|
4
|
+
userdict.jsonc fallback in loadUserDict/saveUserDict is removed. loadUserDict
|
|
5
|
+
is now async and reads the cloud userdict.csv first (so a fresh machine
|
|
6
|
+
picks up prior words), falling back to the local cache. Service
|
|
7
|
+
getUserDict/addUserDictWord/removeUserDictWord await accordingly.
|
|
@@ -6374,7 +6374,7 @@ ${bodyEncoded}`;
|
|
|
6374
6374
|
return this.notImpl("deleteTask");
|
|
6375
6375
|
}
|
|
6376
6376
|
// User dictionary (cloud-mirrored) — Android can implement these via
|
|
6377
|
-
// the same userdict.
|
|
6377
|
+
// the same userdict.csv cloud round-trip the desktop uses; until that
|
|
6378
6378
|
// wire-up lands, return safe defaults so spellcheck.ts catch() paths
|
|
6379
6379
|
// don't fire and clutter logs.
|
|
6380
6380
|
async getUserDict() {
|