- Msys experimental packages are included in release artifacts #2130
- CMake build system incorrectly aliases gv2gml to gml2gv #2131
- Gv2gml Doesn't escape quotes in attributes #1276
+- GVPR incorrectly understands color schemes #1956
## [2.49.1] – 2021-09-22
char* ss; /* second slash */
char* c2; /* second char */
- if ((*str == 'b') || !strncmp(str+1,"lack",4)) return str;
- if ((*str == 'w') || !strncmp(str+1,"hite",4)) return str;
- if ((*str == 'l') || !strncmp(str+1,"ightgrey",8)) return str;
+ if (strncmp(str, "black", strlen("black")) == 0) return str;
+ if (strncmp(str, "white", strlen("white")) == 0) return str;
+ if (strncmp(str, "lightgrey", strlen("lightgrey")) == 0) return str;
if (*str == '/') { /* if begins with '/' */
c2 = str+1;
if ((ss = strchr(c2, '/'))) { /* if has second '/' */