diff --git a/README.md b/README.md index 1c3dbaa92..31d2e6398 100644 --- a/README.md +++ b/README.md @@ -23,14 +23,14 @@ Wave isn't just another terminal emulator; it's a rethink on how terminals are b Wave Terminal works with MacOS and Linux (preliminary). -Install Wave Terminal from: [www.commandline.dev/download](https://www.commandline.dev/download) +Install Wave Terminal from: [www.waveterm.dev/download](https://www.waveterm.dev/download) ## Links -* Homepage — https://commandline.dev -* Download Page — https://commandline.dev/download -* Quick Start Guide — https://docs.getprompt.dev/quickstart/ -* Documentation — https://docs.getprompt.dev/ +* Homepage — https://www.waveterm.dev +* Download Page — https://www.waveterm.dev/download +* Documentation — https://docs.waveterm.dev/ +* Quick Start Guide — https://docs.waveterm.dev/quickstart/ * Discord Community — https://discord.gg/XfvZ334gwU ## Building from Source diff --git a/src/app/common/modals/modals.tsx b/src/app/common/modals/modals.tsx index 63244d0c2..15bda2515 100644 --- a/src/app/common/modals/modals.tsx +++ b/src/app/common/modals/modals.tsx @@ -30,6 +30,8 @@ dayjs.extend(localizedFormat); // @ts-ignore const VERSION = __WAVETERM_VERSION__; +// @ts-ignore +let BUILD = __WAVETERM_BUILD__; type OV = mobx.IObservableValue; @@ -375,7 +377,7 @@ class AboutModal extends React.Component<{}, {}> { // TODO no up-to-date status reporting return (
-
Client Version v0.4.0 20231016-110014
+
Client Version {VERSION} ({BUILD})
); @@ -386,7 +388,7 @@ class AboutModal extends React.Component<{}, {}> { Up to Date -
Client Version v0.4.0 20231016-110014
+
Client Version {VERSION} ({BUILD})
); } @@ -396,7 +398,7 @@ class AboutModal extends React.Component<{}, {}> { Outdated Version -
Client Version v0.4.0 20231016-110014
+
Client Version {VERSION} ({BUILD})
Wave Terminal
-
Modern Terminal for Seamless Workflow
+
Modern Terminal for
Seamless Workflow
@@ -442,7 +444,7 @@ class AboutModal extends React.Component<{}, {}> { @@ -460,7 +462,7 @@ class AboutModal extends React.Component<{}, {}> {
- Copyright © 2023 Command Line Inc. + © 2023 Command Line Inc.
diff --git a/src/app/sidebar/sidebar.tsx b/src/app/sidebar/sidebar.tsx index 20ed6a046..342364579 100644 --- a/src/app/sidebar/sidebar.tsx +++ b/src/app/sidebar/sidebar.tsx @@ -238,7 +238,7 @@ class MainSideBar extends React.Component<{}, {}> {
openLink("https://docs.getprompt.dev")} + onClick={() => openLink("https://docs.waveterm.dev")} > Documentation diff --git a/src/electron/emain.ts b/src/electron/emain.ts index f996fc134..359eb3c73 100644 --- a/src/electron/emain.ts +++ b/src/electron/emain.ts @@ -352,7 +352,7 @@ function createMainWindow(clientData) { MainWindow = null; }); win.webContents.setWindowOpenHandler(({ url, frameName }) => { - if (url.startsWith("https://docs.getprompt.dev/")) { + if (url.startsWith("https://docs.waveterm.dev/")) { console.log("openExternal docs", url); electron.shell.openExternal(url); } else if (url.startsWith("https://discord.gg/")) {