Benjamin Maxwell
Benjamin Maxwell
- Now supports using `g++` to compile the generated C++ - Allow setting the compiler to use via the `CXX` environment variable - Disable windows deprecation warnings with `_CRT_SECURE_NO_DEPRECATE=1` rather...
This is my attempt at implementing @AtkinsSJ suggestion from #14564 > One issue I'm not sure about, which doesn't have to be fixed here, is how to deal with gradients...
To reproduce this just set .innerHTML over and over in some kind of loop. Eventually you'll OOM, or the number of tasks non-runable tasks in the EventLoop will grow so...
It does not seem like it's currently possible to remove all buttons from a message when handling an interaction with `createInteractionResponse()`. To remove all buttons/components you must set the `components`...
This PR allows for uploading files directly from memory (a feature I needed). ```c++ uploadFile(Snowflake channelID, uint8_t* buffer, size_t buffer_len, std::string message, std::string filename) ``` **Note!** This PR changes the...
Use ``AvailableFlag`` in ``SleepyDiscord::Server`` and correct typo within ``AvailableFlag`` (available -> Available)
If you attempt to render any 3D object onto an RGBA image (with a transparent background -- initially the image is all zeros), any shaded areas of the object will...
For example, if you use class `ComponentType` (from `ocpp.v201.datatypes`) Which looks like this: ```py @dataclass class ComponentType: name: str instance: Optional[str] = None evse: Optional[EVSEType] = None ``` and create...
This is an initial implementation of the `backdrop-filter` CSS property, there's still a few missing bits and a bunch of new `FIXME`s, but it seems to work fairly well. See...