@bobfrankston/rmfmail 1.1.206 → 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.
@@ -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
- plugins: "paste lists advlist link table code codesample image searchreplace autolink wordcount emoticons charmap insertdatetime quickbars nonbreaking directionality help",
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.206",
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",