Skip to content

Commit e817391

Browse files
committed
Upgrade dependencies, including Electron 28.1.1.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent cf2f4fe commit e817391

File tree

6 files changed

+1497
-1733
lines changed

6 files changed

+1497
-1733
lines changed

app/main/sentry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {app} from "electron/main";
22

3-
import * as Sentry from "@sentry/electron/main"; // eslint-disable-line n/file-extension-in-import
3+
import * as Sentry from "@sentry/electron/main";
44

55
import {getConfigItem} from "../common/config-util.js";
66

app/renderer/js/components/webview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import type {Html} from "../../../common/html.js";
1010
import {html} from "../../../common/html.js";
1111
import type {RendererMessage} from "../../../common/typed-ipc.js";
1212
import type {TabRole} from "../../../common/types.js";
13-
import preloadCss from "../../css/preload.css?raw"; // eslint-disable-line n/file-extension-in-import
13+
import preloadCss from "../../css/preload.css?raw";
1414
import {ipcRenderer} from "../typed-ipc-renderer.js";
1515
import * as SystemUtil from "../utils/system-util.js";
1616

app/renderer/js/main.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,12 @@ export class ServerManagerView {
156156
ConfigUtil.getConfigItem("useSystemProxy", false)
157157
? {mode: "system"}
158158
: ConfigUtil.getConfigItem("useManualProxy", false)
159-
? {
160-
pacScript: ConfigUtil.getConfigItem("proxyPAC", ""),
161-
proxyRules: ConfigUtil.getConfigItem("proxyRules", ""),
162-
proxyBypassRules: ConfigUtil.getConfigItem("proxyBypass", ""),
163-
}
164-
: {mode: "direct"},
159+
? {
160+
pacScript: ConfigUtil.getConfigItem("proxyPAC", ""),
161+
proxyRules: ConfigUtil.getConfigItem("proxyRules", ""),
162+
proxyBypassRules: ConfigUtil.getConfigItem("proxyBypass", ""),
163+
}
164+
: {mode: "direct"},
165165
);
166166
}
167167

0 commit comments

Comments
 (0)