2_xen_style v1.1
Tomek Wójcik 2015-08-22 12:35:16 +01:00
padre b3581d255c
commit 040c136746
Se han modificado 2 ficheros con 11 adiciones y 9 borrados

Ver fichero

@ -304,9 +304,11 @@ static void main_window_unload(Window *window) {
battery_state_service_unsubscribe();
tick_timer_service_unsubscribe();
if (t) {
free(t);
}
// Apparently, freeing this pointer causes the watchface to crash on
// v3.3. Weird.
// if (t) {
// free(t);
// }
layer_destroy(s_battery_indicator_layer);
bitmap_layer_destroy(s_battery_icon_layer);

Ver fichero

@ -19,9 +19,9 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
Pebble.addEventListener('ready', function(e) {
console.log('JS Ready!');
});
// Pebble.addEventListener('ready', function(e) {
// console.log('JS Ready!');
// });
Pebble.addEventListener('showConfiguration', function(e) {
Pebble.openURL('https://pconf.bthlabs.pl/intuiclock/index.html');
@ -29,7 +29,7 @@ Pebble.addEventListener('showConfiguration', function(e) {
Pebble.addEventListener('webviewclosed', function(e) {
var config_data = JSON.parse(decodeURIComponent(e.response));
console.log('Configuration page returned: ' + JSON.stringify(config_data));
// console.log('Configuration page returned: ' + JSON.stringify(config_data));
var dict = {};
dict['KEY_SECONDS_HAND'] = config_data['seconds_hand'];
@ -37,8 +37,8 @@ Pebble.addEventListener('webviewclosed', function(e) {
dict['KEY_DATE_FORMAT'] = config_data['date_format'];
Pebble.sendAppMessage(dict, function() {
console.log('Send successful!');
// console.log('Send successful!');
}, function() {
console.log('Send failed!');
// console.log('Send failed!');
});
});