Skip to content

Commit dbb35ff

Browse files
authored
fix: Release-notes are broken (#659)
* fix screenshots path * update view name * remove changes in note
1 parent 564720e commit dbb35ff

File tree

4 files changed

+41
-41
lines changed

4 files changed

+41
-41
lines changed

release-notes/v0.5.0.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,49 +27,49 @@ As always, feel free to [tweet us your feedback](https://twitter.com/intent/twee
2727

2828
When a symbol is renamed, the correponding source file is also renamed along with all the references.
2929

30-
![Rename a class](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/renaming.gif)
30+
![Rename a class](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/renaming.gif)
3131

3232
### IntelliCode
3333

3434
With the latest update of Visual Studio IntelliCode, you see recommendations (items starts with a star) on top of the default member list. Those members are recommended by looking at the current type info and the code context around it. Try the AI-assisted coding experience by installing [Visual Studio IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode).
3535

36-
![IntelliCode for Java](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/intellicode.gif)
36+
![IntelliCode for Java](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/intellicode.gif)
3737

3838
### Attach missing sources
3939

4040
When you navigate to a class in some library without source code, you can attach the missing source zip/jar using the context menu “Attach Source”.
4141

42-
![Attach missing sources](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/attachsource.gif)
42+
![Attach missing sources](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/attachsource.gif)
4343

4444
## Debugging
4545

4646
### Logpoints
4747

4848
Logpoints allow you to send output to debug console without editing code. They are different from breakpoints because they do not stop the execution flow of your applications. Check out this blog post for more details on [VS Code logpoints](https://code.visualstudio.com/blogs/2018/07/12/introducing-logpoints-and-auto-attach#_introducing-logpoints) feature.
4949

50-
![Logpoints](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/logpoints.gif)
50+
![Logpoints](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/logpoints.gif)
5151

5252
### Run or debug using codelens
5353

5454
Don't wanna bother editing `launch.json`? This was made easy by the debugger extension. Now you can click the codelens on top of the `main` function to run or debug your application.
5555

56-
![Run with Codelens](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/launch-with-codelens.gif)
56+
![Run with Codelens](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/launch-with-codelens.gif)
5757

5858
## Testing
5959

6060
### TestNG
6161

6262
TestNG support was added to the newest version of [Java Test Runner](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-test). Now you can work with TestNG in VS Code.
6363

64-
![TestNG](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/testng.gif)
64+
![TestNG](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/testng.gif)
6565

6666
### Enhanced JUnit 5 support
6767

6868
The support for JUnit 5 is now broader. `@DisplayName` is now supported. Here is the screenshot:
6969

7070
- `@DisplayName`
7171

72-
![@DisplayName](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/junit5-displayname.png)
72+
![@DisplayName](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/junit5-displayname.png)
7373

7474
### Lazy load
7575

@@ -79,13 +79,13 @@ In the original implementation of Java Test Runner, the test case info is fully
7979

8080
The long anticipated [Java Dependency Viewer](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-dependency) was released. Now you have a dedicated view of all the packages, classes, and other resources at your fingertip. [Try it now](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-dependency) if you haven't yet. Have fun!
8181

82-
![Java Dependency Viewer](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/dependency-viewer.gif)
82+
![Java Dependency Viewer](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/dependency-viewer.gif)
8383

8484
## Notable Changes
8585

8686
- `Organize imports` moved to `Source Action` menu - [#513](https://github.com/redhat-developer/vscode-java/issues/513)
8787
- Quickly access the Java Overview page by clicking the info button on the status bar when using Java
8888

89-
![Java Dependency Viewer](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/java-overview.gif)
89+
![Java Dependency Viewer](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/java-overview.gif)
9090

9191
## Happy Coding!

release-notes/v0.6.0.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ IntelliCode works well with popular Java libraries and frameworks like Java SE a
3030

3131
In the sample below, some of the completion lists have items marked with ★. These items are the recommendations provided by IntelliCode according to the current code context.
3232

33-
![IntelliCode](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.5.0/intellicode.gif)
33+
![IntelliCode](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.5.0/intellicode.gif)
3434

3535
**Note:** TypeScript/JavaScript, Python, C++, C# and XAML are also supported.
3636

@@ -40,7 +40,7 @@ For more information, follow [this link](https://docs.microsoft.com/en-us/visual
4040

4141
More source actions were added to the language server. Now you can bulk generate getters and setters for all new member variables.
4242

43-
![Generate Getters & Setters](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.6.0/bulk.gen.getter.setter.gif)
43+
![Generate Getters & Setters](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.6.0/bulk.gen.getter.setter.gif)
4444

4545
## Source Code Management
4646

@@ -50,21 +50,21 @@ We improved the support for standalone Java files. If you want to work with Java
5050

5151
The solution is folder based, so all you need to do is open a folder, and all the Java files inside will be properly compiled. Then you are free to run or debug them.
5252

53-
![Standalone Java File Support](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.6.0/standalone.file.support.gif)
53+
![Standalone Java File Support](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.6.0/standalone.file.support.gif)
5454

5555
### Multiple Source Folder Supported
5656

5757
What if you have multiple sub-folders that have source code inside and want to go freestyle? We've got you covered too. Just add these folders to source path, then all the code inside will be correctly compiled.
5858

59-
![Multiple Source Folder Support](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.6.0/multiple.source.folder.gif)
59+
![Multiple Source Folder Support](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.6.0/multiple.source.folder.gif)
6060

6161
### Hide Temporary Files
6262

6363
After opening a project folder, some extra files are generated inside the folder. These are the temporary files generated by Java Language Server, which relies on the existence of those files to work properly.
6464

6565
Now it's your choice to hide those files in VS Code. When opening a project folder, Java Language Server asks how you want handle those files. You can hide them globally or just within the current workspace, or leave them as-is.
6666

67-
![Hide Temporary Files](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.6.0/hide.temp.files.png)
67+
![Hide Temporary Files](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.6.0/hide.temp.files.png)
6868

6969
## Performance
7070

@@ -92,13 +92,13 @@ Please update the extensions to the newest version, and you'll get this improvem
9292

9393
Maven extension now provides code snippet to quickly add new dependencies to `pom.xml` files. You also get auto-completion when further completing the dependency info.
9494

95-
![Dependency Auto-Completion](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.6.0/pom-dependency-completion.gif)
95+
![Dependency Auto-Completion](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.6.0/pom-dependency-completion.gif)
9696

9797
### Maven Plugin Goals
9898

9999
Plugins and their goals are now listed in the explorer along with other Maven resources. You can execute the goals with a few clicks.
100100

101-
![Maven Plugin Goals](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.6.0/maven-plugin-goals.png)
101+
![Maven Plugin Goals](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.6.0/maven-plugin-goals.png)
102102

103103
### Flat View & Hierarchical View
104104

@@ -119,7 +119,7 @@ When you have multiple main classes in your workspace, you can have a special la
119119
}
120120
```
121121

122-
![Multiple Main Class Easy Launch](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.6.0/multiple.main.entry.gif)
122+
![Multiple Main Class Easy Launch](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.6.0/multiple.main.entry.gif)
123123

124124
## Testing
125125

@@ -144,12 +144,12 @@ We listened, and as a result, we **deprecated** `launch.test.json`, and replaced
144144
]
145145
```
146146

147-
For more details, visit [Test Runner Configurations](https://github.com/Microsoft/vscode-java-test/blob/master/runner-config.md).
147+
For more details, visit [Test Runner Configurations](https://github.com/Microsoft/vscode-java-test/blob/main/runner-config.md).
148148

149149
### Navigate to Source from Test Report
150150

151151
You can now jump to the definition of a test case by clicking the link in test reports.
152152

153-
![Navigate to Source from Test Report](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.6.0/navigate.to.source.gif)
153+
![Navigate to Source from Test Report](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.6.0/navigate.to.source.gif)
154154

155155
## Happy Coding!

release-notes/v0.7.0.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ With the latest release of [Language Server for Java by Red Hat](https://marketp
4949

5050
To deal with ambiguous imports, you now have a dropdown list to pick the right one. The code line with the unresolved type is also presented to you to help you decide.
5151

52-
![Resolve Ambiguous Imports](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/java.organize.imports.gif)
52+
![Resolve Ambiguous Imports](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/java.organize.imports.gif)
5353

5454
#### Override/Implement Methods
5555

5656
With the new source action, all the candidates are presented to you with a checklist. Then you can decide what to override or implement.
5757

58-
![Override/Implement Methods](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/java.implement.methods.gif)
58+
![Override/Implement Methods](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/java.implement.methods.gif)
5959

6060
#### Generate `hashCode()` & `equals()`
6161

@@ -66,25 +66,25 @@ There are two options for you to customize the generated code:
6666
- If you use Java 7+, you can set `java.codeGeneration.hashCodeEquals.useJava7Objects` to `true` to generate shorter code which calls `Objects.hash` and `Objects.equals`.
6767
- You can also set `java.codeGeneration.hashCodeEquals.useInstanceof` to `true` to use `instanceOf` operator to check the object types instead of calling `Object.getClass()`.
6868

69-
![Generate `hashCode()` & `equals()`](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/java.hashcode.equals.gif)
69+
![Generate `hashCode()` & `equals()`](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/java.hashcode.equals.gif)
7070

7171
#### Generate `toString()`
7272

7373
`toString()` can also be generated with the new source action. Customization is also possible with the check list of all the member variables.
7474

75-
![Generate `toString()`](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/java.generate.tostring.gif)
75+
![Generate `toString()`](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/java.generate.tostring.gif)
7676

7777
#### Convert to Static Imports
7878

7979
Last but not least, you can now convert static functions calls to static imports.
8080

81-
![Convert to Static Imports](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/java.convert.static.import.gif)
81+
![Convert to Static Imports](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/java.convert.static.import.gif)
8282

8383
### Folding Range
8484

8585
Folding range allows you to fold or unfold code snippet to better view the source code.
8686

87-
![Folding Range](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/java.folding.range.gif)
87+
![Folding Range](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/java.folding.range.gif)
8888

8989
## Debugging
9090

@@ -94,19 +94,19 @@ The debugger is now showing the logical structure of lists and maps, instead of
9494

9595
If you prefer the physical layout view, you can go back by setting `java.debug.settings.showLogicalStructure` to `false`.
9696

97-
![Logical Structure of Collections](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/java.debug.logical.structure.gif)
97+
![Logical Structure of Collections](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/java.debug.logical.structure.gif)
9898

9999
### Highlight Exceptions in Editor
100100

101101
Exceptions are now highlighted with extra info in the editor window. Before that, you need to hover on the exception to see details. Now the most important info is presented to you right at where it occurs.
102102

103-
![Highlight Excpetions in Editor](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/java.debug.exception.view.gif)
103+
![Highlight Excpetions in Editor](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/java.debug.exception.view.gif)
104104

105105
### Go to Definition by Clicking Stack Trace in Debug Console
106106

107107
When there's an exception, you can click on the stack trace to see the definition of the function calls.
108108

109-
![Go to Definition by Clicking Stack Trace in Debug Console](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/debug.gtd.stack.trace.gif)
109+
![Go to Definition by Clicking Stack Trace in Debug Console](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/debug.gtd.stack.trace.gif)
110110

111111
## Maven
112112

@@ -116,21 +116,21 @@ Maven extensions released some interesting features and improvements to improve
116116

117117
To debug Maven goals, just right click on a goal and start debugging. The Maven extension will call the Java debugger with the right parameters. This is handy and super time-saving.
118118

119-
![Debug Maven Goals](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/maven.debug.goals.gif)
119+
![Debug Maven Goals](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/maven.debug.goals.gif)
120120

121121
### New Command to Add a Dependency
122122

123123
Maven extension released a new command `Maven: Add a Dependency` (or `maven.project.addDependency`) to help add a new dependency to `pom.xml`. The process is interactive.
124124

125-
![Maven Add Dependency](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/maven.add.dependency.gif)
125+
![Maven Add Dependency](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/maven.add.dependency.gif)
126126

127127
## Troubleshooting
128128

129129
### JDK Acquisition Guide
130130

131131
If you are experiencing the problem of setting up the JDK, we've got you covered. The JDK Acquisition Guide follows the same logic used by the Java language server to check for a JDK installation on your machine. When the check fails, the guide will automatically show and recommend a JDK distribution that is compatible with your OS and CPU architecture.
132132

133-
![JDK Acquisition Guide](https://github.com/Microsoft/vscode-java-pack/raw/master/release-notes/v0.7.0/jdk.acquisition.guide.gif)
133+
![JDK Acquisition Guide](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.7.0/jdk.acquisition.guide.gif)
134134

135135
## Thank You
136136

0 commit comments

Comments
 (0)