Grische
Grische
@darkdragon-001 we are currently reworking how firmware is released and we will take the autoupdater's existing version into account when redirecting the autoupdater to the correct folder. See https://github.com/freifunkMUC/ffmuc-salt-public/pull/165 As...
Yes, the PDF has images embedded: [kb-terraform.pdf](https://github.com/user-attachments/files/17016298/kb-terraform.pdf)
Would it be possible to strip the pictures instead of throwing an error? Or have a more clear error message?
@dglogo are you interested in this PR and do you want me to continue rebasing it or is there no interest?
If you prefer a single file solution (because someone has embedded this into their project using a raw GitHub link to the file), we can of course also create a...
@mholt I also think that other types but `int` might be actually harmful for many use cases. Imagine one is an ID and this ID is of int64 and just...
I have prepared a commit for the new flag: a930048d431d32f085eb7d7574ca6ccba74eb17c Once we have decided on how to proceed with #144 , I can update this PR.
I created a simple case that seems to reproduce the above valgrind errors from `Msg::allocateBuffer`: https://github.com/grische/cgru/tree/valgrind-repro-case
This has nothing to do with any bug, it's just code improvements that make it easier to work on the cgru code.
nullptr avoids using implicit casts in the process and generally speaking highly recommended over using the NULL macro in C++. That's a pretty nice article explaining the differences: https://dzone.com/articles/what-exactly-nullptr-is-in-c The...