From 0fedcf4fcbef6e88561abf044538bd4eff2cc57d Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Wed, 31 Mar 2021 19:27:40 -0700 Subject: [PATCH] Adjust ScrollboxVert and Prepare v0.5.0 for Release --- Changes.md | 14 +++++++------- go.mod | 1 + go.sum | 2 ++ pkg/balance/numbers.go | 2 +- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/Changes.md b/Changes.md index b7f0614..6a2bc9e 100644 --- a/Changes.md +++ b/Changes.md @@ -1,6 +1,6 @@ # Changes -## v0.5.0-alpha +## v0.5.0-alpha (Mar 31 2021) Project: Doodle is renamed to Sketchy Maze in this release. @@ -46,7 +46,7 @@ Updated Doodads: Button is pressed. If the Sticky Button is released later (e.g. by receiving power from a Switch) it releases its linked Buttons as well. -## v0.4.0-alpha +## v0.4.0-alpha (Nov 21 2020) This update brings improvements to the editor; you can now fully draw all the graphics for a custom doodad using the in-app tools! @@ -67,7 +67,7 @@ Other new features: Hitting the Escape key will ask you before just exiting the program. Alert boxes are supported too, and an `alert` command added to the developer console. -## v0.3.0-alpha +## v0.3.0-alpha (Sept 19 2020) This update introduces the player character to the game. He doesn't have a name; the game just refers to him as Boy. @@ -94,7 +94,7 @@ Other new features: - Default size is desktop: 1024x768 - Mobile and landscape mimic a smartphone at 375x812 resolution. -## v0.2.0-alpha +## v0.2.0-alpha (June 7 2020) This release brings Sound Effects and Menus to the game. @@ -110,7 +110,7 @@ New features: * 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 +## v0.1.0-alpha (Apr 13 2020) New doodads: @@ -138,7 +138,7 @@ Other changes: * Tooltips added to various buttons in the Editor to show names of doodads and functions of various buttons. -## v0.0.10-alpha +## v0.0.10-alpha (July 18 2019) New features: @@ -164,6 +164,6 @@ Bug fixes: chunks are now culled when the last pixel is deleted and existing level files will be repaired on next save. -## v0.0.9-alpha +## v0.0.9-alpha (July 9 2019) First alpha release. diff --git a/go.mod b/go.mod index 4541617..80ba884 100644 --- a/go.mod +++ b/go.mod @@ -20,6 +20,7 @@ require ( github.com/kisielk/errcheck v1.4.0 // indirect github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0 // indirect github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f // indirect + github.com/mibk/dupl v1.0.0 // indirect github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff // indirect github.com/robertkrimen/otto v0.0.0-20200922221731-ef014fd054ac github.com/stripe/safesql v0.2.0 // indirect diff --git a/go.sum b/go.sum index 283977b..f2479b9 100644 --- a/go.sum +++ b/go.sum @@ -47,6 +47,8 @@ github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0 h1:+6XJvFZBYbNv/ github.com/mdempsky/maligned v0.0.0-20201101000000-d73c43cb16d0/go.mod h1:3UB4iTzhLciyWcrrvXSkrtCIU+IJ5GCfEmnleHRsxL4= github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f h1:Kc3s6QFyh9DLgInXpWKuG+8I7R7lXbnP7mcoOVIt6KY= github.com/mdempsky/unconvert v0.0.0-20200228143138-95ecdbfc0b5f/go.mod h1:AmCV4WB3cDMZqgPk+OUQKumliiQS4ZYsBt3AXekyuAU= +github.com/mibk/dupl v1.0.0 h1:aZc3jqrF9n0tUHwHt/+jsRxA8cRgA0Gdl56M7W7PoqE= +github.com/mibk/dupl v1.0.0/go.mod h1:pCr4pNxxIbFGvtyCOi0c7LVjmV6duhKWV+ex5vh38ME= github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff h1:lRHufowVGvUvxGsPveAZOpSa/9T5Gpxg6d7UbHCA9MQ= github.com/opennota/check v0.0.0-20180911053232-0c771f5545ff/go.mod h1:tydB+MZxWpY8M/NRu7jQhND/mXuLAPsKcSV6JkzofsA= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= diff --git a/pkg/balance/numbers.go b/pkg/balance/numbers.go index 46ae609..b72ec76 100644 --- a/pkg/balance/numbers.go +++ b/pkg/balance/numbers.go @@ -11,7 +11,7 @@ var ( // Window scrolling behavior in Play Mode. ScrollboxHoz = 256 // horizontal px from window border to start scrol - ScrollboxVert = 128 + ScrollboxVert = 160 // Player speeds PlayerMaxVelocity float64 = 6