|
| 1 | +// Copyright 2026, Command Line Inc. |
| 2 | +// SPDX-License-Identifier: Apache-2.0 |
| 3 | + |
| 4 | +import { getApi } from "@/app/store/global"; |
| 5 | + |
| 6 | +const UpgradeOnboardingModal_v0_14_0_Content = () => { |
| 7 | + return ( |
| 8 | + <div className="flex flex-col items-start w-full mb-2 unselectable"> |
| 9 | + <div className="text-secondary leading-relaxed mb-4"> |
| 10 | + <p className="mb-0"> |
| 11 | + Wave v0.14 introduces Durable Sessions. Enable them to keep your remote sessions alive through |
| 12 | + network interruptions, computer sleep, and restarts — they'll automatically reconnect when your |
| 13 | + connection is restored. |
| 14 | + </p> |
| 15 | + </div> |
| 16 | + |
| 17 | + <div className="flex w-full items-start gap-4 mb-4"> |
| 18 | + <div className="flex-shrink-0"> |
| 19 | + <i className="text-[24px] text-sky-500 fa-sharp fa-solid fa-shield"></i> |
| 20 | + </div> |
| 21 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 22 | + <div className="text-foreground text-base font-semibold leading-[18px]"> |
| 23 | + Durable SSH Sessions{" "} |
| 24 | + <button |
| 25 | + onClick={() => getApi().openExternal("https://docs.waveterm.dev/durable-sessions")} |
| 26 | + className="text-accent text-sm font-normal cursor-pointer hover:underline" |
| 27 | + > |
| 28 | + [see docs] |
| 29 | + </button> |
| 30 | + </div> |
| 31 | + <div className="text-secondary leading-5"> |
| 32 | + <ul className="list-disc list-outside space-y-1 pl-5"> |
| 33 | + <li> |
| 34 | + <strong>Session Protection</strong> - Programs and shell state survive disconnects |
| 35 | + </li> |
| 36 | + <li> |
| 37 | + <strong>Visual Status Indicators</strong> - Shield icons show status |
| 38 | + </li> |
| 39 | + <li> |
| 40 | + <strong>Flexible Configuration</strong> - Enable globally, per-connection, or |
| 41 | + per-terminal |
| 42 | + </li> |
| 43 | + </ul> |
| 44 | + </div> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + |
| 48 | + <div className="flex w-full items-start gap-4 mb-4"> |
| 49 | + <div className="flex-shrink-0"> |
| 50 | + <i className="text-[24px] text-accent fa-solid fa-network-wired"></i> |
| 51 | + </div> |
| 52 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 53 | + <div className="text-foreground text-base font-semibold leading-[18px]"> |
| 54 | + Enhanced Connection Monitoring |
| 55 | + </div> |
| 56 | + <div className="text-secondary leading-5"> |
| 57 | + <ul className="list-disc list-outside space-y-1 pl-5"> |
| 58 | + <li> |
| 59 | + <strong>Connection Keepalives</strong> - Active monitoring with keepalive probes |
| 60 | + </li> |
| 61 | + <li> |
| 62 | + <strong>Stalled Connection Detection</strong> - Visual feedback for network issues |
| 63 | + </li> |
| 64 | + </ul> |
| 65 | + </div> |
| 66 | + </div> |
| 67 | + </div> |
| 68 | + |
| 69 | + <div className="flex w-full items-start gap-4 mb-4"> |
| 70 | + <div className="flex-shrink-0"> |
| 71 | + <i className="text-[24px] text-accent fa-solid fa-sparkles"></i> |
| 72 | + </div> |
| 73 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 74 | + <div className="text-foreground text-base font-semibold leading-[18px]">Wave AI Updates</div> |
| 75 | + <div className="text-secondary leading-5"> |
| 76 | + <ul className="list-disc list-outside space-y-1 pl-5"> |
| 77 | + <li> |
| 78 | + <strong>Image Support</strong> - Vision capabilities for BYOK providers |
| 79 | + </li> |
| 80 | + <li> |
| 81 | + <strong>Stop Generation</strong> - Ability to stop AI responses mid-generation |
| 82 | + </li> |
| 83 | + <li> |
| 84 | + <strong>Improved Auto-scrolling</strong> |
| 85 | + </li> |
| 86 | + </ul> |
| 87 | + </div> |
| 88 | + </div> |
| 89 | + </div> |
| 90 | + |
| 91 | + <div className="flex w-full items-start gap-4"> |
| 92 | + <div className="flex-shrink-0"> |
| 93 | + <i className="text-[24px] text-accent fa-solid fa-terminal"></i> |
| 94 | + </div> |
| 95 | + <div className="flex flex-col items-start gap-2 flex-1"> |
| 96 | + <div className="text-foreground text-base font-semibold leading-[18px]">Terminal Improvements</div> |
| 97 | + <div className="text-secondary leading-5"> |
| 98 | + <ul className="list-disc list-outside space-y-1 pl-5"> |
| 99 | + <li> |
| 100 | + <strong>Enhanced Context Menu</strong> - Quick access to splits, themes, and more |
| 101 | + </li> |
| 102 | + <li> |
| 103 | + <strong>OSC 52 Clipboard Support</strong> - CLI apps can copy to system clipboard |
| 104 | + </li> |
| 105 | + </ul> |
| 106 | + </div> |
| 107 | + </div> |
| 108 | + </div> |
| 109 | + </div> |
| 110 | + ); |
| 111 | +}; |
| 112 | + |
| 113 | +UpgradeOnboardingModal_v0_14_0_Content.displayName = "UpgradeOnboardingModal_v0_14_0_Content"; |
| 114 | + |
| 115 | +export { UpgradeOnboardingModal_v0_14_0_Content }; |
0 commit comments