Skip to content

Commit 323180e

Browse files
committed
Support for new ggplotd version
1 parent abf1fe2 commit 323180e

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

dub.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"excludedSourceFiles": ["source/main.d"],
1010
"targetPath": "bin",
1111
"dependencies": {
12-
"ggplotd": ">=0.4.13",
12+
"ggplotd": ">=0.4.14",
1313
"dunit": "~>1.0.11",
1414
"docopt": ">=0.6.1-b.4"
1515
},

source/plotcli/geom.d

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ private string generateToGeom()
1111
{
1212
//auto name = m.stringof;
1313
static if (name.length > 6 && name[0..4] == "geom"
14+
&& name != "geomRectangle"
15+
&& name != "geomEllipse"
16+
&& name != "geomDiamond"
17+
&& name != "geomTriangle"
1418
&& name != "geomAxis" )
1519
{
1620
str ~= "if (type == q{" ~ name[4..$].toLower ~ "})\n";

0 commit comments

Comments
 (0)