From 772c3a3aa3f5c8f527215ac739d6f13a2c05af31 Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Wed, 3 Mar 2021 04:01:10 -0800 Subject: [PATCH] v0.5.0 release -- version.go updated --- README.md | 22 +++++++++++++--------- grid/version.go | 5 +++-- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 6ec2e37..8970c42 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,19 @@ If an acronym is required, how about: "Go-rendered interactive drawing" program. # Install +The simple Go install command should work, for modules mode: +```bash +$ go get github.com/goki/grid/cmd/grid +``` + +See [GoKi Install](https://github.com/goki/gi/wiki/Install) for more information and prereqs for different platforms -- if you encounter any difficulties, ensure that GoKi works first. + +Exporting PNG and PDF depends on https://cairosvg.org (which depends on python), install as follows: + +```bash +$ pip3 install cairosvg +``` # Design @@ -44,20 +56,12 @@ Basic functionality now in place: * full undo / redo for everything. -* Preferences (though need to save with svg, optionally) +* Preferences # TODO: -* cairosvg for .png and svg output. - -* mac get oswin first arg - -* icon has too many grid lines -- cut in half - * import svg -- same as marker -* autosave -- go at undosave - * implement the full transform panel * render gradient icons diff --git a/grid/version.go b/grid/version.go index 6ce05ae..ddd9336 100644 --- a/grid/version.go +++ b/grid/version.go @@ -4,6 +4,7 @@ package grid const ( Version = "v0.5.0" - GitCommit = "0e24d4b" // the commit JUST BEFORE the release - VersionDate = "2021-02-11 14:16" // UTC + GitCommit = "ac36bc2" // the commit JUST BEFORE the release + VersionDate = "2021-03-03 12:01" // UTC ) +