Prepare v0.2.0-alpha for release

modals
Noah 2020-06-06 20:52:29 -07:00
parent 8964322f4e
commit dabf88dff8
3 changed files with 18 additions and 2 deletions

View File

@ -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:

View File

@ -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: "#"

View File

@ -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"