We are putting together a collection of links to amazing community resources for a new section on the Pebble Developer Website, and we want your contributions!
There are three types of content we are looking for:
To add your app, tool or library to the collection, simply fork this GitHub repository, follow the relevant section of guide to create a Markdown file in the right folder, and submit a pull request.
You can also take a look at some of the resources that have already been submitted for further guidance.
We are looking for well-written apps that other people can use to learn Pebble development.
NOTE: You must provide an open-source license for your apps in order for it to be approved. The best way to do that is to include a LICENSE file in your app repository. Indicate the license you have selected in the
metadata block of your Markdown file.
To add your app, create a new Markdown file in the apps
folder with the same
name as your app (in a URL friendly style, such as multi-timer.md
or
uk-transport.md
)
At the top of your Markdown file you will need to have a metadata block that contains the following properties:
---
name: Multi Timer
creator: Matthew Tole
license: mit
link: https://github.com/smallstoneapps/multi-timer/
appstore: 52bda40bdc2f4f552e000089
tags:
- watchapp
- js
- storage
---
The name
, creator
and link
properties should be self-explanatory. The
appstore
entry is the Pebble appstore ID for your app. If your app isn't on
the Pebble appstore, omit this line. The tags
list will be used on the site
to let people browse apps by their tags. See below for the list of all of the
possible tags.
Below this metadata block you should write a description of your app. Include details of the key features your app has.
watchapp
- The app is a watchappwatchface
- The app is a watchfaceandroid
- The app has an Android companion appios
- The App has an iOS companion appjs
- The app uses PebbleKit JSpebblejs
- The app is written in Pebble.JSnotifications
- The app uses PebbleKit notificationsstorage
- The app uses Persistent Storageconfig
- The app has a settings/config pagesensors
- The app uses Pebble sensorsmessaging
- The app uses AppMessage, AppSync or DataLogginganimation
- The app uses PropertyAnimationgraphics
- The app uses Pebble's more advanced graphics/drawing operations
To add your tool, create a new Markdown file in the tools
folder with the same
name as your tool (in a URL-friendly style, such as watchface-generator.md
or
pebble-local-simulator.md
)
At the top of your Markdown file, you will need to have a metadata block that contains the following properties.
---
name: Watchface Generator
creator: Paul Rode
link: http://watchface-generator.de
---
The name
, creator
and link
properties should be self-explanatory.
Below this metadata block you should write a description of your tool.
NOTE: You must provide an open-source license for your library in order for it to be approved. The best way to do that is to include a LICENSE file in the repository for your library. Indicate the license you have selected in the
metadata block of your Markdown file.
To add your library, create a new Markdown file in the libraries
folder with
the same name as your library (in a URL-friendly style, such as js-message- queue.md
or clock-layer.md
).
At the top of your Markdown file you will need to have a metadata block that contains the following properties.
---
name: JS Message Queue
creator: Matthew Tole
license: mit
link: https://github.com/smallstoneapps/js-message-queue/
language: js
---
The name
, creator
and link
properties should be self-explanatory. The
language
property should be one of c
, js
, android
, or ios
. This will
help people find your library.
Below the metadata block you should write a description of your library. Include details about what problem it aims to solve and how people should use it.
If you have any questions about submitting your app, tool or library, or need help with forking, writing Markdown or creating a pull request, contact [email protected].