@bobfrankston/rmfmail 1.1.94 → 1.1.95
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/.commitmsg +4 -7
- package/client/app.bundle.js +1 -1
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +4 -1
- package/client/app.js.map +1 -1
- package/client/app.ts +4 -1
- package/npmchanges.md +11 -0
- package/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-90000 → node_modules.npmglobalize-stash-90336}/.package-lock.json +0 -0
package/client/app.ts
CHANGED
|
@@ -956,7 +956,10 @@ function showComposeOverlay(title = "Compose"): HTMLIFrameElement {
|
|
|
956
956
|
// CSS `resize:both` only gives a single lower-right grip. To allow
|
|
957
957
|
// dragging any edge or corner, we omit it here and attach eight
|
|
958
958
|
// manual handles via addComposeResizeHandles() below.
|
|
959
|
-
|
|
959
|
+
// Open horizontally centred, near the top — not docked to the
|
|
960
|
+
// lower-right corner (Bob 2026-05-18). The title bar still drags it
|
|
961
|
+
// anywhere; this is just the initial placement.
|
|
962
|
+
wrapper.style.cssText = "position:fixed;top:48px;left:calc((100vw - min(900px,55vw)) / 2);width:min(900px,55vw);height:min(700px,70vh);z-index:1000;border-radius:8px;box-shadow:0 4px 24px rgba(0,0,0,0.3);display:flex;flex-direction:column;overflow:hidden;";
|
|
960
963
|
}
|
|
961
964
|
|
|
962
965
|
// Title bar — drag to move; right-side cluster holds discard, popout, close.
|
package/npmchanges.md
CHANGED
|
@@ -263,3 +263,14 @@ Two fixes:
|
|
|
263
263
|
Existing already-synced messages stay preview-only until re-synced
|
|
264
264
|
(mailx -repair re-indexes them).
|
|
265
265
|
|
|
266
|
+
## v1.1.94 — 2026-05-19
|
|
267
|
+
|
|
268
|
+
Tabs: keep the strip visible with one tab so "+" is discoverable
|
|
269
|
+
|
|
270
|
+
The view-tab strip was hidden until a 2nd tab existed — but with it
|
|
271
|
+
hidden there was no hint that tabs exist or that Ctrl+T creates one
|
|
272
|
+
(Bob: "there needs to be some indicator that ^t creates a tab"). The
|
|
273
|
+
strip now stays visible with a single tab, showing that tab plus the
|
|
274
|
+
"+" button; its tooltip names the Ctrl+T shortcut. Hidden only before
|
|
275
|
+
the very first tab is seeded.
|
|
276
|
+
|
package/package.json
CHANGED