Skip to content

Commit 17dd664

Browse files
committed
update vscode ext landing page
1 parent ad698d2 commit 17dd664

File tree

4 files changed

+3
-8
lines changed

4 files changed

+3
-8
lines changed

vscode-debugger-extension/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1 align="center">
22
<br>
33
<br>
4-
<img src="./banner.png" alt="Temporal workflow debugger">
4+
<img src="https://raw.githubusercontent.com/phuongdnguyen/temporal-workflow-debugger/ad698d27dec8950cf83b629df47763223edbceab/vscode-debugger-extension/banner.png" alt="Temporal workflow debugger">
55
<br>
66
</h1>
77

vscode-debugger-extension/extension/src/get-base-configuration.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const getExecutableFromConfig = (): string => {
1616
return vscode.workspace.getConfiguration("temporal").get(lang) as string
1717
}
1818

19-
type SupportedLanguage = "typescript" | "go" | "java" | "python"
19+
type SupportedLanguage = "typescript" | "go" | "python"
2020

2121
export function getDependencies(lang: SupportedLanguage): string {
2222
switch (lang) {
@@ -100,9 +100,6 @@ export const getBaseConfiguration = async (): Promise<vscode.DebugConfiguration>
100100
case "go":
101101
return { ...goConfiguration }
102102

103-
case "java":
104-
return { ...javaConfiguration }
105-
106103
case "python":
107104
// reload executable when user restart the debug "project"
108105
return { ...pythonConfiguration, python: getExecutableFromConfig() || "python" }

vscode-debugger-extension/extension/src/panel.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -701,8 +701,6 @@ export class HistoryDebuggerPanel {
701701
return "Make sure you have the TypeScript extension installed and ts-node available."
702702
case "go":
703703
return "Make sure you have the Go extension installed and delve debugger available."
704-
case "java":
705-
return "Make sure you have the Java extension pack installed."
706704
case "python":
707705
return "Make sure you have the Python extension installed."
708706
default:

vscode-debugger-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "temporal-workflow-debugger",
33
"displayName": "Temporal workflow debugger",
4-
"version": "0.1.7",
4+
"version": "0.1.8",
55
"description": "Debug workflows by setting breakpoints in workflow history and workflow code.",
66
"categories": [
77
"Debuggers",

0 commit comments

Comments
 (0)