Compare commits

...
5 Commits
Author SHA1 Message Date
MightyPork 0012c92c4a added front-end patch 2017-09-14 23:24:35 +02:00
MightyPorkandGitHub 0e8af5712b add info about the mailing list 2017-09-14 01:34:47 +02:00
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
5 changed files with 15 additions and 5 deletions
+10
View File
@@ -47,6 +47,16 @@ can be read on the About page of the demo).
- **User-friendly comprehensive WiFi configuration** (Demo: [WiFi][demo-wifi], [network][demo-network] config)
- Static IP, DHCP, channel selection, power
- SSID search utility for finding your existing network
## Bugs? Ideas?
To ask any questions or discuss new features you'd like to see added, it's best to use
the **[ESPTerm Dev mailing list](https://groups.google.com/forum/#!forum/espterm-dev)**
Subscribe to the mailing list to also receive new release announcements.
If you found a bug (that happens alot!), please submit it to our [bug tracker](https://github.com/espterm/espterm-firmware/issues).
We also use it to track planned ideas. If you don't want to create a GitHub account for that, just send it to the mailing list.
## Running ESPTerm
+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 2
#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