Skip to content

Commit

Permalink
fixed dialog box label to show "Max slots" when editing the max slots…
Browse files Browse the repository at this point in the history
… setting of a variadic custom block input
  • Loading branch information
jmoenig committed Aug 5, 2024
1 parent 1cf1a00 commit 163ea28
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
* **Notable Fixes:**
* fixed a variable scope bug when evaluating a ring with a same-named formal parameter as an outer scoped variable
* fixed disabling a primitive that has ZIP as a custom fallback, e.g. numbers, reporter-if
* fixed dialog box label to show "Max slots" when editing the max slots setting of a variadic custom block input

### 2024-08-05
* new dev version
* threads: fixed a variable scope bug when evaluating a ring with a same-named formal parameter as an outer scoped variable
* objects: fixed disabling a primitive that has ZIP as a custom fallback, e.g. numbers, reporter-if
* objects: fixed disabling a primitive that has ZIP as a custom fallback, e.g. numbers, reporter-if
* byob: fixed dialog box label to show "Max slots" when editing the max slots setting of a variadic custom block input

## 10.0.0:
* **New Features:**
Expand Down
2 changes: 1 addition & 1 deletion snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<script src="src/gui.js?version=2024-08-05"></script>
<script src="src/paint.js?version=2023-05-24"></script>
<script src="src/lists.js?version=2024-04-08"></script>
<script src="src/byob.js?version=2024-06-12"></script>
<script src="src/byob.js?version=2024-08-05"></script>
<script src="src/tables.js?version=2023-08-17"></script>
<script src="src/sketch.js?version=2023-05-24"></script>
<script src="src/video.js?version=2019-06-27"></script>
Expand Down
4 changes: 2 additions & 2 deletions src/byob.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ ArgLabelMorph, embedMetadataPNG, ArgMorph, RingMorph*/

// Global stuff ////////////////////////////////////////////////////////

modules.byob = '2024-June-12';
modules.byob = '2024-August-05';

// Declarations

Expand Down Expand Up @@ -5113,7 +5113,7 @@ InputSlotDialogMorph.prototype.editVariadicMaxSlots = function () {
num => this.fragment.maxSlots = num,
this
).prompt(
"Min slots",
"Max slots",
(this.fragment.maxSlots || 0).toString(),
this.world(),
null, // pic
Expand Down

0 comments on commit 163ea28

Please sign in to comment.