Compare commits
5
Commits
1.1.0-rev2
...
1.1.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0012c92c4a | ||
|
|
0e8af5712b | ||
|
|
51e97232c5 | ||
|
|
7e2491cd7b | ||
|
|
cd79d5cf25 |
@@ -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)
|
- **User-friendly comprehensive WiFi configuration** (Demo: [WiFi][demo-wifi], [network][demo-network] config)
|
||||||
- Static IP, DHCP, channel selection, power
|
- Static IP, DHCP, channel selection, power
|
||||||
- SSID search utility for finding your existing network
|
- 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
|
## Running ESPTerm
|
||||||
|
|
||||||
|
|||||||
+1
-1
Submodule front-end updated: d7551c3ea9...e3b21adc45
+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');
|
sprintf(buf, "\x1b[<%d;%d;%d%c", eventcode, x, y, (evt == 'p'||(evt=='m'&&button>0)) ? 'M' : 'm');
|
||||||
}
|
}
|
||||||
else if (mte == MTE_URXVT) {
|
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);
|
UART_SendAsync(buf, -1);
|
||||||
|
|||||||
+2
-2
@@ -1684,10 +1684,10 @@ screenSerializeToBuffer(char *buffer, size_t buf_len, void **data)
|
|||||||
|
|
||||||
if (repCnt == 0) {
|
if (repCnt == 0) {
|
||||||
// No repeat
|
// No repeat
|
||||||
bool changeAttrs = cell0->attrs != ss->lastAttrs;
|
bool changeAttrs = cell0->attrs != ss->lastAttrs || i==0;
|
||||||
bool changeFg = cell0->fg != ss->lastFg;
|
bool changeFg = cell0->fg != ss->lastFg;
|
||||||
bool changeBg = cell0->bg != ss->lastBg;
|
bool changeBg = cell0->bg != ss->lastBg;
|
||||||
bool changeColors = changeFg && changeBg;
|
bool changeColors = (changeFg && changeBg) || i==0;
|
||||||
Color fg, bg;
|
Color fg, bg;
|
||||||
|
|
||||||
// Reverse fg and bg if we're in global reverse mode
|
// 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_MAJOR 1
|
||||||
#define FW_V_MINOR 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 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
|
#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