Compare commits

..

2 Commits

Author SHA1 Message Date
sawka b271c55054 bump to v0.6.2 2024-02-10 19:41:23 -03:00
sawka 592e023441 backport zdotdir fix to v0.6.x release 2024-02-10 19:34:56 -03:00
9 changed files with 1840 additions and 10 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
name: "Build Helper"
on: workflow_dispatch
env:
WAVETERM_VERSION: 0.6.1
WAVETERM_VERSION: 0.6.2
GO_VERSION: "1.21.5"
NODE_VERSION: "21.5.0"
jobs:
+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.6.1
VERSION=0.6.2
rm -rf temp
rm -rf builds
mkdir temp
+1 -1
View File
@@ -2,7 +2,7 @@
"name": "waveterm",
"author": "Command Line Inc",
"productName": "Wave",
"version": "0.6.1",
"version": "0.6.2",
"main": "dist/emain.js",
"license": "Apache-2.0",
"dependencies": {
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -26,7 +26,7 @@ import { ReactComponent as SquareIcon } from "../../assets/icons/tab/square.svg"
import { ReactComponent as GlobeIcon } from "../../assets/icons/globe.svg";
import { ReactComponent as StatusCircleIcon } from "../../assets/icons/statuscircle.svg";
import "./settings.less";
import "./modals.less";
type OV<V> = mobx.IObservableValue<V>;
+1 -1
View File
@@ -1,2 +1,2 @@
const VERSION = "v0.6.1";
const VERSION = "v0.6.2";
module.exports = VERSION;
+1 -4
View File
@@ -257,10 +257,7 @@ func (z zshShellApi) MakeRcFileStr(pk *packet.RunPacketType) string {
}
rcBuf.WriteString("\n")
}
if shellenv.FindVarDecl(varDecls, "ZDOTDIR") == nil {
rcBuf.WriteString("unset ZDOTDIR\n")
rcBuf.WriteString("\n")
}
// do NOT unset ZDOTDIR, otherwise initialization will start to read initialization files from ~/ again
for _, varName := range ZshUnsetVars {
rcBuf.WriteString("unset " + shellescape.Quote(varName) + "\n")
}
+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.6.1"
const WaveVersion = "v0.6.2"
const WaveAuthKeyFileName = "waveterm.authkey"
const MShellVersion = "v0.4.0"