Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6b35894

Browse files
authoredOct 19, 2020
rename to Extension Pack for MicroProfile (#14)
Signed-off-by: Kathryn Kodama <kathryn.s.kodama@gmail.com>
1 parent fa01873 commit 6b35894

File tree

7 files changed

+21
-19
lines changed

7 files changed

+21
-19
lines changed
 

‎CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22

3-
All notable changes to the MicroProfile Extension Pack will be documented below.
3+
All notable changes to the Extension Pack for MicroProfile will be documented below.
4+
5+
## 0.1.2
6+
- Changed name to Extension Pack for MicroProfile
47

58
## 0.1.1
69
- Removed the runtime extensions from the MicroProfile pack, included them in the overview page [#9](https://github.com/MicroShed/vscode-microprofile-pack/issues/9)

‎CONTRIBUTING.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Contributing to MicroProfile Extension Pack for VS Code
2-
1+
# Contributing to the Extension Pack for MicroProfile
32
We welcome contributions, and request you follow these guidelines.
43

54
- [Raising issues](#raising-issues)

‎README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# MicroProfile Extension Pack
1+
# Extension Pack for MicroProfile
22

3-
MicroProfile Extension Pack is a collection of extensions that can help develop Java applications using [MicroProfile](https://microprofile.io/).
3+
Extension Pack for MicroProfile is a collection of Visual Studio Code extensions that can help develop Java applications using [MicroProfile](https://microprofile.io/).
44

55
## Extensions Included
6-
By installing the MicroProfile Extension Pack, the following extensions are installed:
6+
By installing the Extension Pack for MicroProfile, the following extensions are installed:
77

88
### Creating a MicroProfile project
99
* [MicroProfile Starter](https://marketplace.visualstudio.com/items?itemName=MicroProfile-Community.mp-starter-vscode-ext) - Quickly generate a MicroProfile Maven project.
10-
* [MicroProfile Rest Client Generator](https://marketplace.visualstudio.com/items?itemName=MicroProfile-Community.mp-rest-client-generator-vscode-ext) - Quickly generate a MicroProfile Rest Client interface template from an OpenAPI document.
10+
* [Generator for MicroProfile Rest Client](https://marketplace.visualstudio.com/items?itemName=MicroProfile-Community.mp-rest-client-generator-vscode-ext) - Quickly generate a MicroProfile Rest Client interface template from an OpenAPI document.
1111

1212
### Developing a MicroProfile project
1313
* [Tools for MicroProfile](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-microprofile) - Language support for MicroProfile APIs and properties via [Language Server for Eclipse MicroProfile](https://github.com/eclipse/lsp4mp).
@@ -23,6 +23,6 @@ By installing the MicroProfile Extension Pack, the following extensions are inst
2323
- `microprofile.alwaysShowOverview`: Determines whether to show the overview page on extension startup. Default value is `true`.
2424

2525
## Contributing
26-
Do you have a suggestion for the MicroProfile Extension Pack? File an [issue](https://github.com/MicroShed/vscode-microprofile-pack/issues) or submit a pull request if there is an extension that should be added to the extension pack. Our [CONTRIBUTING](CONTRIBUTING.md) document contains details for submitting pull requests.
26+
Do you have a suggestion for the Extension Pack for MicroProfile? File an [issue](https://github.com/MicroShed/vscode-microprofile-pack/issues) or submit a pull request if there is an extension that should be added to the extension pack. Our [CONTRIBUTING](CONTRIBUTING.md) document contains details for submitting pull requests.
2727

2828
MicroProfile® and the MicroProfile logo are trademarks of the Eclipse Foundation.

‎package-lock.json

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "vscode-microprofile-pack",
3-
"displayName": "MicroProfile Extension Pack",
3+
"displayName": "Extension Pack for MicroProfile",
44
"description": "A collection of extensions to develop Java microservices with MicroProfile",
5-
"version": "0.1.1",
5+
"version": "0.1.2",
66
"publisher": "MicroProfile-Community",
77
"preview": true,
88
"license": "Apache-2.0",
@@ -52,7 +52,7 @@
5252
],
5353
"configuration": [
5454
{
55-
"title": "MicroProfile Extension Pack",
55+
"title": "Extension Pack for MicroProfile",
5656
"properties": {
5757
"microprofile.alwaysShowOverview": {
5858
"type": "boolean",

‎src/overview/assets/index.html

+3-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h3 class="font-weight-light">Start</h3>
2424
</div>
2525
<div>
2626
<a href="command:microprofile.helper.generateMicroProfileRESTClient"
27-
title="Generate a MicroProfile REST Client with REST Client Generater for MicroProfile">Generate a
27+
title="Generate a MicroProfile REST Client with Generater for MicroProfile Rest Client">Generate a
2828
MicroProfile REST Client interface template...</a>
2929
</div>
3030
</div>
@@ -61,9 +61,8 @@ <h3 class="font-weight-light">Extensions</h3>
6161
<a href="#" title="Install MicroProfile Starter extension...">Install MicroProfile Starter</a>
6262
</div>
6363
<div ext="MicroProfile-Community.mp-rest-client-generator-vscode-ext"
64-
displayName="MicroProfile REST Client Generator by MicroProfile Community">
65-
<a href="#" title="Install MicroProfile REST Client Generator extension...">Install MicroProfile REST
66-
Client Generator</a>
64+
displayName="Generator for MicroProfile Rest Client by MicroProfile Community">
65+
<a href="#" title="Install Generator for MicroProfile Rest Client extension...">Install Generator for MicroProfile Rest Client</a>
6766
</div>
6867
</div>
6968
</div>

‎src/util/commands.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ export async function createMicroProfileStarterProjectCmdHandler(context: vscode
1515
}
1616

1717
/**
18-
* Check if MicroProfile REST Client Generator has been installed, if it has
18+
* Check if Generator for MicroProfile Rest Client has been installed, if it has
1919
* execute the Generate a REST Client command. If it is not installed,
2020
* prompt user to install.
2121
*
2222
* @param context vscode extension context
2323
*/
2424
export async function generateMicroProfileRESTClient(context: vscode.ExtensionContext) {
25-
if (!await validateAndRecommendExtension("microProfile-community.mp-rest-client-generator-vscode-ext", "MicroProfile REST Client Generator for Visual Studio Code is recommended to generate MicroProfile REST Client Interface template.", true)) {
25+
if (!await validateAndRecommendExtension("microProfile-community.mp-rest-client-generator-vscode-ext", "Generator for MicroProfile Rest Client is recommended to generate MicroProfile REST Client Interface template.", true)) {
2626
return;
2727
}
2828
await vscode.commands.executeCommand("microprofile.restclient.generate");

0 commit comments

Comments
 (0)