From 428177e5b73635ca57ae0a73e158c8927c70c3bf Mon Sep 17 00:00:00 2001 From: Scott Richmond Date: Tue, 8 Jul 2025 16:57:36 -0400 Subject: [PATCH 1/2] update release script to build in release --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index da2a169..0dae6bc 100644 --- a/justfile +++ b/justfile @@ -27,10 +27,10 @@ git_status := `git status -s` # publish this branch into release release: echo {{ if git_status == "" {"git status ok"} else {error("please commit changes first")} }} - just build - -git commit -am "release build" git checkout release git merge {{from_branch}} + just build + -git commit -am "release build" git push git checkout {{from_branch}} From 368494033561b0a37b1ea2acff0a9dc8cb3ccec8 Mon Sep 17 00:00:00 2001 From: Matt Nish-Lapidus Date: Wed, 9 Jul 2025 14:25:58 -0400 Subject: [PATCH 2/2] removing some old logging in p5 --- pkg/p5.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/p5.js b/pkg/p5.js index 3df8cfd..c4285e2 100644 --- a/pkg/p5.js +++ b/pkg/p5.js @@ -68,7 +68,7 @@ export function p5 (commands) { const new_state = command_to_state(prev_state, this_command) all_states[turtle_id].push(new_state) } - console.log(all_states) + const [r, g, b, _] = resolve_color(background_color) if ((r + g + b)/3 > 128) set_turtle_color([0, 0, 0, 150]) const p5_calls = [...p5_call_root()]