Compare commits

...

3 Commits

Author SHA1 Message Date
sawka 19e856a3be bump version to 0.5.3 2023-12-21 12:31:54 -08:00
sawka 8246f8118e bump to v0.5.3 to fix #174 2023-12-21 12:30:57 -08:00
Red J Adaya 75d1a435ae fix missing session ID (#178) 2023-12-19 16:18:44 -08:00
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash
# assumes we have Wave-darwin-x64-[version].zip and Wave-darwin-arm64-[version].zip in current directory
VERSION=0.5.2
VERSION=0.5.3
rm -rf temp
mkdir temp
mkdir temp/x64
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "waveterm",
"author": "Command Line Inc",
"productName": "Wave",
"version": "0.5.2",
"version": "0.5.3",
"main": "dist/emain.js",
"license": "Apache-2.0",
"dependencies": {
+2 -2
View File
@@ -392,8 +392,8 @@ class SessionSettingsModal extends React.Component<{}, {}> {
constructor(props: any) {
super(props);
let sessionId = GlobalModel.sessionSettingsModal.get();
this.session = GlobalModel.getSessionById(sessionId);
this.sessionId = GlobalModel.sessionSettingsModal.get();
this.session = GlobalModel.getSessionById(this.sessionId);
if (this.session == null) {
return;
}
+1 -1
View File
@@ -1,2 +1,2 @@
const VERSION = "v0.5.2";
const VERSION = "v0.5.3";
module.exports = VERSION;
+1 -1
View File
@@ -35,7 +35,7 @@ const WaveLockFile = "waveterm.lock"
const WaveDirName = ".waveterm" // must match emain.ts
const WaveDevDirName = ".waveterm-dev" // must match emain.ts
const WaveAppPathVarName = "WAVETERM_APP_PATH"
const WaveVersion = "v0.5.2"
const WaveVersion = "v0.5.3"
const WaveAuthKeyFileName = "waveterm.authkey"
const MShellVersion = "v0.3.0"