Nolan Kramer

Results 14 issues of 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).

enhancement
good first issue
development
core
Priority:Medium
hacktoberfest

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...

bug
enhancement
good first issue
core
Priority:High

Type: Bug 1. Use a CMakePresets.json 2. Set the environment PATH to anything noticeable. Such as below: ``` "configurePresets": [ { ... "environment": { "PATH": "blah" } ... } ```...

more info needed
repro needed

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...

Priority:Critical
Under Review

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...

enhancement
good first issue
core
Priority:Medium

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.

c++
codegen

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 -...

**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 -...