Skip to content

Commit d7a65e3

Browse files
authored
Finish dashboard rename (#700)
1 parent 03234ca commit d7a65e3

File tree

9 files changed

+17
-15
lines changed

9 files changed

+17
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ESPHome Dashboard
22

3-
The ESPHome dashboard is a user facing dashboard embedded in ESPHome. It allows users to easily create and manage their configurations.
3+
The ESPHome Device Builder is a user facing dashboard embedded in ESPHome. It allows users to easily create and manage their configurations.
44

55
This repository contains the JavaScript frontend and is embedded in ESPHome releases.
66

raw_package/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
"""ESPHome dashboard."""
1+
"""ESPHome Device Builder."""
2+
23
from pathlib import Path
34
import json
45

@@ -7,6 +8,7 @@ def where():
78
"""Return path to the frontend."""
89
return Path(__file__).parent
910

11+
1012
def entrypoint():
1113
manifest = json.loads((where() / "static/js/esphome/manifest.json").read_text())
12-
return manifest['index']
14+
return manifest["index"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
name="esphome-dashboard",
1313
version="20241217.1",
14-
description="ESPHome dashboard",
14+
description="ESPHome Device Builder",
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",
1717
url="https://github.com/esphome/dashboard",

src/adopt/adopt-dialog.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ class ESPHomeAdoptDialog extends LitElement {
4444
will create a local ESPHome configuration for this device. This gives
4545
you full control over the configuration. You will lose access to
4646
vendor-provided firmware updates and will have to manually compile and
47-
update the device in the ESPHome dashboard. You can always revert to
48-
vendor-provided updates, but this will require re-installing the
47+
update the device in the ESPHome Device Builder. You can always revert
48+
to vendor-provided updates, but this will require re-installing the
4949
device.
5050
</div>
5151

src/wizard/wizard-dialog.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,13 @@ export class ESPHomeWizardDialog extends LitElement {
217217
<div>
218218
${allowsWebSerial
219219
? "Your browser does not support WebSerial."
220-
: "You are not browsing the dashboard over a secure connection (HTTPS)."}
220+
: "You are not browsing the ESPHome Device Builder over a secure connection (HTTPS)."}
221221
This prevents ESPHome from being able to install this on devices
222222
connected to this computer.
223223
</div>
224224
<div>
225225
You will still be able to install ESPHome by connecting the device to
226-
the computer that runs the ESPHome dashboard.
226+
the computer that runs the ESPHome Device Builder.
227227
</div>
228228
<div>
229229
Alternatively, you can use ESPHome Web to prepare a device for being

web.esphome.io/src/dashboard/ew-dashboard.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ class EWDashboard extends LitElement {
8888
<b>Prepare for first use</b>
8989
</p>
9090
<p>
91-
Install ESPHome on your device to add it to your ESPHome
92-
dashboard. Once added, a device can be configured and updated
91+
Install ESPHome on your device to manage it from your ESPHome
92+
Device Builder. Once added, a device can be configured and updated
9393
wirelessly.
9494
</p>
9595
</div>

web.esphome.io/src/install-adoptable/install-adoptable-dialog.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ class ESPHomeInstallAdoptableDialog extends LitElement {
3131
you connect it to your network.
3232
</div>
3333
<div>
34-
Once installed, your ESPHome dashboard will prompt you to adopt the
35-
device. This will set up a configuration for the device and allows you
36-
to further manage it wirelessly.
34+
Once installed, your ESPHome Device Builder will show the device and
35+
allow you to "take control". This will create a local configuration
36+
for the device and allows you to further manage it wirelessly.
3737
</div>
3838
3939
<mwc-button

web.esphome.io/src/install-pico/install-pico-dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class ESPHomeInstallPicoDialog extends LitElement {
4848
</ol>
4949
<div>
5050
Click CONTINUE to connect it to the Wi-Fi network. Once connected, it
51-
will automatically show up on your ESPHome dashboard.
51+
will automatically show up on your ESPHome Device Builder.
5252
</div>
5353
<mwc-button
5454
slot="primaryAction"

web.esphome.io/src/install-upload/install-upload-dialog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class ESPHomeInstallUploadDialog extends LitElement {
2626
</div>
2727
<div>To get the factory file of your ESPHome project:</div>
2828
<ol>
29-
<li>Open your ESPHome dashboard</li>
29+
<li>Open your ESPHome Device Builder</li>
3030
<li>
3131
Find your device card click on menu (<mwc-icon>more_vert</mwc-icon>)
3232
</li>

0 commit comments

Comments
 (0)