Skip to content

Commit c11609e

Browse files
authored
Rename extension name to Extension Pack for Java (#721)
1 parent 3f10328 commit c11609e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
- Added *JDK Acquisition Guide* to the overview page [#119](https://github.com/Microsoft/vscode-java-pack/pull/119)
101101

102102
## 0.6.0
103-
- Added [Visual Studio IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode) to Java Extension Pack
103+
- Added [Visual Studio IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode) to Extension Pack for Java
104104

105105
## 0.4.0
106106
- Added Overview page to help users get started

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Java Extension Pack
1+
# Extension Pack for Java
22

3-
Java Extension Pack is a collection of popular extensions that can help write, test and debug Java applications in Visual Studio Code. Check out [Java in VS Code](https://code.visualstudio.com/docs/languages/java) to get started.
3+
Extension Pack for Java is a collection of popular extensions that can help write, test and debug Java applications in Visual Studio Code. Check out [Java in VS Code](https://code.visualstudio.com/docs/languages/java) to get started.
44

55
## Extensions Included
66

7-
By installing Java Extension Pack, the following extensions are installed:
7+
By installing Extension Pack for Java, the following extensions are installed:
88

99
- [📦 Language Support for Java™ by Red Hat ](https://marketplace.visualstudio.com/items?itemName=redhat.java)
1010
- Code Navigation

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscode-java-pack",
3-
"displayName": "Java Extension Pack",
3+
"displayName": "Extension Pack for Java",
44
"description": "Popular extensions for Java development that provides Java IntelliSense, debugging, testing, Maven/Gradle support, project management and more",
55
"license": "MIT",
66
"version": "0.18.3",
@@ -227,7 +227,7 @@
227227
}
228228
],
229229
"configuration": {
230-
"title": "Java Extension Pack",
230+
"title": "Extension Pack for Java",
231231
"properties": {
232232
"java.help.firstView": {
233233
"type": [
@@ -254,7 +254,7 @@
254254
"java.help.showReleaseNotes": {
255255
"type": "boolean",
256256
"default": true,
257-
"description": "Show Java Extension Pack release notes on startup.",
257+
"description": "Show release notes of Extension Pack for Java on startup.",
258258
"scope": "window"
259259
}
260260
}

release-notes/v0.6.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
*February 2019*
44

5-
Welcome to the February 2019 release of Java Extension Pack. This document aims to recap the features, bug fixes around Java language support in between releases. Here are some of the key highlights:
5+
Welcome to the February 2019 release of Extension Pack for Java. This document aims to recap the features, bug fixes around Java language support in between releases. Here are some of the key highlights:
66

77
- **[IntelliCode](#intellicode)** for faster coding assisted by AI
88
- **[Standalone Java Files](#standalone-java-files-supported)** better supported

release-notes/v0.7.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
*April 2019*
44

5-
Welcome to the April 2019 release of Java Extension Pack. This document aims to recap the features, bug fixes around Java language support in between releases. Here are some of the key highlights:
5+
Welcome to the April 2019 release of Extension Pack for Java. This document aims to recap the features, bug fixes around Java language support in between releases. Here are some of the key highlights:
66

77
- [Java 12](#java-12-supported) supported
88
- [More Source Actions](#more-source-actions) added to Java language server

release-notes/v0.9.0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
*April 2020*
44

5-
Welcome to the April 2020 release of Java Extension Pack. This document aims to recap the features, bug fixes around Java language support in between releases. Here are some of the key highlights:
5+
Welcome to the April 2020 release of Extension Pack for Java. This document aims to recap the features, bug fixes around Java language support in between releases. Here are some of the key highlights:
66

77
- [Performance Improvements](#performance-improvements)
88
- [Syntax Mode](#syntax-mode)
@@ -131,7 +131,7 @@ VS Code Java now supports *Data Breakpoint*, so you can have the debugger break
131131

132132
![SonarLint](https://github.com/Microsoft/vscode-java-pack/raw/main/release-notes/v0.9.0/sonarlint.gif)
133133

134-
We’d like to encourage more developers to join us and improve Java development experience in VS Code together! If you have any idea, please submit an issue to [Java Extension Pack](https://github.com/Microsoft/vscode-java-pack).
134+
We’d like to encourage more developers to join us and improve Java development experience in VS Code together! If you have any idea, please submit an issue to [Extension Pack for Java](https://github.com/Microsoft/vscode-java-pack).
135135

136136
## Work with JAR Files Directly
137137

@@ -177,7 +177,7 @@ You can also create `interface`s, `enum`s, and `record`s in the same way.
177177

178178
Our friends from the Eclipse MicroProfile community published several extensions to enhance the development experience.
179179

180-
The [MicroProfile Extension Pack](https://marketplace.visualstudio.com/items?itemName=MicroProfile-Community.vscode-microprofile-pack) is a collection of extensions that can help develop your Java microservices using [Eclipse MicroProfile](https://microprofile.io/). You can quickly generate a MicroProfile project and utilize development tools for runtimes such as [Open Liberty](https://openliberty.io/) and [Quarkus](https://quarkus.io/).
180+
The [Extension Pack for MicroProfile](https://marketplace.visualstudio.com/items?itemName=MicroProfile-Community.vscode-microprofile-pack) is a collection of extensions that can help develop your Java microservices using [Eclipse MicroProfile](https://microprofile.io/). You can quickly generate a MicroProfile project and utilize development tools for runtimes such as [Open Liberty](https://openliberty.io/) and [Quarkus](https://quarkus.io/).
181181

182182
## Others
183183

0 commit comments

Comments
 (0)