Francesco Gazzetta
Francesco Gazzetta
Hi, I maintain the NixOS package for lobster, and I noticed there are some vendored packages in `dev/external`. This causes longer build times, and makes it difficult to keep them...
For downstream package maintainers it would be great to have release tags!
I'm also adding a ci job to ensure that the changelog is already there at release time, if you don't mind Signed-off-by: Francesco Gazzetta
## The icon I want is: * Name: Matrix * URL: https://matrix.org * Link to icon: https://github.com/matrix-org/matrix.org/blob/master/content/matrix%20logo.svg often shortened to https://github.com/vector-im/logos/blob/master/matrix/matrix%20favicon.svg * Vector version of the logo: see above *...
## The icon I want is: * Name: Fediverse * URL: it isn't a single platform so https://en.wikipedia.org/wiki/Fediverse * Link to icon: the most used one is https://commons.wikimedia.org/wiki/File:Fediverse_logo_proposal.svg or https://commons.wikimedia.org/wiki/File:Fediverse_logo_proposal_(mono_version).svg...
#254 got closed but only acqtime was fixed. the percentage calculation still has to be adjusted according to the new mV values in the table. See https://github.com/daniel-thompson/wasp-os/issues/254#issuecomment-927263942
Binary upload is _way_ faster now! The old encoding had a 300% overhead Base64 has a 33% overhead Signed-off-by: Francesco Gazzetta
From IRC: 12/26/2021, 2:30:55 PM - danielt: fgaz: Best way to make more space would be to switch to a peripheral-only BLE stack (e.g. different softdevice and relinking of bootloader...
To reproduce: * create a dummy `IHaveALongNameApp` * start the watch * it will hang on `main.py`
works: ```python s = "testwithareallylongname" draw.string(s[:(draw.wrap(s, 240)[1])], 0, 200) ``` crashes: ```python s = "testwithareallylongname" draw.string(s[:(draw.wrap(s, 240)[1])], 0, 200, width=240) ``` trace: ``` [omitted] draw.string(s[:(draw.wrap(s, 240)[1])], 0, 200, width=240) File...