diff --git a/public/index-dev.html b/public/index-dev.html
index 1c7b8d87..71496a21 100644
--- a/public/index-dev.html
+++ b/public/index-dev.html
@@ -3,9 +3,9 @@
-
+
-
+
diff --git a/public/index.html b/public/index.html
index 9c5a0f76..66891547 100644
--- a/public/index.html
+++ b/public/index.html
@@ -3,9 +3,9 @@
-
+
-
+
diff --git a/src/electron/emain.ts b/src/electron/emain.ts
index 42dc2514..5c9c581f 100644
--- a/src/electron/emain.ts
+++ b/src/electron/emain.ts
@@ -43,7 +43,7 @@ let loggerConfig = {
winston.format.timestamp({ format: "YYYY-MM-DD HH:mm:ss" }),
winston.format.printf((info) => `${info.timestamp} ${info.message}`)
),
- transports: [new winston.transports.File({ filename: path.join(scHome, "prompt-app.log"), level: "info" })],
+ transports: [new winston.transports.File({ filename: path.join(scHome, "waveterm-app.log"), level: "info" })],
};
if (isDev) {
loggerConfig.transports.push(new winston.transports.Console());
@@ -59,7 +59,7 @@ function log(...msg) {
console.log = log;
console.log(
sprintf(
- "prompt-app starting, PROMPT_HOME=%s, apppath=%s arch=%s/%s",
+ "waveterm-app starting, PROMPT_HOME=%s, apppath=%s arch=%s/%s",
scHome,
getAppBasePath(),
unamePlatform,
@@ -70,7 +70,7 @@ if (isDev) {
console.log("prompt-app PROMPT_DEV set");
}
let app = electron.app;
-app.setName(isDev ? "Prompt (Dev)" : "Prompt");
+app.setName(isDev ? "Wave (Dev)" : "Wave");
let waveSrvProc = null;
let waveSrvShouldRestart = false;
@@ -606,7 +606,7 @@ function runActiveTimer() {
(async () => {
let instanceLock = app.requestSingleInstanceLock();
if (!instanceLock) {
- console.log("prompt-app could not get single-instance-lock, shutting down");
+ console.log("waveterm-app could not get single-instance-lock, shutting down");
app.quit();
return;
}
diff --git a/webpack/webpack.web.js b/webpack/webpack.web.js
index f5cc0a2c..8313a0ab 100644
--- a/webpack/webpack.web.js
+++ b/webpack/webpack.web.js
@@ -22,7 +22,7 @@ if (process.env.WEBPACK_ANALYZE) {
var webCommon = {
entry: {
- prompt: ["./src/index.ts", "./src/app/app.less"],
+ waveterm: ["./src/index.ts", "./src/app/app.less"],
},
module: {
rules: [