Skip to content

Commit

Permalink
rename to Extension Pack for MicroProfile (#14)
Browse files Browse the repository at this point in the history
Signed-off-by: Kathryn Kodama <[email protected]>
  • Loading branch information
kathrynkodama authored Oct 19, 2020
1 parent fa01873 commit 6b35894
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 19 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log

All notable changes to the MicroProfile Extension Pack will be documented below.
All notable changes to the Extension Pack for MicroProfile will be documented below.

## 0.1.2
- Changed name to Extension Pack for MicroProfile

## 0.1.1
- Removed the runtime extensions from the MicroProfile pack, included them in the overview page [#9](https://github.com/MicroShed/vscode-microprofile-pack/issues/9)
Expand Down
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# Contributing to MicroProfile Extension Pack for VS Code

# Contributing to the Extension Pack for MicroProfile
We welcome contributions, and request you follow these guidelines.

- [Raising issues](#raising-issues)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# MicroProfile Extension Pack
# Extension Pack for MicroProfile

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

## Extensions Included
By installing the MicroProfile Extension Pack, the following extensions are installed:
By installing the Extension Pack for MicroProfile, the following extensions are installed:

### Creating a MicroProfile project
* [MicroProfile Starter](https://marketplace.visualstudio.com/items?itemName=MicroProfile-Community.mp-starter-vscode-ext) - Quickly generate a MicroProfile Maven project.
* [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.
* [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.

### Developing a MicroProfile project
* [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).
Expand All @@ -23,6 +23,6 @@ By installing the MicroProfile Extension Pack, the following extensions are inst
- `microprofile.alwaysShowOverview`: Determines whether to show the overview page on extension startup. Default value is `true`.

## Contributing
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.
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.

MicroProfile® and the MicroProfile logo are trademarks of the Eclipse Foundation.
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "vscode-microprofile-pack",
"displayName": "MicroProfile Extension Pack",
"displayName": "Extension Pack for MicroProfile",
"description": "A collection of extensions to develop Java microservices with MicroProfile",
"version": "0.1.1",
"version": "0.1.2",
"publisher": "MicroProfile-Community",
"preview": true,
"license": "Apache-2.0",
Expand Down Expand Up @@ -52,7 +52,7 @@
],
"configuration": [
{
"title": "MicroProfile Extension Pack",
"title": "Extension Pack for MicroProfile",
"properties": {
"microprofile.alwaysShowOverview": {
"type": "boolean",
Expand Down
7 changes: 3 additions & 4 deletions src/overview/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ <h3 class="font-weight-light">Start</h3>
</div>
<div>
<a href="command:microprofile.helper.generateMicroProfileRESTClient"
title="Generate a MicroProfile REST Client with REST Client Generater for MicroProfile">Generate a
title="Generate a MicroProfile REST Client with Generater for MicroProfile Rest Client">Generate a
MicroProfile REST Client interface template...</a>
</div>
</div>
Expand Down Expand Up @@ -61,9 +61,8 @@ <h3 class="font-weight-light">Extensions</h3>
<a href="#" title="Install MicroProfile Starter extension...">Install MicroProfile Starter</a>
</div>
<div ext="MicroProfile-Community.mp-rest-client-generator-vscode-ext"
displayName="MicroProfile REST Client Generator by MicroProfile Community">
<a href="#" title="Install MicroProfile REST Client Generator extension...">Install MicroProfile REST
Client Generator</a>
displayName="Generator for MicroProfile Rest Client by MicroProfile Community">
<a href="#" title="Install Generator for MicroProfile Rest Client extension...">Install Generator for MicroProfile Rest Client</a>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/util/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ export async function createMicroProfileStarterProjectCmdHandler(context: vscode
}

/**
* Check if MicroProfile REST Client Generator has been installed, if it has
* Check if Generator for MicroProfile Rest Client has been installed, if it has
* execute the Generate a REST Client command. If it is not installed,
* prompt user to install.
*
* @param context vscode extension context
*/
export async function generateMicroProfileRESTClient(context: vscode.ExtensionContext) {
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)) {
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)) {
return;
}
await vscode.commands.executeCommand("microprofile.restclient.generate");
Expand Down

0 comments on commit 6b35894

Please sign in to comment.