Bartek Kryza
Bartek Kryza
@oblique Thanks for creating this tool. I've added a simple extension to enable IP address reservation based on MAC addresses using a simple configuration file, which generates relevant `dhcp-host` entries...
Create installable cmake script allowing users to directly invoke clang-uml with required options from CMake.
Extend `layout` configuration parameter with support for `together` PlantUML directive, which allows enumeration of elements which should be rendered close to each other with respect to other diagram elements...
Currently, dependency relationships are always rendered, even if a more specific relationships already exists between the 2 classes (e.g. containment or extension), which can be due to for instance a...
Currently the order in which the elements are generated in the PlantUML file is unspecified, depending typically on the order in which they are visited. This leads to suboptimal diagram...
Currently `inja` templates can only use the raw comment string of an entity such as class or method. Since `libclang` supports comment introspection and parsing: https://clang.llvm.org/doxygen/group__CINDEX__COMMENT.html it should be possible...
Add at least basic support for generation of Mermaid (https://mermaid-js.github.io) diagrams in addition to PlantUML...
Hi, I had a small problem with cells which had nonzero corner radius and shadow as well as some scale transform (e.g. on selected cells). The properties were not copied...
Currently methods and fields in classes are rendered in diagrams in no particular order. Preferably they should be ordered based on their access, sorted by name and also: * Constructors...
Currently sequence diagrams do not support traversing call expressions through template code (methods and functions). This should be possible now after rewrite to LibTooling...