@bobfrankston/rmfmail 1.1.77 → 1.1.79

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.
Files changed (42) hide show
  1. package/.commitmsg +13 -8
  2. package/client/android-bootstrap.bundle.js +3 -0
  3. package/client/android-bootstrap.bundle.js.map +2 -2
  4. package/client/app.bundle.js +4 -0
  5. package/client/app.bundle.js.map +2 -2
  6. package/client/compose/compose.bundle.js +18 -5
  7. package/client/compose/compose.bundle.js.map +2 -2
  8. package/client/compose/spellcheck.js +23 -9
  9. package/client/compose/spellcheck.js.map +1 -1
  10. package/client/compose/spellcheck.ts +20 -8
  11. package/client/lib/api-client.js +3 -0
  12. package/client/lib/api-client.js.map +1 -1
  13. package/client/lib/api-client.ts +3 -0
  14. package/client/lib/mailxapi.js +6 -0
  15. package/docs/contacts.md +17 -8
  16. package/npmchanges.md +22 -0
  17. package/package.json +3 -3
  18. package/packages/mailx-service/index.d.ts +3 -0
  19. package/packages/mailx-service/index.d.ts.map +1 -1
  20. package/packages/mailx-service/index.js +15 -6
  21. package/packages/mailx-service/index.js.map +1 -1
  22. package/packages/mailx-service/index.ts +16 -6
  23. package/packages/mailx-service/jsonrpc.js +2 -0
  24. package/packages/mailx-service/jsonrpc.js.map +1 -1
  25. package/packages/mailx-service/jsonrpc.ts +2 -0
  26. package/packages/mailx-settings/docs/contacts.md +17 -8
  27. package/packages/mailx-settings/index.d.ts +6 -4
  28. package/packages/mailx-settings/index.d.ts.map +1 -1
  29. package/packages/mailx-settings/index.js +18 -27
  30. package/packages/mailx-settings/index.js.map +1 -1
  31. package/packages/mailx-settings/index.ts +15 -22
  32. package/packages/mailx-store-web/package.json +1 -1
  33. package/packages/mailx-store-web/web-service.d.ts +1 -0
  34. package/packages/mailx-store-web/web-service.d.ts.map +1 -1
  35. package/packages/mailx-store-web/web-service.js +1 -0
  36. package/packages/mailx-store-web/web-service.js.map +1 -1
  37. package/packages/mailx-store-web/web-service.ts +1 -0
  38. package/packages/mailx-types/mailx-api.d.ts +1 -0
  39. package/packages/mailx-types/mailx-api.d.ts.map +1 -1
  40. package/packages/mailx-types/mailx-api.ts +1 -0
  41. package/packages/mailx-types/package.json +1 -1
  42. /package/packages/mailx-imap/{node_modules.npmglobalize-stash-73784 → node_modules.npmglobalize-stash-81260}/.package-lock.json +0 -0
package/.commitmsg CHANGED
@@ -1,9 +1,14 @@
1
- User dictionary: store as plain CSV on the server
1
+ Fix user-dictionary persistence; correct contacts.md
2
2
 
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.
3
+ User dictionary never reached the server: mailxapi.js (the desktop IPC
4
+ bridge) had no getUserDict/addUserDictWord methods, so api-client's
5
+ optional-chained calls silently no-op'd added words lived only in
6
+ localStorage. Added the four bridge methods, a bulk addUserDictWords
7
+ RPC, and a load-time reconcile in spellcheck.ts that pushes any
8
+ localStorage-only words up to userdict.csv so accumulated words are
9
+ recovered.
10
+
11
+ contacts.md: removed the stale `discovered` documentation — since Q150
12
+ the discovered set is a per-device local cache and is not written to or
13
+ synced via contacts.jsonc. Documented the cloud file as preferred +
14
+ denylist + groups (+ preserved hand-added keys).
@@ -6383,6 +6383,9 @@ ${bodyEncoded}`;
6383
6383
  async addUserDictWord(_word) {
6384
6384
  return [];
6385
6385
  }
6386
+ async addUserDictWords(_words) {
6387
+ return [];
6388
+ }
6386
6389
  async removeUserDictWord(_word) {
6387
6390
  return [];
6388
6391
  }