Skip to content

Commit

Permalink
prepared v10.2.3 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Nov 12, 2024
1 parent 712f11e commit 934bde2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Snap! (BYOB) History

## in development:

## 10.2.3:
* **New Features:**
* expose a copy of the custom block as "caller" to input slot reaction scripts inside custom block definitions
* new "input slots" menu option for custom block input slots
Expand All @@ -20,6 +22,7 @@
* metaprogramming library: new "expand (input) to (n) slots" command
* blocks: hide variadic input arrows in case the number of slots is fixed
* blocks: expand variadic inputs to their initial slots amount (if any is specified) when restoring them (i.e. when removing an embedded reporter block)
* prepared v10.2.3 patch

### 2024-11-11
* threads: expose a copy of the custom block as "caller" to input slot reaction scripts inside custom block definitions
Expand Down
2 changes: 1 addition & 1 deletion snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<script src="src/threads.js?version=2024-11-12"></script>
<script src="src/objects.js?version=2024-11-10"></script>
<script src="src/scenes.js?version=2024-05-28"></script>
<script src="src/gui.js?version=2024-11-10"></script>
<script src="src/gui.js?version=2024-11-12"></script>
<script src="src/paint.js?version=2023-05-24"></script>
<script src="src/lists.js?version=2024-09-16"></script>
<script src="src/byob.js?version=2024-11-11"></script>
Expand Down
4 changes: 2 additions & 2 deletions src/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ HatBlockMorph*/

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

modules.gui = '2024-November-10';
modules.gui = '2024-November-12';

// Declarations

var SnapVersion = '10.2.2';
var SnapVersion = '10.2.3';

var IDE_Morph;
var ProjectDialogMorph;
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*global self, caches*/
/*jshint esversion: 6*/
var snapVersion = '10.2.2',
var snapVersion = '10.2.3',
cacheName = `snap-pwa-${snapVersion}`,
filesToCache = [
'snap.html',
Expand Down

0 comments on commit 934bde2

Please sign in to comment.