Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
51e97232c5 | ||
|
|
7e2491cd7b | ||
|
|
cd79d5cf25 | ||
|
|
6e2978492b | ||
|
|
0d0246b12b |
@@ -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
Submodule front-end updated: b2174fc528...53a6ab4a84
+1
-1
@@ -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
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user