@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/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
- wrapper.style.cssText = "position:fixed;bottom:0;right:16px;width:min(900px,55vw);height:min(700px,70vh);z-index:1000;border-radius:8px 8px 0 0;box-shadow:0 -4px 24px rgba(0,0,0,0.3);display:flex;flex-direction:column;overflow:hidden;";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/rmfmail",
3
- "version": "1.1.94",
3
+ "version": "1.1.95",
4
4
  "description": "Local-first email client with IMAP sync and standalone native app",
5
5
  "type": "module",
6
6
  "main": "bin/mailx.js",