diff --git a/dub.json b/dub.json index e1aebeb..8f5048b 100644 --- a/dub.json +++ b/dub.json @@ -9,7 +9,7 @@ "excludedSourceFiles": ["source/main.d"], "targetPath": "bin", "dependencies": { - "ggplotd": ">=0.4.13", + "ggplotd": ">=0.4.14", "dunit": "~>1.0.11", "docopt": ">=0.6.1-b.4" }, diff --git a/source/plotcli/geom.d b/source/plotcli/geom.d index 794fd09..0324565 100644 --- a/source/plotcli/geom.d +++ b/source/plotcli/geom.d @@ -11,6 +11,10 @@ private string generateToGeom() { //auto name = m.stringof; static if (name.length > 6 && name[0..4] == "geom" + && name != "geomRectangle" + && name != "geomEllipse" + && name != "geomDiamond" + && name != "geomTriangle" && name != "geomAxis" ) { str ~= "if (type == q{" ~ name[4..$].toLower ~ "})\n";