@bobfrankston/rmfmail 1.2.142 → 1.2.143
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.
|
@@ -588,12 +588,12 @@
|
|
|
588
588
|
</div>
|
|
589
589
|
</div>
|
|
590
590
|
<div class="compose-toolbar">
|
|
591
|
-
<button class="tb-btn" id="btn-send">Send</button>
|
|
592
|
-
<button class="tb-btn" id="btn-attach">Attach</button>
|
|
591
|
+
<button class="tb-btn" id="btn-send" title="Send (Ctrl+Enter)">Send</button>
|
|
592
|
+
<button class="tb-btn" id="btn-attach" title="Attach files">Attach</button>
|
|
593
593
|
<input type="file" id="compose-file" multiple hidden>
|
|
594
594
|
<button class="tb-btn" id="btn-edit-in-word" title="Open the body in Microsoft Word — saves in Word reload back into the editor">Edit in Word</button>
|
|
595
595
|
<button class="tb-btn" id="btn-compose-help" title="Editor shortcuts and formatting reference (Quill vs tiptap differences)">?</button>
|
|
596
|
-
<button class="tb-btn" id="btn-discard">Discard</button>
|
|
596
|
+
<button class="tb-btn" id="btn-discard" title="Discard this message without saving a draft">Discard</button>
|
|
597
597
|
<span id="compose-editor-badge" class="compose-editor-badge" title="Active editor — change in Settings → Compose"></span>
|
|
598
598
|
<span id="compose-status" class="compose-status"></span>
|
|
599
599
|
</div>
|
package/client/index.html
CHANGED
|
@@ -714,7 +714,7 @@
|
|
|
714
714
|
</div>
|
|
715
715
|
<div class="toolbar-center">
|
|
716
716
|
<div class="tb-menu" id="view-menu">
|
|
717
|
-
<button class="tb-btn" id="btn-view">View</button>
|
|
717
|
+
<button class="tb-btn" id="btn-view" title="View menu — sort order, date basis, thread grouping, layout">View</button>
|
|
718
718
|
<div class="tb-menu-dropdown" id="view-dropdown" hidden>
|
|
719
719
|
<button class="tb-menu-item" id="opt-new-window" title="Open another full mailx window (own OS window — e.g. Drafts here, Sent there, side by side). Secondary windows don't live-update on new mail; switch folders or sync to refresh.">🗗 New window</button>
|
|
720
720
|
<hr class="tb-menu-sep">
|
|
@@ -738,7 +738,7 @@
|
|
|
738
738
|
</div>
|
|
739
739
|
</div>
|
|
740
740
|
<div class="tb-menu" id="settings-menu">
|
|
741
|
-
<button class="tb-btn" id="btn-settings">Settings</button>
|
|
741
|
+
<button class="tb-btn" id="btn-settings" title="Settings menu — accounts, compose, AI, config files">Settings</button>
|
|
742
742
|
<div class="tb-menu-dropdown" id="settings-dropdown" hidden>
|
|
743
743
|
<div class="tb-menu-submenu" id="theme-submenu-wrap">
|
|
744
744
|
<button type="button" class="tb-menu-item tb-menu-item-submenu" id="theme-submenu-toggle" aria-haspopup="true" aria-expanded="false" title="Theme: System / Light / Dark">Theme <span class="tb-menu-submenu-current" id="theme-submenu-current">System</span> ▸</button>
|
|
@@ -883,7 +883,7 @@
|
|
|
883
883
|
<button class="tb-btn" id="btn-print" title="Print (Ctrl+P)">🖨</button>
|
|
884
884
|
<button class="tb-btn" id="mv-view-thread" title="View thread (conversation)" hidden>💬</button>
|
|
885
885
|
<span style="flex:1"></span>
|
|
886
|
-
<button class="mv-action mv-action-primary" id="mv-edit-draft" hidden>Edit & Send</button>
|
|
886
|
+
<button class="mv-action mv-action-primary" id="mv-edit-draft" title="Open this draft in the compose editor" hidden>Edit & Send</button>
|
|
887
887
|
<a class="mv-unsubscribe" id="mv-unsubscribe" hidden>Unsubscribe</a>
|
|
888
888
|
<button class="mv-action" id="mv-view-source" title="View source (.eml)" hidden>Source</button>
|
|
889
889
|
<button class="mv-action" id="mv-popout" title="Pop out (desktop) / Full-screen (mobile)">⤢</button>
|
package/package.json
CHANGED