Files
pebble-directions/package.json
T
dyedgreen 95bc449cfb New directions ui
* Beautiful directions list ui
* Fixed a bug where the js part would send too long strings
* Fixed a bug where the js part would send directions data although
there where to many steps
2016-06-25 16:45:02 +02:00

141 lines
3.4 KiB
JSON

{
"name": "pebble-directions",
"author": "Dyedgreen",
"version": "1.0.0",
"keywords": ["pebble-app"],
"private": true,
"dependencies": {},
"pebble": {
"displayName": "Directions",
"uuid": "36f93ce6-8a6d-4518-989d-31a7b0458e37",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"basalt",
"chalk"
],
"capabilities": [
"location"
],
"watchapp": {
"watchface": false,
"hiddenApp": false,
"onlyShownOnCommunication": false
},
"messageKeys": [
"SEARCH",
"SUCCESS",
"DISTANCE",
"TIME",
"INSTRUCTION_ICONS",
"INSTRUCTIONS[20]"
],
"resources": {
"media": [
{
"file": "images/car_black.png",
"name": "ICON_CAR_BLACK",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/car_white.png",
"name": "ICON_CAR_WHITE",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/train_black.png",
"name": "ICON_TRAIN_BLACK",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/train_white.png",
"name": "ICON_TRAIN_WHITE",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/bike_black.png",
"name": "ICON_BIKE_BLACK",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/bike_white.png",
"name": "ICON_BIKE_WHITE",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/walk_black.png",
"name": "ICON_WALK_BLACK",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/walk_white.png",
"name": "ICON_WALK_WHITE",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/error_network.png",
"name": "ICON_ERROR_NETWORK",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/error_api.png",
"name": "ICON_ERROR_API",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/error_other.png",
"name": "ICON_ERROR_OTHER",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_forward.png",
"name": "ICON_STEP_FORWARD",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_left.png",
"name": "ICON_STEP_LEFT",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_uleft.png",
"name": "ICON_STEP_ULEFT",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_right.png",
"name": "ICON_STEP_RIGHT",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_uright.png",
"name": "ICON_STEP_URIGHT",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_attr.png",
"name": "ICON_STEP_ATTR",
"targetPlatforms": null,
"type": "bitmap"
}
]
}
}
}