|
| 1 | +// Copyright 2026, Command Line Inc. |
| 2 | +// SPDX-License-Identifier: Apache-2.0 |
| 3 | + |
| 4 | +const UpgradeOnboardingModal_v0_14_4_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.4 introduces vertical tabs, upgrades to xterm.js v6, and includes bug fixes and UI |
| 10 | + 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-table-columns"></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]">Vertical Tab Bar</div> |
| 20 | + <div className="text-secondary leading-5"> |
| 21 | + <ul className="list-disc list-outside space-y-1 pl-5"> |
| 22 | + <li> |
| 23 | + <strong>New Vertical Tab Bar Option</strong> - Tabs can now be displayed vertically |
| 24 | + along the side of the window for more horizontal space. Toggle between horizontal and |
| 25 | + vertical layouts in settings. |
| 26 | + </li> |
| 27 | + </ul> |
| 28 | + </div> |
| 29 | + </div> |
| 30 | + </div> |
| 31 | + |
| 32 | + <div className="flex w-full items-start gap-4"> |
| 33 | + <div className="flex-shrink-0"> |
| 34 | + <i className="text-[24px] text-accent fa-solid fa-terminal"></i> |
| 35 | + </div> |
| 36 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 37 | + <div className="text-foreground text-base font-semibold leading-[18px]">Terminal Improvements</div> |
| 38 | + <div className="text-secondary leading-5"> |
| 39 | + <ul className="list-disc list-outside space-y-1 pl-5"> |
| 40 | + <li> |
| 41 | + <strong>xterm.js v6.0.0 Upgrade</strong> - Improved terminal compatibility and |
| 42 | + rendering, resolving quirks with tools like Claude Code |
| 43 | + </li> |
| 44 | + </ul> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + </div> |
| 48 | + |
| 49 | + <div className="flex w-full items-start gap-4"> |
| 50 | + <div className="flex-shrink-0"> |
| 51 | + <i className="text-[24px] text-accent fa-solid fa-wrench"></i> |
| 52 | + </div> |
| 53 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 54 | + <div className="text-foreground text-base font-semibold leading-[18px]">Other Changes</div> |
| 55 | + <div className="text-secondary leading-5"> |
| 56 | + <ul className="list-disc list-outside space-y-1 pl-5"> |
| 57 | + <li> |
| 58 | + <strong>macOS First Click</strong> - First click now focuses the clicked widget |
| 59 | + </li> |
| 60 | + <li> |
| 61 | + <strong> |
| 62 | + <code>backgrounds.json</code> |
| 63 | + </strong>{" "} |
| 64 | + - Renamed <code>presets/bg.json</code> to <code>backgrounds.json</code> |
| 65 | + </li> |
| 66 | + <li> |
| 67 | + <strong>Config Errors Moved</strong> - Config errors to the WaveConfig view for less |
| 68 | + clutter |
| 69 | + </li> |
| 70 | + <li>WaveConfig now warns on Unsaved Changes</li> |
| 71 | + <li>Preview streaming fixes for images/videos</li> |
| 72 | + <li>Deprecated legacy AI widget has been removed</li> |
| 73 | + <li>[bugfix] Fixed focus bug for newly created blocks</li> |
| 74 | + </ul> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + ); |
| 80 | +}; |
| 81 | + |
| 82 | +UpgradeOnboardingModal_v0_14_4_Content.displayName = "UpgradeOnboardingModal_v0_14_4_Content"; |
| 83 | + |
| 84 | +export { UpgradeOnboardingModal_v0_14_4_Content }; |
0 commit comments