meator
meator
I do not consider this change to be fully polished (but I left the code in a better state than it was in). I am open to discussion about the...
**Describe the bug** The `mesonlsp / wrap-test` test is failing with `SIGABRT`. full test log: [testlog.txt](https://github.com/user-attachments/files/19341893/testlog.txt) Relevant snippet from the log (containing several failed `execvp()` invocations, which are likely the...
This makes polkit-protected methods usable in dbus-cxx. These methods usually need a special `ALLOW_INTERACTIVE_AUTHORIZATION` flag to be set in the method call message (this is further documented in the documentation...
The current exception hierarchy looks like this:  This is missing a lot of exceptions. The PR fixes that.
The `DBus::StandaloneDispatcher::dispatch_thread_main()` private member function of `DBus::StandaloneDispatcher` is used as the base function of `std::thread`. Any exceptions raised by this function [will call `std::terminate`](https://en.cppreference.com/w/cpp/thread/thread): > The return value of the...
This should simplify the workflow for contributors and it should make the codebase more consistent. I have handcrafted the `.clang-format` file to match the current coding style as closely as...
closes #174 This PR overwrites the current `doc/customdoxygen.css` to only include unique CSS not present in Doxygen 1.8.13's default CSS file. I will [repeat the diff](https://github.com/dbus-cxx/dbus-cxx/issues/174#issuecomment-2764734331) below for clarity: ```patch...
As I've mentioned in #169, trying to build the website using newer doxygen versions produces unsatisfactory results:  I have analysed the build system and the Doxyfile and came to...
Is this project compatible with Windows? If not, are you willing to accept patches/pull requests providing such support? I wish to bundle a version of `adb` with my open source...
**Describe the feature request** This is a feature request. ```cpp /** * @throws MyError If not successful. */ ``` The problem is that it's impossible to make `MyError` link to...