Tim Ebbeke
Tim Ebbeke
In the postgresql/statement.cpp are 2 functions that might not be used ever. This is "just" a warning, but since there is a -Werror somewhere, they become errors. Since these two...
Please consider adding optional support for setting the environment variables on process creation. On Windows: lpEnvironment On Linux: execle instead of execl
The following does not work using clang 14 ```c++ auto promise = newPromise([](Defer d){ /*...*/ }); promise.then([bla]() mutable { }); ``` with "call_traits.hpp:135:20: error: call to pointer to member function...
Is there a way to disable items, so they cannot be activated? I have menu items that are locked behind permissions and other requirements that I dont necessarily want to...
The line where the boost libraries are added is not portable `set(NANA_LINKS "${NANA_LINKS} -lboost_filesystem -lboost_system")` My MSYS2 libraries are suffixed with -mt (multithread build). rather use cmake utilities such as...
Error in following example https://github.com/qPCR4vir/nana-demo/blob/master/Examples/png.cpp#L14 should be: `#elif defined(NANA_ENABLE_JPEG)`
Building with -pedantic-errors -pedantic does not allow redundant semicolons.
There currently is an issue with ninja builds where ninja does not respect the build order between the frontend and backend target, probably related to this old issue: https://gitlab.kitware.com/cmake/cmake/-/issues/19933 I...
There is another thing in my fork, that this library does not permit, and that is passing of ICoreWebView2EnvironmentOptions. I did not contribute this change, because its platform dependent, but...
I need to detour/hook on_message, because my use case does not work with the default implementation. I have been doing this on a fork for some time: https://github.com/webview/webview/commit/3528e6ad641e7633808b2dd590a07234da174d5e (linked commit...