Prepare v0.7.0 for release

loading-screen
Noah 2021-06-20 13:10:23 -07:00
parent 386e0b2b0c
commit 53123dff1d
2 changed files with 2 additions and 7 deletions

View File

@ -1,6 +1,6 @@
# Changes
## v0.7.0 (TBD)
## v0.7.0 (June 20 2021)
This is the first release of the game where the "free version" drifts meaningfully
away from the "full version". Free versions of the game will show the label

View File

@ -169,12 +169,7 @@ func (u *EditorUI) SetupMenuBar(d *Doodle) *ui.MenuBar {
toolMenu.AddItem("Edit Palette", func() {
u.OpenPaletteWindow()
})
if u.Scene.DrawingType == enum.LevelDrawing {
toolMenu.AddItemAccel("Doodads", "d", func() {
log.Info("Open the DoodadDropper")
u.doodadWindow.Show()
})
} else if u.Scene.DrawingType == enum.DoodadDrawing {
if u.Scene.DrawingType == enum.DoodadDrawing {
toolMenu.AddItem("Layers", func() {
u.OpenLayersWindow()
})