diff --git a/Makefile b/Makefile index 172328b..6eebf7b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ SHELL := /bin/bash -VERSION=$(shell grep -e 'Version =' pkg/doodle.go | head -n 1 | cut -d '"' -f 2) +VERSION=$(shell grep -e 'Version =' pkg/branding/branding.go | head -n 1 | cut -d '"' -f 2) BUILD=$(shell git describe --always) BUILD_DATE=$(shell date -Iseconds) CURDIR=$(shell curdir) diff --git a/assets/wallpapers/white.png b/assets/wallpapers/white.png new file mode 100644 index 0000000..058f66c Binary files /dev/null and b/assets/wallpapers/white.png differ diff --git a/pkg/menu_scene.go b/pkg/menu_scene.go index ef89421..ff7f6a3 100644 --- a/pkg/menu_scene.go +++ b/pkg/menu_scene.go @@ -154,15 +154,19 @@ func (s *MenuScene) setupNewWindow(d *Doodle) error { {"Unbounded", level.Unbounded}, {"Bounded", level.Bounded}, {"No Negative Space", level.NoNegativeSpace}, - {"Bordered", level.Bordered}, + // {"Bordered (TODO)", level.Bordered}, } for _, t := range types { - // Hide some options for the free version of the game. - if balance.FreeVersion { - if t.Value != level.Bounded { - continue - } - } + // TODO: Hide some options for the free version of the game. + // - At launch only Bounded and Bordered will be available + // in the shareware version. + // - For now, only hide Bordered as it's not yet implemented. + // -------- + // if balance.FreeVersion { + // if t.Value == level.Bordered { + // continue + // } + // } func(t typeObj) { radio := ui.NewRadioButton(t.Name, @@ -211,7 +215,8 @@ func (s *MenuScene) setupNewWindow(d *Doodle) error { {"Notebook", "notebook.png"}, {"Blueprint", "blueprint.png"}, {"Legal Pad", "legal.png"}, - {"Placemat", "placemat.png"}, + {"Pure White", "white.png"}, + // {"Placemat", "placemat.png"}, } for _, t := range wallpapers { func(t wallpaperObj) {