mirror of
https://github.com/wavetermdev/backup.git
synced 2026-04-22 15:26:58 -07:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| cdeef49ec1 | |||
| 7e128c791b | |||
| 09c4a42557 |
@@ -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.3
|
||||
VERSION=0.5.2
|
||||
rm -rf temp
|
||||
mkdir temp
|
||||
mkdir temp/x64
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@
|
||||
"name": "waveterm",
|
||||
"author": "Command Line Inc",
|
||||
"productName": "Wave",
|
||||
"version": "0.5.3",
|
||||
"version": "0.5.2",
|
||||
"main": "dist/emain.js",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
|
||||
@@ -440,7 +440,7 @@ class SessionSettingsModal extends React.Component<{}, {}> {
|
||||
return;
|
||||
}
|
||||
let prtn = GlobalCommandRunner.sessionPurge(this.sessionId);
|
||||
commandRtnHandler(prtn, this.errorMessage);
|
||||
commandRtnHandler(prtn, this.errorMessage, () => GlobalModel.modalsModel.popModal());
|
||||
});
|
||||
}
|
||||
|
||||
@@ -783,7 +783,10 @@ class ClientSettingsModal extends React.Component<{}, {}> {
|
||||
<div className="settings-field">
|
||||
<div className="settings-label">Check for Updates</div>
|
||||
<div className="settings-input">
|
||||
<Toggle checked={!cdata.clientopts.noreleasecheck} onChange={this.handleChangeReleaseCheck} />
|
||||
<Toggle
|
||||
checked={!cdata.clientopts.noreleasecheck}
|
||||
onChange={this.handleChangeReleaseCheck}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className="settings-field">
|
||||
|
||||
@@ -17,6 +17,7 @@ import { ReactComponent as ActionsIcon } from "../../assets/icons/tab/actions.sv
|
||||
import { ReactComponent as AddIcon } from "../../assets/icons/add.svg";
|
||||
import * as constants from "../../appconst";
|
||||
import { Reorder } from "framer-motion";
|
||||
import { debounce } from "throttle-debounce";
|
||||
import { MagicLayout } from "../../magiclayout";
|
||||
|
||||
import "../workspace.less";
|
||||
@@ -86,11 +87,11 @@ class ScreenTabs extends React.Component<{ session: Session }, { showingScreens:
|
||||
|
||||
// Add the current deltaY to the history
|
||||
this.deltaYHistory.push(Math.abs(event.deltaY));
|
||||
if (this.deltaYHistory.length > 5) {
|
||||
this.deltaYHistory.shift(); // Keep only the last 5 entries
|
||||
if (this.deltaYHistory.length > 2) {
|
||||
this.deltaYHistory.shift(); // Keep only the last 2 entries
|
||||
}
|
||||
|
||||
// Check if any of the last 5 deltaY values are greater than a threshold
|
||||
// Check if any of the last 2 deltaY values are greater than a threshold
|
||||
let isMouseWheel = this.deltaYHistory.some((deltaY) => deltaY > 0);
|
||||
|
||||
if (isMouseWheel) {
|
||||
@@ -108,7 +109,8 @@ class ScreenTabs extends React.Component<{ session: Session }, { showingScreens:
|
||||
|
||||
// Add the wheel event listener to the tabsRef
|
||||
if (this.tabsRef.current) {
|
||||
this.tabsRef.current.addEventListener("wheel", this.handleWheel, { passive: false });
|
||||
let handleWheel = debounce(200, this.handleWheel);
|
||||
this.tabsRef.current.addEventListener("wheel", handleWheel, { passive: false });
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+4
-1
@@ -390,9 +390,12 @@ function getColorRGB(colorInput) {
|
||||
return computedColorStyle;
|
||||
}
|
||||
|
||||
function commandRtnHandler(prtn: Promise<CommandRtnType>, errorMessage: OV<string>) {
|
||||
function commandRtnHandler(prtn: Promise<CommandRtnType>, errorMessage: OV<string>, onSuccess?: () => void) {
|
||||
prtn.then((crtn) => {
|
||||
if (crtn.success) {
|
||||
if (onSuccess) {
|
||||
onSuccess();
|
||||
}
|
||||
return;
|
||||
}
|
||||
mobx.action(() => {
|
||||
|
||||
+1
-1
@@ -1,2 +1,2 @@
|
||||
const VERSION = "v0.5.3";
|
||||
const VERSION = "v0.5.2";
|
||||
module.exports = VERSION;
|
||||
|
||||
@@ -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.3"
|
||||
const WaveVersion = "v0.5.2"
|
||||
const WaveAuthKeyFileName = "waveterm.authkey"
|
||||
const MShellVersion = "v0.3.0"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user