@bobfrankston/rmfmail 1.0.634 → 1.0.640
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/TODO.md +3 -1
- package/client/app.js +22 -0
- package/client/app.js.map +1 -1
- package/client/app.ts +15 -0
- package/client/components/alarms.js +17 -7
- package/client/components/alarms.js.map +1 -1
- package/client/components/alarms.ts +17 -6
- package/client/compose/compose.js +13 -15
- package/client/compose/compose.js.map +1 -1
- package/client/compose/compose.ts +16 -8
- package/client/compose/editor.js +36 -3
- package/client/compose/editor.js.map +1 -1
- package/client/compose/editor.ts +40 -3
- package/client/index.html +19 -15
- package/client/styles/components.css +14 -0
- package/docs/prod-android.md +55 -69
- package/docs/rmf-tiny.md +156 -0
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bobfrankston/rmfmail",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.640",
|
|
4
4
|
"description": "Local-first email client with IMAP sync and standalone native app",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "bin/mailx.js",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"@bobfrankston/msger": "^0.1.378",
|
|
42
42
|
"@bobfrankston/node-tcp-transport": "^0.1.8",
|
|
43
43
|
"@bobfrankston/oauthsupport": "^1.0.26",
|
|
44
|
+
"@bobfrankston/rmf-tiny": "^0.1.2",
|
|
44
45
|
"@bobfrankston/smtp-direct": "^0.1.8",
|
|
45
46
|
"@bobfrankston/tcp-transport": "^0.1.6",
|
|
46
47
|
"@capacitor/android": "^8.3.0",
|
|
@@ -85,6 +86,7 @@
|
|
|
85
86
|
"@bobfrankston/msger": "file:../../../utils/msgx/msger",
|
|
86
87
|
"@bobfrankston/node-tcp-transport": "file:../../MailApps/node-tcp-transport",
|
|
87
88
|
"@bobfrankston/oauthsupport": "file:../../../projects/oauth/oauthsupport",
|
|
89
|
+
"@bobfrankston/rmf-tiny": "file:../../../utils/msgx/libs/rmf-tiny",
|
|
88
90
|
"@bobfrankston/smtp-direct": "file:../../MailApps/smtp-direct",
|
|
89
91
|
"@bobfrankston/tcp-transport": "file:../../MailApps/tcp-transport",
|
|
90
92
|
"@capacitor/android": "^8.3.0",
|
|
@@ -110,6 +112,7 @@
|
|
|
110
112
|
"@bobfrankston/msger": "^0.1.378",
|
|
111
113
|
"@bobfrankston/node-tcp-transport": "^0.1.8",
|
|
112
114
|
"@bobfrankston/oauthsupport": "^1.0.26",
|
|
115
|
+
"@bobfrankston/rmf-tiny": "^0.1.2",
|
|
113
116
|
"@bobfrankston/smtp-direct": "^0.1.8",
|
|
114
117
|
"@bobfrankston/tcp-transport": "^0.1.6",
|
|
115
118
|
"@capacitor/android": "^8.3.0",
|