From 8108bbacc2bc9ee27500e7db35ad1e7bb95d5d46 Mon Sep 17 00:00:00 2001 From: Tito Ebiwonjumi Date: Sat, 16 Dec 2023 16:26:24 -0600 Subject: [PATCH 1/3] Editing pianoStageMorph --- src/cloud | 2 +- src/widgets.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cloud b/src/cloud index a5e6a36549..f68f3c8e95 160000 --- a/src/cloud +++ b/src/cloud @@ -1 +1 @@ -Subproject commit a5e6a36549e92e789593e453258d571b547e70df +Subproject commit f68f3c8e95e2e80d8e7cc0687e720d103818fafa diff --git a/src/widgets.js b/src/widgets.js index 0446d522e5..de4eaa8318 100644 --- a/src/widgets.js +++ b/src/widgets.js @@ -3286,7 +3286,7 @@ PianoMenuMorph.prototype.init = function ( this.soundType = soundType; PianoMenuMorph.uber.init.call(this, target, null, environment, fontSize); choices = { - 'C (36)' : 36, + 'C 3' : 36, 'D (38)' : 38, 'C# (37)' : 37, 'E (40)' : 40, From dc79ae5d8dfcaeb72b38dbb2da0fb4e10ccc474e Mon Sep 17 00:00:00 2001 From: Oluwatito Ebiwonjumi <31973148+ebiwonjumit@users.noreply.github.com> Date: Tue, 19 Dec 2023 11:58:17 -0600 Subject: [PATCH 2/3] Changed PianoKeyMorph label --- src/widgets.js | 98 +++++++++++++++++++++++++------------------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/src/widgets.js b/src/widgets.js index de4eaa8318..6e694954e0 100644 --- a/src/widgets.js +++ b/src/widgets.js @@ -3286,55 +3286,55 @@ PianoMenuMorph.prototype.init = function ( this.soundType = soundType; PianoMenuMorph.uber.init.call(this, target, null, environment, fontSize); choices = { - 'C 3' : 36, - 'D (38)' : 38, - 'C# (37)' : 37, - 'E (40)' : 40, - 'Eb (39)' : 39, - 'F (41)' : 41, - 'G (43)' : 43, - 'F# (42)' : 42, - 'A (45)' : 45, - 'G# (44)' : 44, - 'B (47)' : 47, - 'Bb (46)' : 46, - 'C (48)' : 48, - 'D (50)' : 50, - 'C# (49)' : 49, - 'E (52)' : 52, - 'Eb (51)' : 51, - 'F (53)' : 53, - 'G (55)' : 55, - 'F# (54)' : 54, - 'A (57)' : 57, - 'G# (56)' : 56, - 'B (59)' : 59, - 'Bb (58)' : 58, - 'C (60)' : 60, - 'D (62)' : 62, - 'C# (61)' : 61, - 'E (64)' : 64, - 'Eb (63)' : 63, - 'F (65)' : 65, - 'G (67)' : 67, - 'F# (66)' : 66, - 'A (69)' : 69, - 'G# (68)' : 68, - 'B (71)' : 71, - 'Bb (70)' : 70, - 'C (72)' : 72, - 'D (74)' : 74, - 'C# (73)' : 73, - 'E (76)' : 76, - 'Eb (75)' : 75, - 'F (77)' : 77, - 'G (79)' : 79, - 'F# (78)' : 78, - 'A (81)' : 81, - 'G# (80)' : 80, - 'B (83)' : 83, - 'Bb (82)' : 82, - 'C (84)' : 84 + 'C 1' : 36, + 'D 1' : 38, + 'C# 1' : 37, + 'E 1' : 40, + 'Eb 1' : 39, + 'F 1' : 41, + 'G 1' : 43, + 'F# 1' : 42, + 'A 1' : 45, + 'G# 1' : 44, + 'B 1' : 47, + 'Bb 1' : 46, + 'C 2' : 48, + 'D 2' : 50, + 'C# 2' : 49, + 'E 2' : 52, + 'Eb 2' : 51, + 'F 2' : 53, + 'G 2' : 55, + 'F# 2' : 54, + 'A 2' : 57, + 'G# 2' : 56, + 'B 2' : 59, + 'Bb 2' : 58, + 'C 3' : 60, + 'D 3' : 62, + 'C# 3' : 61, + 'E 3' : 64, + 'Eb 3' : 63, + 'F 3' : 65, + 'G 3' : 67, + 'F# 3' : 66, + 'A 3' : 69, + 'G# 3' : 68, + 'B 3' : 71, + 'Bb 3' : 70, + 'C 4' : 72, + 'D 4' : 74, + 'C# 4' : 73, + 'E 4' : 76, + 'Eb 4' : 75, + 'F 4' : 77, + 'G 4' : 79, + 'F# 4' : 78, + 'A 4' : 81, + 'G# 4' : 80, + 'B 4' : 83, + 'Bb 4' : 82, + 'C 5' : 84 }; for (key in choices) { if (Object.prototype.hasOwnProperty.call(choices, key)) { From 40a53a75298572e144ef54c410940755a2b8d9e5 Mon Sep 17 00:00:00 2001 From: Tito Ebiwonjumi Date: Thu, 4 Jan 2024 09:30:28 -0600 Subject: [PATCH 3/3] Update cloud --- src/cloud | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud b/src/cloud index f68f3c8e95..d6d33286ba 160000 --- a/src/cloud +++ b/src/cloud @@ -1 +1 @@ -Subproject commit f68f3c8e95e2e80d8e7cc0687e720d103818fafa +Subproject commit d6d33286ba4bd6ea5b799d0524cbfb08eff7e2dc