s-hadinger

Results 17 issues of s-hadinger

## Description: Minor updates to BearSSL to match the latest changes. Very minor impact, users shouldn't see any differences. Applied commits: https://github.com/earlephilhower/bearssl-esp8266/commit/946f5bad7683aa79a9f4fcab760206e2aad8c555 https://github.com/earlephilhower/bearssl-esp8266/commit/dda1f8a0c46e15b4a235163470ff700b2f13dcc5 https://github.com/earlephilhower/bearssl-esp8266/commit/79b1a9996c094ff593ae50bc4edc1f349f39dd6d https://github.com/earlephilhower/bearssl-esp8266/commit/d40d23b60cf1a42188a441b59226db35da234fea https://github.com/earlephilhower/bearssl-esp8266/commit/6a691e6995489248a82fede6dc845164e8886a72 https://github.com/earlephilhower/bearssl-esp8266/commit/46f7dddce75227f2e40ab94d66ceb9f19ee6b1b0 Reverted commit (which...

on hold by dev team

Add `epoch` field to `time.dump`

Fix potential crash when parsing hex. See #287

Make strict mode even stricter and forbid declaring a local variable with the same name as a builtin. A common mistake was to call a local variable `size` and hide...

Fix compilation warning for 32 bit integers. Add ability to specify a class name when solidifying a function (4th argument of solidify.dump()), which adds a class name prefix to the...

Previously the max size for `bytes()` object was 32KB. For ESP32 this is reasonable, but too small when attached PSRAM of 4/8 MB. It is now possible to change the...

### LVGL version v9.0.0 ### What happened? In Tasmota, we have the same build for devices with PSRAM or without PSRAM. With PSRAM we can set `define LV_CACHE_DEF_SIZE` to a...

stale

Fix a bug when using walrus operator with SETMEMBER or SETINDEX: ```berry a = 1 import global def f() print(global.a := 42) end ``` When dumping f: ```C ( &(const...

See @405. Add: - `string.startswith(hay:string, needle:string [, case_insensitive:bool]) -> bool` - `string.endswith(hay:string, needle:string [, case_insensitive:bool]) -> bool` These new methods are lightweight, allow for case sensitive or case insensitive matches,...

@skiars Are you ok to add: - `string.startswith(hay:string, needle:string [, case_insensitive:bool]) -> bool` - `string.endswith(hay:string, needle:string [, case_insensitive:bool]) -> bool` After writing some decent amount of code, it is quite...