Skip to content

Commit

Permalink
v0.5.0 release -- version.go updated
Browse files Browse the repository at this point in the history
  • Loading branch information
Randall C. O'Reilly committed Mar 3, 2021
1 parent ac36bc2 commit 772c3a3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions grid/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

0 comments on commit 772c3a3

Please sign in to comment.