Good ideas - I will think about them. Adding more ways to resize nodes might be a bit too complicated though. And right now I'm not really sure how to interpret point 1.
Point 4 is already possible to do yourself if you have connected pro - you can add new node types (see documentation). Create a new entry in DefsStandard.json and a new C# file in the Config folder. If necessary you can also add another C# file in the Execution folder. The config C# file could look like this, for example:
using RatKing.Connected.Config;
[NodeConfigType("lbl")]
public class NodeConfig_Label : NodeConfig {
public override void Build(IBuildableNode node, CreationMode creationMode) {
node.SetNodeTitle("Label");
node.SetNodeWidth(220, 800); // it's resizable!
node.SetNodeHeight(90, 600);
node.TypeString("value", "Value);
}
}What do you mean by "no box"?