Alex2772
Alex2772
We have a build machine with persisting AUI.Boot cache (`~/.aui`) which repeatedly runs out of disk space because of AUI's cache. Because we often update our dependencies' versions, the older...
At the moment, `auib_import` does not track updates on branches. It's seems unclear to people because they assume by specifying a branch aui boot will somehow keep the dependency up-to-date....
This one appears rarely on every platform. [job-logs.txt](https://github.com/aui-framework/aui/files/14628232/job-logs.txt)
We are using httpbin.org to test aui.curl. Recently, the service became unstable and failing to respond apparently failing our aui.curl tests. I had to [temporarily disable these tests](https://github.com/aui-framework/aui/commit/b7ef9331b22681742873d1a0a0b38364d3e7f681). We need...
This discussion is started in #261. Summary: we need a way to keep order of fields in `AJson` (`Json::Object`). I generally agree that order should be kept in json objects,...
Addresses #243
Migrate to d3d9/10/11 under Windows. Milestones: - [x] Put all GL and software renderer related stuff to a namespace - [x] Develop a DSL for shaders compiling to software renderer...
Currently, AUI uses X11 windowing system on Linux platform. Wayland windowing system is raising in popularity, also, major Linux distributions like Ubuntu and Fedora abandoning X11 session support, thus AUI...
When Ninja is used, everything is OK. When visual studio generator used, when CMAKE_BUILD_TYPE is not set, hence aui.boot builds dependencies with debug build type, breaking linking with the application.
```cpp auto surface = _new ...; connect(clicked, surface, [surface]() { ... }); ``` In this example, `surface` is referenced in signal-slot connection lambda, causing the surface to never destroy by...