From f2a20808ea1a5fdeee7dca787ba54ebbe187ca49 Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Thu, 18 Apr 2024 23:07:25 -0700 Subject: [PATCH] Fix bootstrap.py script --- Changes.md | 11 +++++++++++ bootstrap.py | 1 + 2 files changed, 12 insertions(+) diff --git a/Changes.md b/Changes.md index 479195b..25b36e8 100644 --- a/Changes.md +++ b/Changes.md @@ -42,6 +42,17 @@ Some minor changes: * When JavaScript exceptions are caught in doodad scripts, the error message will now include the Go and JavaScript stack traces to help with debugging. * The game window maximizes on startup to fill the screen. +* Fixed a few places where the old "Load Level" menu was being called instead + of the fancy new one with the listbox. + +Some code cleanup and architecture changes: + +* Create a clean build process for FOSS versions of the game, which won't + include any license registration code or proprietary features reserved for + first-party releases of the game. +* Dust off the WebAssembly build of the game: thanks to browser innovations + performance is very good! But many UI elements fail to draw properly and it + is not very usable yet. ## v0.13.2 (Dec 2 2023) diff --git a/bootstrap.py b/bootstrap.py index 2e8d4d9..b20e30e 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -118,6 +118,7 @@ def patch_gomod(): "\n\nreplace git.kirsle.net/go/render => {root}/deps/render\n" "replace git.kirsle.net/go/ui => {root}/deps/ui\n" "replace git.kirsle.net/go/audio => {root}/deps/audio\n" + "replace git.kirsle.net/SketchyMaze/dpp => {root}/deps/dpp\n" .format(root=ROOT) )