@bobfrankston/rmfmail 1.1.78 → 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.
- package/.commitmsg +13 -6
- package/client/android-bootstrap.bundle.js +3 -0
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +4 -0
- package/client/app.bundle.js.map +2 -2
- package/client/compose/compose.bundle.js +18 -5
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/compose/spellcheck.js +23 -9
- package/client/compose/spellcheck.js.map +1 -1
- package/client/compose/spellcheck.ts +20 -8
- package/client/lib/api-client.js +3 -0
- package/client/lib/api-client.js.map +1 -1
- package/client/lib/api-client.ts +3 -0
- package/client/lib/mailxapi.js +6 -0
- package/docs/contacts.md +17 -8
- package/npmchanges.md +10 -0
- package/package.json +1 -1
- package/packages/mailx-service/index.d.ts +3 -0
- package/packages/mailx-service/index.d.ts.map +1 -1
- package/packages/mailx-service/index.js +9 -0
- package/packages/mailx-service/index.js.map +1 -1
- package/packages/mailx-service/index.ts +10 -0
- package/packages/mailx-service/jsonrpc.js +2 -0
- package/packages/mailx-service/jsonrpc.js.map +1 -1
- package/packages/mailx-service/jsonrpc.ts +2 -0
- package/packages/mailx-settings/docs/contacts.md +17 -8
- package/packages/mailx-store-web/package.json +1 -1
- package/packages/mailx-store-web/web-service.d.ts +1 -0
- package/packages/mailx-store-web/web-service.d.ts.map +1 -1
- package/packages/mailx-store-web/web-service.js +1 -0
- package/packages/mailx-store-web/web-service.js.map +1 -1
- package/packages/mailx-store-web/web-service.ts +1 -0
- package/packages/mailx-types/mailx-api.d.ts +1 -0
- package/packages/mailx-types/mailx-api.d.ts.map +1 -1
- package/packages/mailx-types/mailx-api.ts +1 -0
- package/packages/mailx-types/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-66360 → node_modules.npmglobalize-stash-81260}/.package-lock.json +0 -0
package/.commitmsg
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
Fix user-dictionary persistence; correct contacts.md
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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).
|