Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
2.1 RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
JumpMaster committed May 15, 2015
1 parent 017f2dd commit b70691c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions appinfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"capabilities": [
"configurable"
],
"companyName": "JumpMaster",
"companyName": "Kevin Cooper",
"longName": "PebbleAuth",
"projectType": "native",
"resources": {
Expand Down Expand Up @@ -87,7 +87,7 @@
"basalt"
],
"uuid": "1f4d9835-3b9a-4ddd-907e-41a25d06f19c",
"versionLabel": "2.0",
"versionLabel": "2.1",
"watchapp": {
"watchface": false
}
Expand Down
4 changes: 2 additions & 2 deletions src/js/pebble-js-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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)
Expand Down
5 changes: 2 additions & 3 deletions src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit b70691c

Please sign in to comment.