Skip to content

Commit a35d3d9

Browse files
ericmigiclaude
andcommitted
Rename Developer Portal to Developer Dashboard throughout documentation
Updated all references from "Developer Portal" to "Developer Dashboard" across guides, blog posts, and community documentation to reflect the new terminology. This includes: - 8 guide files in appstore-publishing, best-practices, events-and-services, and pebble-timeline - 12 blog posts from 2013-2015 - 3 other files including more/index.html and event documentation All occurrences were updated while preserving case sensitivity (Developer Dashboard for capitalized, developer dashboard for lowercase). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e5dc828 commit a35d3d9

23 files changed

+35
-35
lines changed

source/_guides/appstore-publishing/appstore-assets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ order: 3
2222
---
2323

2424
A number of graphical assets are required when publishing an app on the
25-
[Developer Portal]({{ site.links.devportal }}), such as a marketing
25+
[Developer Dashboard]({{ site.links.devportal }}), such as a marketing
2626
banners. The resources on this page serve to help developers give these assets a
2727
more authentic feel.
2828

source/_guides/appstore-publishing/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ hide_comments: true
2525

2626
When a developer is happy that their app is feature-complete and stable, they
2727
can upload the compiled `.pbw` file to the
28-
[Developer Portal]({{ site.links.devportal }}) to make it available on the
28+
[Developer Dashboard]({{ site.links.devportal }}) to make it available on the
2929
Pebble appstore for all users with compatible watches to share and enjoy.
3030

3131
In order to be successfully listed in the Pebble appstore the developer must:

source/_guides/appstore-publishing/preparing-a-submission.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ order: 0
2121
---
2222

2323
Once a new Pebble watchface or watchapp has been created, the
24-
[Pebble Developer Portal]({{ site.links.devportal }}) allows the
24+
[Pebble Developer Dashboard]({{ site.links.devportal }}) allows the
2525
developer to publish their creation to the appstore either publicly, or
2626
privately. The appstore is built into the official mobile apps and means that
2727
every new app can be found and also featured for increased exposure and

source/_guides/appstore-publishing/publishing-an-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ order: 1
2121
---
2222

2323
When an app is ready for publishing, the `.pbw` file needs to be uploaded to the
24-
Pebble [Developer Portal]({{ site.links.devportal }}), where a listing is
24+
Pebble [Developer Dashboard]({{ site.links.devportal }}), where a listing is
2525
created. Depending on the type of app, different sets of additional resources
2626
are required. These resources are then used to generate the listing pages
2727
visible to potential users in the Pebble appstore, which is embedded within the Pebble mobile app.

source/_guides/best-practices/conserving-battery-life.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ apps are discussed in this guide, alongside suggestions to help avoid them.
4141

4242
## Battery Ratings
4343

44-
Any app published in the [Developer Portal]({{ site.links.devportal }})
44+
Any app published in the [Developer Dashboard]({{ site.links.devportal }})
4545
will have a battery grade associated with it, once a minimum threshold of data
4646
has been collected. This can be used to get a rough idea of how much battery
4747
power the app consumes. For watchfaces and apps that will be launched for long

source/_guides/events-and-services/health.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ apps, and API calls will return values to reflect this.
4747

4848
In addition, any app using the ``HealthService`` API must declare the 'health'
4949
capability in order to be accepted by the
50-
[developer portal]({{ site.links.devportal }}). This can be done in `package.json`
50+
[developer dashboard]({{ site.links.devportal }}). This can be done in `package.json`
5151
in the SDK:
5252

5353
```js

source/_guides/pebble-timeline/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ and notifications from any web-based external service.
5151
## Enabling a New App
5252

5353
To push pins via the Pebble timeline API, a first version of a new app must be
54-
uploaded to the [Developer Portal]({{ site.links.devportal }}). This is
54+
uploaded to the [Developer Dashboard]({{ site.links.devportal }}). This is
5555
required so that the appstore can identify the app's UUID, and so generate
5656
sandbox and production API keys for the developer to push pins to. It is then
5757
possible to use the timeline web API in sandbox mode for development or in
5858
production mode for published apps.
5959

60-
1. In the Developer Portal, go to the watchapp's details page in the 'Dashboard'
60+
1. In the Developer Dashboard, go to the watchapp's details page in the 'Dashboard'
6161
view and click the 'Enable timeline' button.
6262

6363
2. To obtain API keys, click the 'Manage Timeline Settings' button at the
@@ -74,7 +74,7 @@ The production mode is used when a user installs the app from the Pebble
7474
appstore. Use the two respective API key types for these purposes. If
7575
whitelisting is enabled in sandbox mode, the developer's account is
7676
automatically included, and they can add more Pebble users by adding the users'
77-
email addresses in the [Developer Portal]({{ site.links.devportal }}).
77+
email addresses in the [Developer Dashboard]({{ site.links.devportal }}).
7878

7979
If preferred, it is possible to enable whitelisting to limit this access to only
8080
users involved in development and testing of the app. Enter the email addresses

source/_guides/pebble-timeline/timeline-public.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ OK
178178
It is possible to send a pin (and updates) to multiple users at once by
179179
modifying the `PUT` header to include `X-Pin-Topics` (the topics a user must be
180180
subscribed to in order to receive this pin) and `X-API-Key` (issued by the
181-
[Developer Portal]({{ site.links.devportal }})). In this case, the URL is
181+
[Developer Dashboard]({{ site.links.devportal }})). In this case, the URL is
182182
also modified:
183183

184184
```text

source/_posts/2013-12-18-All-Aboard-the-Pebble-app-store.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ If your Pebble app requires a companion iOS or Android app, you can also include
2424
Submitting an application on the Pebble appstore is free and open to everyone. To get started:
2525

2626
1. Read the [*Appstore Publishing*](/guides/appstore-publishing) guides.
27-
1. Join the [developer portal](http://dev-portal.getpebble.com/).
27+
1. Join the [developer dashboard](http://dev-portal.getpebble.com/).
2828

29-
![An application on the Pebble Developer Portal](/images/blog/pebble_appstore_webportal.png)
29+
![An application on the Pebble Developer Dashboard](/images/blog/pebble_appstore_webportal.png)
3030

3131
More information and answers to common questions after the break!
3232

3333

34-
### What is the developer portal?
34+
### What is the developer dashboard?
3535

36-
The developer portal is the web application that developers use to publish an iOS or an Android application to the Pebble appstore. The URL for the developer portal is [https://dev-portal.getpebble.com](https://dev-portal.getpebble.com). Access to the developer portal is free.
36+
The developer dashboard is the web application that developers use to publish an iOS or an Android application to the Pebble appstore. The URL for the developer dashboard is [https://dev-portal.getpebble.com](https://dev-portal.getpebble.com). Access to the developer dashboard is free.
3737

3838
### Will you validate / approve applications?
3939

source/_posts/2014-01-06-Pebble-appstore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Appstore launches do not happen often and we all know this is a big opportunity;
2020

2121
## Submitting an application to the Pebble appstore
2222

23-
Submitting an application is a free and very easy process that only takes a few minutes. Just head to our [developer portal](https://dev-portal.getpebble.com) and upload your application and a few images.
23+
Submitting an application is a free and very easy process that only takes a few minutes. Just head to our [developer dashboard](https://dev-portal.getpebble.com) and upload your application and a few images.
2424

2525
We have prepared some resources to help you:
2626

0 commit comments

Comments
 (0)