|
| 1 | +// Copyright 2026, Command Line Inc. |
| 2 | +// SPDX-License-Identifier: Apache-2.0 |
| 3 | + |
| 4 | +const UpgradeOnboardingModal_v0_14_5_Content = () => { |
| 5 | + return ( |
| 6 | + <div className="flex flex-col items-start gap-6 w-full mb-4 unselectable"> |
| 7 | + <div className="text-secondary leading-relaxed"> |
| 8 | + <p className="mb-0"> |
| 9 | + Wave v0.14.5 introduces a new Process Viewer widget, Quake Mode for the global hotkey, and several |
| 10 | + quality-of-life improvements. |
| 11 | + </p> |
| 12 | + </div> |
| 13 | + |
| 14 | + <div className="flex w-full items-start gap-4"> |
| 15 | + <div className="flex-shrink-0"> |
| 16 | + <i className="text-[24px] text-accent fa-solid fa-list-tree"></i> |
| 17 | + </div> |
| 18 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 19 | + <div className="text-foreground text-base font-semibold leading-[18px]">Process Viewer</div> |
| 20 | + <div className="text-secondary leading-5"> |
| 21 | + New widget that displays running processes on local and remote machines, with CPU and memory |
| 22 | + usage and sortable columns. |
| 23 | + </div> |
| 24 | + </div> |
| 25 | + </div> |
| 26 | + |
| 27 | + <div className="flex w-full items-start gap-4"> |
| 28 | + <div className="flex-shrink-0"> |
| 29 | + <i className="text-[24px] text-accent fa-solid fa-terminal"></i> |
| 30 | + </div> |
| 31 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 32 | + <div className="text-foreground text-base font-semibold leading-[18px]">Quake Mode</div> |
| 33 | + <div className="text-secondary leading-5"> |
| 34 | + The global hotkey (<code>app:globalhotkey</code>) now triggers a dedicated quake mode that |
| 35 | + drops a Wave window down from the top of the screen, similar to classic quake-style terminals. |
| 36 | + </div> |
| 37 | + </div> |
| 38 | + </div> |
| 39 | + |
| 40 | + <div className="flex w-full items-start gap-4"> |
| 41 | + <div className="flex-shrink-0"> |
| 42 | + <i className="text-[24px] text-accent fa-solid fa-wrench"></i> |
| 43 | + </div> |
| 44 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 45 | + <div className="text-foreground text-base font-semibold leading-[18px]">Other Changes</div> |
| 46 | + <div className="text-secondary leading-5"> |
| 47 | + <ul className="list-disc list-outside space-y-1 pl-5"> |
| 48 | + <li> |
| 49 | + <strong>Drag & Drop Files into Terminal</strong> - Drag files from Finder or your |
| 50 | + file manager into a terminal to paste their quoted path |
| 51 | + </li> |
| 52 | + <li> |
| 53 | + New opt-in <code>app:showsplitbuttons</code> setting adds split buttons to block |
| 54 | + headers |
| 55 | + </li> |
| 56 | + <li>Toggle the widgets sidebar from the View menu</li> |
| 57 | + <li>F2 to rename the active tab</li> |
| 58 | + <li>Mouse back/forward buttons now navigate in web widgets</li> |
| 59 | + <li> |
| 60 | + <strong>[bugfix]</strong>{" "}Config files that didn't exist yet couldn't be |
| 61 | + created or edited from the Settings widget |
| 62 | + </li> |
| 63 | + </ul> |
| 64 | + </div> |
| 65 | + </div> |
| 66 | + </div> |
| 67 | + </div> |
| 68 | + ); |
| 69 | +}; |
| 70 | + |
| 71 | +UpgradeOnboardingModal_v0_14_5_Content.displayName = "UpgradeOnboardingModal_v0_14_5_Content"; |
| 72 | + |
| 73 | +export { UpgradeOnboardingModal_v0_14_5_Content }; |
0 commit comments