@bobfrankston/rmfmail 1.0.677 → 1.0.678

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.
@@ -90,10 +90,10 @@ export async function createTinyMceEditor(container, opts = {}) {
90
90
  // All free / OSS plugins bundled in the jsDelivr tinymce@6 script.
91
91
  // No premium plugins listed — listing one without an API key
92
92
  // triggers TinyMCE's upsell dialog on every load.
93
- plugins: "paste lists link table code image searchreplace autolink wordcount emoticons charmap insertdatetime quickbars nonbreaking directionality",
93
+ plugins: "paste lists advlist link table code codesample image searchreplace autolink wordcount emoticons charmap insertdatetime quickbars nonbreaking directionality help",
94
94
  toolbar: [
95
95
  "undo redo | bold italic underline strikethrough | forecolor backcolor",
96
- "bullist numlist outdent indent | link table image code | emoticons charmap",
96
+ "bullist numlist outdent indent | link table image code codesample | emoticons charmap | help",
97
97
  ].join(" | "),
98
98
  // Include "tools" so wordcount and searchreplace are reachable.
99
99
  menubar: "file edit view insert format tools",
@@ -257,6 +257,7 @@ export async function createTinyMceEditor(container, opts = {}) {
257
257
  get root() { return editor.getContainer(); },
258
258
  on(event, handler) { editor.on(event, handler); },
259
259
  off(event, handler) { editor.off(event, handler); },
260
+ nativeEditor: editor,
260
261
  };
261
262
  }
262
263
  //# sourceMappingURL=adapter.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/rmfmail",
3
- "version": "1.0.677",
3
+ "version": "1.0.678",
4
4
  "description": "Local-first email client with IMAP sync and standalone native app",
5
5
  "type": "module",
6
6
  "main": "bin/mailx.js",
@@ -23,7 +23,7 @@
23
23
  "client"
24
24
  ],
25
25
  "scripts": {
26
- "build": "npm run build --workspaces --if-present && tsc -p bin && node bin/build-icon-ico.js && node bin/build-rmfmailto-exe.js && node bin/build-rmf-tiny.js && node bin/build-tinymce.js && node bin/build-bundles.mjs",
26
+ "build": "npm run build --workspaces --if-present && tsc -p bin && node bin/build-icon-ico.js && node bin/build-rmfmailto-exe.js && node bin/build-rmf-tiny.js && node bin/build-tinymce.js && node bin/build-spellcheck-dict.js && node bin/build-bundles.mjs",
27
27
  "watch": "tsc -w",
28
28
  "start": "node --watch packages/mailx-server/index.js",
29
29
  "start:prod": "node packages/mailx-server/index.js",
@@ -48,12 +48,14 @@
48
48
  "@capacitor/android": "^8.3.0",
49
49
  "@capacitor/cli": "^8.3.0",
50
50
  "@capacitor/core": "^8.3.0",
51
+ "dictionary-en": "^4.0.0",
51
52
  "express": "^4.21.0",
52
53
  "html-to-docx": "^1.8.0",
53
54
  "jsonc-parser": "^3.3.1",
54
55
  "mailparser": "^3.7.2",
55
56
  "mammoth": "^1.12.0",
56
57
  "nodemailer": "^7.0.0",
58
+ "nspell": "^2.1.5",
57
59
  "quill": "^2.0.3",
58
60
  "sql.js": "^1.14.1",
59
61
  "tinymce": "^8.5.0",
@@ -96,12 +98,14 @@
96
98
  "@capacitor/android": "^8.3.0",
97
99
  "@capacitor/cli": "^8.3.0",
98
100
  "@capacitor/core": "^8.3.0",
101
+ "dictionary-en": "^4.0.0",
99
102
  "express": "^4.21.0",
100
103
  "html-to-docx": "^1.8.0",
101
104
  "jsonc-parser": "^3.3.1",
102
105
  "mailparser": "^3.7.2",
103
106
  "mammoth": "^1.12.0",
104
107
  "nodemailer": "^7.0.0",
108
+ "nspell": "^2.1.5",
105
109
  "quill": "^2.0.3",
106
110
  "sql.js": "^1.14.1",
107
111
  "tinymce": "^8.5.0",
@@ -124,12 +128,14 @@
124
128
  "@capacitor/android": "^8.3.0",
125
129
  "@capacitor/cli": "^8.3.0",
126
130
  "@capacitor/core": "^8.3.0",
131
+ "dictionary-en": "^4.0.0",
127
132
  "express": "^4.21.0",
128
133
  "html-to-docx": "^1.8.0",
129
134
  "jsonc-parser": "^3.3.1",
130
135
  "mailparser": "^3.7.2",
131
136
  "mammoth": "^1.12.0",
132
137
  "nodemailer": "^7.0.0",
138
+ "nspell": "^2.1.5",
133
139
  "quill": "^2.0.3",
134
140
  "sql.js": "^1.14.1",
135
141
  "tinymce": "^8.5.0",