diff --git a/CHANGELOG.md b/CHANGELOG.md index 1592e78..e09b6b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.4.0 + +- add `contours` sub-command with glyph contour number reporting +- change bold cyan glyph name color to bright bold cyan for sub-commands that use this color +- add `stringbuilder.cyan_text` function +- add `stringbuilder.cyan_bright_text` function + ## v0.3.1 - source cleanup diff --git a/README.md b/README.md index 4ac6023..b2f1b33 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Path Inspector is a TTF font curve path inspection application. The Python pack The following sub-commands are available: +- `contours`: path contour number report (as of v0.4.0) - `coordinates`: path coordinates report (as of v0.3.0) - `direction`: outermost contour path direction report (as of v0.2.0) - `path`: curve path report diff --git a/lib/pathins/__init__.py b/lib/pathins/__init__.py index 89ba78e..9e36ddf 100644 --- a/lib/pathins/__init__.py +++ b/lib/pathins/__init__.py @@ -1,3 +1,3 @@ #!/usr/bin/env python3 -version = __version__ = "0.3.2-dev0" +version = __version__ = "0.4.0"