Nolan Kramer
Nolan Kramer
We currently only support removing nodes by userId. We should also support removing nodes by id (which will give slightly faster removal time).
The implementation that added isolated nodes seems to be assuming that `nodeOpt` will always have a value. This is untrue if the node does not exist: ``` template void Graph::removeNode(const...
Type: Bug 1. Use a CMakePresets.json 2. Set the environment PATH to anything noticeable. Such as below: ``` "configurePresets": [ { ... "environment": { "PATH": "blah" } ... } ```...
cc @ZigRazor @sbaldu What is the general direction this project should go? OSS-copyleft? FOSS? Doesn't matter? - For OSS-copyleft, AGPL or GPL seems fine. Forces users to make their code...
Currently, if a node's inputs or outputs are updated, the embedded QWidget's position will remain unchanged - possibly occluding the new ports' captions. This code fixes that issue, and moves...
The current function signature of `CXXGraph::Node::getData()` is: ``` template const T &Node::getData() const { return data; } ``` This prevents users from modifying their stored data without `const_cast`. We should...
This project has a lot of dependent projects and people building on top of it. Getting good changes merged upstream helps everyone develop improvements more easily and reduces infrastructure headache...
Fixes https://github.com/google/flatbuffers/issues/8403 https://github.com/google/flatbuffers/pull/8286 can be closed.
This issue includes the issue pointed to by https://github.com/google/flatbuffers/issues/8144, but was never actually fixed upstream due to developer inactivity. As such, I'm riving their issue, and expanding on it -...
CMake Configuration can fail when building as a code dependency due to find_package(glslang CONFIG)
**Describe the bug** When including vsg as a code dependency in another project (as a submodule or FetchContent) AND the encompassing project is using glslang as a code dependency -...