|
64 | 64 | "walkthroughs": [ |
65 | 65 | { |
66 | 66 | "id": "javaWelcome", |
67 | | - "title": "Dive into Java Development", |
68 | | - "description": "Your first steps to set up powerful Java tools in a lightweight, performant editor!", |
| 67 | + "title": "%walkthrough.title%", |
| 68 | + "description": "%walkthrough.description%", |
69 | 69 | "steps": [ |
70 | 70 | { |
71 | 71 | "id": "java.runtime", |
72 | | - "title": "Get your Java runtime ready", |
73 | | - "description": "The built-in configurator makes it easy to set up your preferred Java runtime.\n[Configure Java Runtime](command:toSide:java.runtime)", |
| 72 | + "title": "Get your runtime ready", |
| 73 | + "description": "%walkthrough.java.runtime%", |
74 | 74 | "media": { |
75 | | - "image": "walkthrough/runtime.png", |
76 | | - "altText": "Configure Java Runtime with tabs for Project SDKs" |
| 75 | + "markdown": "walkthrough/runtime.md" |
77 | 76 | } |
78 | 77 | }, |
79 | | - { |
80 | | - "id": "java.extGuide", |
81 | | - "title": "Support additional tools and frameworks", |
82 | | - "description": "Got additional support for major tool chains, frameworks and application servers.\n[Recommended Java Extensions](command:toSide:java.extGuide)", |
83 | | - "media": { |
84 | | - "image": "walkthrough/extGuide.png", |
85 | | - "altText": "Open Project Folder" |
86 | | - } |
87 | | - }, |
88 | | - { |
89 | | - "id": "java.openProjectFolder", |
90 | | - "title": "Open project folder", |
91 | | - "description": "Open an existing folder that contains your Java project, or create a new folder.\n[Open Folder...](command:workbench.action.files.openFolder)\n[Create New Project...](command:java.project.create)", |
92 | | - "media": { |
93 | | - "image": "walkthrough/open-project.png", |
94 | | - "altText": "Open Project Folder" |
95 | | - }, |
96 | | - "when": "!isMac && workspaceFolderCount == 0" |
97 | | - }, |
98 | | - { |
99 | | - "id": "java.openProjectFolder.mac", |
100 | | - "title": "Open project folder", |
101 | | - "description": "Open an existing folder that contains your Java project, or create a new folder.\n[Open Folder...](command:workbench.action.files.openFileFolder)\n[Create New Project...](command:java.project.create)", |
102 | | - "media": { |
103 | | - "image": "walkthrough/open-project.png", |
104 | | - "altText": "Open Project Folder" |
105 | | - }, |
106 | | - "when": "isMac && workspaceFolderCount == 0" |
107 | | - }, |
108 | 78 | { |
109 | 79 | "id": "java.showProjectExplorer", |
110 | | - "title": "Explore your project", |
111 | | - "description": "View classpaths and dependencies, and create new projects, packages and classes.\n[Show Java Projects](command:javaProjectExplorer.focus)", |
| 80 | + "title": "Explore your projects", |
| 81 | + "description": "%walkthrough.java.projects%", |
112 | 82 | "media": { |
113 | | - "image": "walkthrough/project-manager.png", |
| 83 | + "svg": "walkthrough/projects.svg", |
114 | 84 | "altText": "Project Explorer" |
115 | 85 | }, |
116 | | - "when": "java:projectManagerActivated" |
| 86 | + "when": "java:projectManagerActivated && workspaceFolderCount > 0" |
117 | 87 | }, |
118 | 88 | { |
119 | | - "id": "java.showProjectExplorer.notActivated", |
| 89 | + "id": "java.showProjectExplorer.inactive", |
120 | 90 | "title": "Explore your project", |
121 | | - "description": "View classpaths and dependencies, and create new projects, packages and classes.", |
| 91 | + "description": "%walkthrough.java.projects.inactive%", |
122 | 92 | "media": { |
123 | | - "image": "walkthrough/project-manager.png", |
| 93 | + "svg": "walkthrough/projects.svg", |
124 | 94 | "altText": "Project Explorer" |
125 | 95 | }, |
126 | | - "when": "!java:projectManagerActivated" |
| 96 | + "when": "!java:projectManagerActivated || workspaceFolderCount == 0" |
127 | 97 | }, |
128 | 98 | { |
129 | | - "id": "java.showDebugView", |
130 | | - "title": "Launch and debug your app", |
131 | | - "description": "The debugger will automatically find the entry point of your project, launch it and start debugging.\n[Show Run and Debug View](command:workbench.view.debug)\n[Learn More...](https://code.visualstudio.com/docs/java/java-debugging)", |
| 99 | + "id": "java.debugAndTest", |
| 100 | + "title": "Launch, debug and test", |
| 101 | + "description": "%walkthrough.java.debugAndTest%", |
132 | 102 | "media": { |
133 | | - "image": "walkthrough/debugger.png", |
134 | | - "altText": "Running and Debugging" |
| 103 | + "svg": "walkthrough/debugAndTest.svg", |
| 104 | + "altText": "Launch, debug and test" |
135 | 105 | } |
136 | 106 | }, |
137 | 107 | { |
138 | | - "id": "java.showTesting", |
139 | | - "title": "Run and debug tests", |
140 | | - "description": "The place to show all the test cases in your project. You can also run/debug your test cases from here.\n[Show Testing View](command:testExplorer.focus)", |
141 | | - "media": { |
142 | | - "image": "walkthrough/testing.png", |
143 | | - "altText": "Testing" |
144 | | - }, |
145 | | - "when": "java:testRunnerActivated" |
146 | | - }, |
147 | | - { |
148 | | - "id": "java.showTesting.notActivated", |
149 | | - "title": "Run and debug tests", |
150 | | - "description": "The place to show all the test cases in your project. You can also run/debug your test cases from here.", |
151 | | - "media": { |
152 | | - "image": "walkthrough/testing.png", |
153 | | - "altText": "Testing" |
154 | | - }, |
155 | | - "when": "!java:testRunnerActivated" |
156 | | - }, |
157 | | - { |
158 | | - "id": "java.tutorial", |
159 | | - "title": "Quick start with Java", |
160 | | - "description": "Just starting with Java? Get hands on with these tutorials to learn the fundamentals of Java editing & debugging.\n[Open Tutorials](command:toSide:java.gettingStarted)", |
| 108 | + "id": "java.extensions", |
| 109 | + "title": "Extensions for additional tools and frameworks", |
| 110 | + "description": "%walkthrough.java.extensions%", |
161 | 111 | "media": { |
162 | | - "image": "walkthrough/tutorials.png", |
163 | | - "altText": "Tutorials" |
| 112 | + "svg": "walkthrough/extensions.svg", |
| 113 | + "altText": "Extensions" |
164 | 114 | } |
165 | 115 | }, |
166 | 116 | { |
167 | | - "id": "java.showHelpCenter", |
168 | | - "title": "Java Help Center", |
169 | | - "description": "Discover more shortcuts and features on this page.\n[Open Java Help Center](command:toSide:java.welcome.fromWalkthrough)", |
| 117 | + "id": "java.more", |
| 118 | + "title": "Explore more Java resources", |
| 119 | + "description": "%walkthrough.java.more%", |
170 | 120 | "media": { |
171 | | - "image": "walkthrough/help-center.png", |
172 | | - "altText": "Java Help Center" |
| 121 | + "svg": "walkthrough/ok.svg", |
| 122 | + "altText": "Explore more Java resources" |
173 | 123 | } |
174 | 124 | } |
175 | 125 | ] |
|
181 | 131 | "category": "Java", |
182 | 132 | "title": "Install New JDK" |
183 | 133 | }, |
| 134 | + { |
| 135 | + "command": "java.installJdk.fromWalkthrough", |
| 136 | + "category": "Java", |
| 137 | + "title": "Install New JDK" |
| 138 | + }, |
184 | 139 | { |
185 | 140 | "command": "java.welcome", |
186 | 141 | "category": "Java", |
187 | | - "title": "Help Center (Welcome)" |
| 142 | + "title": "Help Center" |
188 | 143 | }, |
189 | 144 | { |
190 | 145 | "command": "java.welcome.fromWalkthrough", |
191 | 146 | "category": "Java", |
192 | | - "title": "Help Center (Welcome)" |
| 147 | + "title": "Help Center" |
193 | 148 | }, |
194 | 149 | { |
195 | 150 | "command": "java.classpathConfiguration", |
|
275 | 230 | { |
276 | 231 | "command": "java.welcome.fromWalkthrough", |
277 | 232 | "when": "false" |
| 233 | + }, |
| 234 | + { |
| 235 | + "command": "java.installJdk.fromWalkthrough", |
| 236 | + "when": "false" |
278 | 237 | } |
279 | 238 | ], |
280 | 239 | "view/title": [ |
|
0 commit comments