@bobfrankston/rmfmail 1.1.205 → 1.1.207
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/client/app.bundle.js +7 -7
- package/client/app.bundle.js.map +2 -2
- package/client/components/message-list.js +20 -9
- package/client/components/message-list.js.map +1 -1
- package/client/components/message-list.ts +20 -9
- package/client/compose/compose.bundle.js +9 -3
- package/client/compose/compose.bundle.js.map +2 -2
- package/client/lib/rmf-tiny.js +9 -2
- package/package.json +3 -3
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-32632 → node_modules.npmglobalize-stash-71352}/.package-lock.json +0 -0
package/client/lib/rmf-tiny.js
CHANGED
|
@@ -35,7 +35,6 @@ async function loadTinymce(opts) {
|
|
|
35
35
|
import("tinymce/themes/silver").catch(() => { }),
|
|
36
36
|
import("tinymce/icons/default").catch(() => { }),
|
|
37
37
|
import("tinymce/models/dom").catch(() => { }),
|
|
38
|
-
import("tinymce/plugins/paste").catch(() => { }),
|
|
39
38
|
import("tinymce/plugins/lists").catch(() => { }),
|
|
40
39
|
import("tinymce/plugins/link").catch(() => { }),
|
|
41
40
|
import("tinymce/plugins/table").catch(() => { }),
|
|
@@ -115,7 +114,15 @@ export async function createTinyMceEditor(container, opts = {}) {
|
|
|
115
114
|
// All free / OSS plugins bundled in the jsDelivr tinymce@6 script.
|
|
116
115
|
// No premium plugins listed — listing one without an API key
|
|
117
116
|
// triggers TinyMCE's upsell dialog on every load.
|
|
118
|
-
|
|
117
|
+
// NOTE: no "paste" plugin — it was REMOVED in TinyMCE 6 (paste,
|
|
118
|
+
// including Word-paste fidelity, is now built into core). We're on
|
|
119
|
+
// v8; listing "paste" makes TinyMCE's loader fetch the nonexistent
|
|
120
|
+
// plugins/paste/plugin.min.js over msger's custom protocol, which
|
|
121
|
+
// returns an error body the WebView tries to eval → "Uncaught
|
|
122
|
+
// SyntaxError: Unexpected identifier 'Not'" → init fails → compose
|
|
123
|
+
// falls back to a stub editor and Reply/Reply-All break (Bob
|
|
124
|
+
// 2026-06-01). The paste_* OPTIONS below remain valid (core).
|
|
125
|
+
plugins: "lists advlist link table code codesample image searchreplace autolink wordcount emoticons charmap insertdatetime quickbars nonbreaking directionality help",
|
|
119
126
|
toolbar: [
|
|
120
127
|
"undo redo | bold italic underline strikethrough | forecolor backcolor",
|
|
121
128
|
"bullist numlist outdent indent | link table image code rmfcode | emoticons charmap | help",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/rmfmail",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.207",
|
|
4
4
|
"description": "Local-first email client with IMAP sync and standalone native app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "bin/mailx.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@bobfrankston/iflow-direct": "^0.1.51",
|
|
40
40
|
"@bobfrankston/mailx-host": "^0.1.13",
|
|
41
|
-
"@bobfrankston/mailx-imap": "^0.1.
|
|
41
|
+
"@bobfrankston/mailx-imap": "^0.1.79",
|
|
42
42
|
"@bobfrankston/mailx-store-web": "^0.1.27",
|
|
43
43
|
"@bobfrankston/mailx-sync": "^0.1.19",
|
|
44
44
|
"@bobfrankston/miscinfo": "^1.0.12",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"dependencies": {
|
|
119
119
|
"@bobfrankston/iflow-direct": "^0.1.51",
|
|
120
120
|
"@bobfrankston/mailx-host": "^0.1.13",
|
|
121
|
-
"@bobfrankston/mailx-imap": "^0.1.
|
|
121
|
+
"@bobfrankston/mailx-imap": "^0.1.79",
|
|
122
122
|
"@bobfrankston/mailx-store-web": "^0.1.27",
|
|
123
123
|
"@bobfrankston/mailx-sync": "^0.1.19",
|
|
124
124
|
"@bobfrankston/miscinfo": "^1.0.12",
|