Skip to content

Commit

Permalink
fix: Consistent naming convention of ESP Component Registry
Browse files Browse the repository at this point in the history
  • Loading branch information
XDanielPaul committed May 30, 2024
1 parent fe2bb94 commit e44fddf
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/SETTINGS.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ The **ESP-IDF: Install ESP-Matter** command will clone ESP-Matter and set `idf.e
The **ESP-IDF: Install ESP-Rainmaker** command will clone ESP-Rainmaker and set `idf.espRainmakerPath` (`idf.espRainmakerPathWin` in Windows) configuration setting.
The **ESP-IDF: Install ESP-HomeKit-SDK** command will clone ESP-HomeKit-SDK inside the selected directory and set `idf.espHomeKitSdkPath` (`idf.espHomeKitSdkPathWin` in Windows) configuration setting.

The **ESP-IDF: Show Examples Projects** command allows you create a new project using one of the examples in ESP-IDF, ESP-ADF, ESP-Matter or ESP-MDF directory if related configuration settings are set, or to create projects from examples found in the Component Registry.
The **ESP-IDF: Show Examples Projects** command allows you create a new project using one of the examples in ESP-IDF, ESP-ADF, ESP-Matter or ESP-MDF directory if related configuration settings are set, or to create projects from examples found in the ESP Component Registry.

## Use of Environment Variables in ESP-IDF settings.json and tasks.json

Expand Down
4 changes: 2 additions & 2 deletions package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"debug.initConfig.description": "A new configuration for launch ESP-IDF projects",
"debug.initConfig.name": "ESP-IDF Debug: Launch",
"esp.component-manager.cli.addDependencyError": "Error encountered while adding dependency to the component",
"esp.component-manager.ui.show.title": "Show Component Registry",
"esp.component-manager.url.description": "Component registry URL",
"esp.component-manager.ui.show.title": "Show ESP Component Registry",
"esp.component-manager.url.description": "ESP Component Registry URL",
"esp.efuse.summary.title": "Get eFuse Summary",
"esp.rainmaker.backend.add_node.title": "Add new node",
"esp.rainmaker.backend.connect.title": "Connect with ESP-Rainmaker Cloud Server",
Expand Down
2 changes: 1 addition & 1 deletion src/component-manager/panel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export class ComponentManagerUIPanel {
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IDF Component Registry</title>
<title>ESP Component Registry</title>
<style>
body {
margin: 0px;
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export namespace ESP {

export namespace ComponentManagerUI {
export const ViewType = "component-manager-ui";
export const Title = "IDF Component Registry";
export const Title = "ESP Component Registry";
}
}
}
2 changes: 1 addition & 1 deletion src/views/examples/Examples.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ onMounted(() => {
<div id="sidenav" class="content">
<p>
For external components examples, check
<a v-on:click="store.showRegistry">IDF Component Registry</a>
<a v-on:click="store.showRegistry">ESP Component Registry</a>
</p>
<searchBar />
<ul>
Expand Down

0 comments on commit e44fddf

Please sign in to comment.