removed some logging and version bump

pull/111/merge 0.6.7
Ondřej Hruška 7 years ago
parent 2ca8bf1483
commit ca410736f7
  1. 2
      Makefile
  2. 4
      html_orig/js/app.js
  3. 4
      html_orig/jssrc/term.js
  4. 2
      user/user_main.h

@ -73,7 +73,7 @@ CFLAGS += -DADMIN_PASSWORD=$(ADMIN_PASSWORD)
# Debug logging # Debug logging
CFLAGS += -DDEBUG_ANSI=1 CFLAGS += -DDEBUG_ANSI=1
CFLAGS += -DDEBUG_INPUT=1 CFLAGS += -DDEBUG_INPUT=0
# linker flags used to generate the main object file # linker flags used to generate the main object file
LDFLAGS = -nostdlib -Wl,--no-check-sections -u call_user_start -Wl,-static LDFLAGS = -nostdlib -Wl,--no-check-sections -u call_user_start -Wl,-static

@ -1922,7 +1922,7 @@ var Input = (function() {
if (evt.key) str = evt.key; if (evt.key) str = evt.key;
else if (evt.which) str = String.fromCodePoint(evt.which); else if (evt.which) str = String.fromCodePoint(evt.which);
if (str.length>0 && str.charCodeAt(0) >= 32) { if (str.length>0 && str.charCodeAt(0) >= 32) {
console.log("Typed ", str); // console.log("Typed ", str);
sendStrMsg(str); sendStrMsg(str);
} }
}); });
@ -1972,7 +1972,7 @@ var Input = (function() {
} }
key(combo, function (e) { key(combo, function (e) {
e.preventDefault(); e.preventDefault();
console.log(combo); // console.log(combo);
sendStrMsg(str) sendStrMsg(str)
}); });
} }

@ -370,7 +370,7 @@ var Input = (function() {
if (evt.key) str = evt.key; if (evt.key) str = evt.key;
else if (evt.which) str = String.fromCodePoint(evt.which); else if (evt.which) str = String.fromCodePoint(evt.which);
if (str.length>0 && str.charCodeAt(0) >= 32) { if (str.length>0 && str.charCodeAt(0) >= 32) {
console.log("Typed ", str); // console.log("Typed ", str);
sendStrMsg(str); sendStrMsg(str);
} }
}); });
@ -420,7 +420,7 @@ var Input = (function() {
} }
key(combo, function (e) { key(combo, function (e) {
e.preventDefault(); e.preventDefault();
console.log(combo); // console.log(combo);
sendStrMsg(str) sendStrMsg(str)
}); });
} }

@ -1,7 +1,7 @@
#ifndef USER_MAIN_H_H #ifndef USER_MAIN_H_H
#define USER_MAIN_H_H #define USER_MAIN_H_H
#define FIRMWARE_VERSION "0.6.6+" GIT_HASH #define FIRMWARE_VERSION "0.6.7+" GIT_HASH
#define TERMINAL_GITHUB_REPO "https://github.com/MightyPork/esp-vt100-firmware" #define TERMINAL_GITHUB_REPO "https://github.com/MightyPork/esp-vt100-firmware"
#endif //USER_MAIN_H_H #endif //USER_MAIN_H_H

Loading…
Cancel
Save