Skip to content

Commit

Permalink
Upgrade electron to '32.0.0-beta.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
vraravam committed Jul 26, 2024
1 parent 61173ea commit 9329c51
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
"chalk": "5.3.0",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"electron": "31.3.0",
"electron": "32.0.0-beta.2",
"electron-builder": "24.13.3",
"esbuild": "0.16.17",
"esbuild-plugin-copy": "2.1.1",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/webview/contextMenuBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -867,8 +867,8 @@ export class ContextMenuBuilder {
new MenuItem({
label: this.stringTable.goBack(),
accelerator: `${cmdOrCtrlShortcutKey()}+left`,
enabled: webContents.canGoBack(),
click: () => webContents.goBack(),
enabled: webContents.navigationHistory.canGoBack(),
click: () => webContents.navigationHistory.goBack(),
}),
);
}
Expand All @@ -882,8 +882,8 @@ export class ContextMenuBuilder {
new MenuItem({
label: this.stringTable.goForward(),
accelerator: `${cmdOrCtrlShortcutKey()}+right`,
enabled: webContents.canGoForward(),
click: () => webContents.goForward(),
enabled: webContents.navigationHistory.canGoForward(),
click: () => webContents.navigationHistory.goForward(),
}),
);
}
Expand Down

0 comments on commit 9329c51

Please sign in to comment.