@bobfrankston/rmfmail 1.1.76 → 1.1.77
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 +8 -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 +11 -0
- package/package.json +1 -1
- package/packages/mailx-settings/index.d.ts +3 -4
- package/packages/mailx-settings/index.d.ts.map +1 -1
- package/packages/mailx-settings/index.js +75 -16
- package/packages/mailx-settings/index.js.map +1 -1
- package/packages/mailx-settings/index.ts +67 -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-73784}/.package-lock.json +0 -0
package/.commitmsg
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
User dictionary: store as plain CSV on the server
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
the
|
|
8
|
-
|
|
3
|
+
The cloud-mirrored spell-check user dictionary moves from userdict.jsonc
|
|
4
|
+
to userdict.csv — a single-column, one-word-per-line list that is
|
|
5
|
+
trivially hand-editable. `#` comment lines and blanks are ignored;
|
|
6
|
+
spreadsheet-exported rows load via their first field. loadUserDict reads
|
|
7
|
+
the legacy userdict.jsonc once when no CSV exists, and saveUserDict
|
|
8
|
+
unions in both the cloud CSV and the legacy cloud JSON, so words added
|
|
9
|
+
before the switch are not lost.
|
|
@@ -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() {
|