diff --git a/Changes.md b/Changes.md index 526b473..dc868cc 100644 --- a/Changes.md +++ b/Changes.md @@ -1,5 +1,21 @@ # Changes +## v0.2.0-alpha + +This release brings Sound Effects and Menus to the game. + +New features: + +* Added some User Documentation to ship with the game which teaches you how to + create your own custom Doodads and program them with JavaScript. More + documentation to come with time. +* Sound effects! Several doodads have a first pass at sound effects using some + free sounds I found online. More doodads still need sounds and the existing + sounds are by no means final. Buttons, switches, doors and keys have sound + effects so far. +* The game now has a Menu Bar with pull-down menus in the Editor Mode instead + of just a top panel with New/Save/Open buttons. + ## v0.1.0-alpha New doodads: diff --git a/dev-assets/guidebook/mkdocs.yml b/dev-assets/guidebook/mkdocs.yml index d734914..b6b75f3 100644 --- a/dev-assets/guidebook/mkdocs.yml +++ b/dev-assets/guidebook/mkdocs.yml @@ -2,7 +2,7 @@ site_name: "Project: Doodle Guidebook" nav: - Home: index.md - About: about.md - - "Custom Doodads": custom-doodads/ + - "Custom Doodads": custom-doodads/index.md markdown_extensions: - toc: permalink: "#" diff --git a/pkg/branding/branding.go b/pkg/branding/branding.go index fc75262..ec7c943 100644 --- a/pkg/branding/branding.go +++ b/pkg/branding/branding.go @@ -4,7 +4,7 @@ package branding const ( AppName = "Project: Doodle" Summary = "A drawing-based maze game" - Version = "0.1.0-alpha" + Version = "0.2.0-alpha" Website = "https://www.kirsle.net/tagged/Doodle" Copyright = "2020 Noah Petherbridge"