parent
4b254e6a42
commit
9a43cd39cc
|
@ -25,7 +25,7 @@
|
||||||
"chalk"
|
"chalk"
|
||||||
],
|
],
|
||||||
"uuid": "ceeae81b-6b50-43b6-8bbb-6d6f6eb62b69",
|
"uuid": "ceeae81b-6b50-43b6-8bbb-6d6f6eb62b69",
|
||||||
"versionLabel": "1.4",
|
"versionLabel": "1.5",
|
||||||
"watchapp": {
|
"watchapp": {
|
||||||
"watchface": true
|
"watchface": true
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ Pebble.addEventListener('showConfiguration', function() {
|
||||||
if(Pebble.getActiveWatchInfo) {
|
if(Pebble.getActiveWatchInfo) {
|
||||||
watch = Pebble.getActiveWatchInfo();
|
watch = Pebble.getActiveWatchInfo();
|
||||||
}
|
}
|
||||||
var url='http://pebble.lastfuture.de/config/supersimple14/';
|
var url='http://pebble.lastfuture.de/config/supersimple15/';
|
||||||
if (watch.platform != "chalk") {
|
if (watch.platform != "chalk") {
|
||||||
url += "?rect=true";
|
url += "?rect=true";
|
||||||
}
|
}
|
||||||
|
@ -24,10 +24,10 @@ Pebble.addEventListener('webviewclosed', function(e) {
|
||||||
colorm: parseInt(configData.colorm, 16),
|
colorm: parseInt(configData.colorm, 16),
|
||||||
colorh: parseInt(configData.colorh, 16),
|
colorh: parseInt(configData.colorh, 16),
|
||||||
colorp: parseInt(configData.colorp, 16),
|
colorp: parseInt(configData.colorp, 16),
|
||||||
shadows: configData.shadows === true,
|
shadows: configData.shadows === 'true',
|
||||||
ticks: configData.ticks,
|
ticks: configData.ticks,
|
||||||
colort: parseInt(configData.colort, 16),
|
colort: parseInt(configData.colort, 16),
|
||||||
rectticks: configData.rectticks === true
|
rectticks: configData.rectticks === 'true'
|
||||||
}, function() {
|
}, function() {
|
||||||
console.log('Send successful!');
|
console.log('Send successful!');
|
||||||
}, function() {
|
}, function() {
|
||||||
|
|
Loading…
Reference in New Issue