From b70691cb465681517d760db1c59db04ecf78390b Mon Sep 17 00:00:00 2001 From: JumpMaster Date: Fri, 15 May 2015 08:06:45 +0100 Subject: [PATCH] 2.1 RC1 --- appinfo.json | 4 ++-- src/js/pebble-js-app.js | 4 ++-- src/main.h | 5 ++--- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/appinfo.json b/appinfo.json index 6e47049..bfe27b1 100644 --- a/appinfo.json +++ b/appinfo.json @@ -15,7 +15,7 @@ "capabilities": [ "configurable" ], - "companyName": "JumpMaster", + "companyName": "Kevin Cooper", "longName": "PebbleAuth", "projectType": "native", "resources": { @@ -87,7 +87,7 @@ "basalt" ], "uuid": "1f4d9835-3b9a-4ddd-907e-41a25d06f19c", - "versionLabel": "2.0", + "versionLabel": "2.1", "watchapp": { "watchface": false } diff --git a/src/js/pebble-js-app.js b/src/js/pebble-js-app.js index 6e0d77f..3eb5441 100644 --- a/src/js/pebble-js-app.js +++ b/src/js/pebble-js-app.js @@ -2,7 +2,7 @@ var MAX_OTP_COUNT = 16; var MAX_LABEL_LENGTH = 20; var MAX_KEY_LENGTH = 64; var MAX_MESSAGE_RETRIES = 5; -var APP_VERSION = 20; +var APP_VERSION = 21; var otp_count = 0; var aplite_theme = -1; @@ -12,7 +12,7 @@ var timezone_offset = 0; var idle_timeout = 0; var message_send_retries = 0; var msg_data; -var debug = true; +var debug = false; function checkKeyStringIsValid(key) { if (debug) diff --git a/src/main.h b/src/main.h index 3bd188c..21ea624 100644 --- a/src/main.h +++ b/src/main.h @@ -23,8 +23,8 @@ typedef struct { #define MAX_LABEL_LENGTH 21 // 20 + termination #define MAX_KEY_LENGTH 65 // 64 + termination #define MAX_COMBINED_LENGTH MAX_LABEL_LENGTH+MAX_KEY_LENGTH -#define APP_VERSION 20 -#define DEBUG true +#define APP_VERSION 21 +#define DEBUG false #define SELECT_WINDOW_CELL_HEIGHT 30 @@ -79,7 +79,6 @@ void resetIdleTime(); void window_config_provider(Window *window); void request_key(int code_id); void set_fonts(); -//static void handle_second_tick(struct tm *tick_time, TimeUnits units_changed); void start_refreshing(); void finish_refreshing(); void animation_control();