Compare commits

...
3 Commits
Author SHA1 Message Date
MightyPork 8cc9ae8df4 Merge branch 'patch-clickbuttons' 2018-01-21 14:08:55 +01:00
MightyPork 6971fe2036 v bump 2018-01-21 14:08:38 +01:00
MightyPork 9f97d5c9d1 bugfix for the clickbuttons not working 2018-01-21 14:07:54 +01:00
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ esphttpdconfig.mk
# Garbage added by CLion
.idea/
cmake-build-debug/
cmake-build-debug*/
.sass-cache
*.map
+4 -2
View File
@@ -124,8 +124,10 @@ enum CursorShape {
X(char, font_stack, [TERM_FONTSTACK_LEN], /**/, xget_string, xset_string, TERM_FONTSTACK_LEN, /**/, 1) \
X(u8, font_size, /**/, /**/, xget_dec, xset_u8, NULL, /**/, 1)
#define TERM_BM_N(tc, n) ((tc)->bm1+(TERM_BTN_MSG_LEN*n))
#define TERM_BTN_N(tc, n) ((tc)->btn1+(TERM_BTN_LEN*n))
/** Get button N message from the passed config structure pointer */
#define TERM_BM_N(tc, n) ((tc)->bm1+(TERM_BTN_MSG_LEN*(n)))
/** Get button N text from the passed config structure pointer */
#define TERM_BTN_N(tc, n) ((tc)->btn1+(TERM_BTN_LEN*(n)))
/** Export color for config */
void xget_term_color(char *buff, u32 value);
+1 -1
View File
@@ -10,7 +10,7 @@
#define FW_V_MAJOR 2
#define FW_V_MINOR 3
#define FW_V_PATCH 0
#define FW_V_PATCH 1
#define FW_V_SUFFIX ""
#define FW_CODENAME "Cricket" // 2.3
#define FW_CODENAME_QUOTED "\""FW_CODENAME"\""