@bobfrankston/mailx-settings 0.1.59 → 0.1.60
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/docs/editor.md +29 -3
- package/docs/preferences.md +2 -1
- package/package.json +3 -3
package/docs/editor.md
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# Compose editor — formatting and shortcuts
|
|
2
2
|
|
|
3
|
-
mailx ships with
|
|
4
|
-
Most things work the same in
|
|
3
|
+
mailx ships with three rich-text editors: **Quill** (default), **tiptap**,
|
|
4
|
+
and **TinyMCE**. Most things work the same in all of them. Differences are
|
|
5
|
+
called out below.
|
|
5
6
|
|
|
6
|
-
Switch editors via **Settings → Editor → Quill | tiptap**.
|
|
7
|
+
Switch editors via **Settings → Editor → Quill | tiptap | TinyMCE**.
|
|
7
8
|
|
|
8
9
|
## Universal — works in both editors
|
|
9
10
|
|
|
@@ -74,6 +75,31 @@ use the heading select / format menu instead.
|
|
|
74
75
|
- **Ghost-text autocomplete** (off by default) — Settings →
|
|
75
76
|
AI autocomplete → on. Predicts the next words while you type.
|
|
76
77
|
|
|
78
|
+
## Editor language (TinyMCE only)
|
|
79
|
+
|
|
80
|
+
**Settings → Editor → Editor language** translates the editor *chrome* —
|
|
81
|
+
menus, dialogs, tooltips — into one of 61 languages. It does **not** touch:
|
|
82
|
+
|
|
83
|
+
- your message text,
|
|
84
|
+
- the spellchecker (English dictionary),
|
|
85
|
+
- the grammar check (Harper is English-only).
|
|
86
|
+
|
|
87
|
+
So German chrome wraps an unchanged English writing experience. Quill and
|
|
88
|
+
tiptap have no localized chrome and ignore the setting.
|
|
89
|
+
|
|
90
|
+
**Auto** (the default) follows this browser's language list, taking the first
|
|
91
|
+
one we have a pack for: an exact match (`pt-BR`), then the bare language
|
|
92
|
+
(`de-CH` → `de`), then any regional variant of it (`he` → `he-IL`). English
|
|
93
|
+
short-circuits — TinyMCE's built-in strings are English, there is no pack to
|
|
94
|
+
load. The menu names what Auto currently resolves to, so it is never a guess.
|
|
95
|
+
|
|
96
|
+
Everything is local: the packs ship with the app, and only the one language in
|
|
97
|
+
force is ever loaded. Translation coverage is community-contributed and uneven
|
|
98
|
+
— untranslated strings stay English even in widely-used languages.
|
|
99
|
+
|
|
100
|
+
The language is fixed when a compose window opens, so a change takes effect on
|
|
101
|
+
the next Reply / Forward / Compose, not in a window already open.
|
|
102
|
+
|
|
77
103
|
## When the toolbar doesn't appear
|
|
78
104
|
|
|
79
105
|
The editor loads from a CDN (jsdelivr). If your network can't reach it,
|
package/docs/preferences.md
CHANGED
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"flaggedOnly": false,
|
|
21
21
|
"folderCounts": false,
|
|
22
22
|
"calendarSidebar": false,
|
|
23
|
-
"editor": "quill"
|
|
23
|
+
"editor": "quill", // "quill" | "tiptap" | "tinymce"
|
|
24
|
+
"editorLanguage": "auto" // TinyMCE menu/dialog language; "auto" | "en" | pack code ("de", "pt-BR", ...)
|
|
24
25
|
},
|
|
25
26
|
"sync": {
|
|
26
27
|
"intervalMinutes": 5, // full-sync interval (per-folder); IDLE handles INBOX inline
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/mailx-settings",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.60",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"license": "ISC",
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@bobfrankston/mailx-types": "^0.1.
|
|
20
|
+
"@bobfrankston/mailx-types": "^0.1.60",
|
|
21
21
|
"jsonc-parser": "^3.3.1"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
".transformedSnapshot": {
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@bobfrankston/mailx-types": "^0.1.
|
|
36
|
+
"@bobfrankston/mailx-types": "^0.1.60",
|
|
37
37
|
"jsonc-parser": "^3.3.1"
|
|
38
38
|
}
|
|
39
39
|
}
|