Compare commits

...
5 Commits
Author SHA1 Message Date
MightyPork 51e97232c5 version bump to 1.1.1 2017-09-14 00:16:08 +02:00
MightyPork 7e2491cd7b fix broken urxvt mouse reports 2017-09-14 00:11:43 +02:00
MightyPork cd79d5cf25 fix #172 2017-09-13 23:32:18 +02:00
MightyPork 6e2978492b oops messed up front-end 2017-09-13 02:22:54 +02:00
MightyPork 0d0246b12b updated branch cfg in .gitmodules 2017-09-13 01:40:33 +02:00
5 changed files with 6 additions and 5 deletions
+1
View File
@@ -1,6 +1,7 @@
[submodule "libesphttpd"]
path = libesphttpd
url = git@github.com:MightyPork/libesphttpd.git
branch = master
[submodule "front-end"]
path = front-end
url = git@github.com:espterm/espterm-front-end.git
+1 -1
View File
@@ -223,7 +223,7 @@ void ICACHE_FLASH_ATTR sendMouseAction(char evt, int y, int x, int button, u8 mo
sprintf(buf, "\x1b[<%d;%d;%d%c", eventcode, x, y, (evt == 'p'||(evt=='m'&&button>0)) ? 'M' : 'm');
}
else if (mte == MTE_URXVT) {
sprintf(buf, "\x1b[%d;%d;%dM", (u8)(32+eventcode), (u8)(32+x), (u8)(32+y));
sprintf(buf, "\x1b[%d;%d;%dM", (u8)(32+eventcode), (u8)(x), (u8)(y));
}
UART_SendAsync(buf, -1);
+2 -2
View File
@@ -1684,10 +1684,10 @@ screenSerializeToBuffer(char *buffer, size_t buf_len, void **data)
if (repCnt == 0) {
// No repeat
bool changeAttrs = cell0->attrs != ss->lastAttrs;
bool changeAttrs = cell0->attrs != ss->lastAttrs || i==0;
bool changeFg = cell0->fg != ss->lastFg;
bool changeBg = cell0->bg != ss->lastBg;
bool changeColors = changeFg && changeBg;
bool changeColors = (changeFg && changeBg) || i==0;
Color fg, bg;
// Reverse fg and bg if we're in global reverse mode
+1 -1
View File
@@ -7,7 +7,7 @@
#define FW_V_MAJOR 1
#define FW_V_MINOR 1
#define FW_V_PATCH 0
#define FW_V_PATCH 1
#define FIRMWARE_VERSION STR(FW_V_MAJOR) "." STR(FW_V_MINOR) "." STR(FW_V_PATCH)
#define FIRMWARE_VERSION_NUM (FW_V_MAJOR*1000 + FW_V_MINOR*10 + FW_V_PATCH) // this is used in ID queries