Skip to content

Commit

Permalink
fixed occasional buffer overflow issue for code embedded in script pi…
Browse files Browse the repository at this point in the history
…cs, thanks, @DarDoro !
  • Loading branch information
jmoenig committed Aug 6, 2024
1 parent 5aef46a commit af7a8f0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
* **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
* fixed dialog box label to show "Max slots" when editing the max slots setting of a variadic custom block input
* fixed occasional buffer overflow issue for code embedded in script pics, thanks, Dariusz!

### 2024-08-06
* morphic: fixed occasional buffer overflow issue for code embedded in script pics, thanks, Dariusz!

### 2024-08-05
* new dev version
Expand Down
2 changes: 1 addition & 1 deletion snap.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta name="apple-mobile-web-app-title" content="Snap!">
<meta name="msapplication-TileImage" content="img/snap-icon-144.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
<script src="src/morphic.js?version=2024-06-04"></script>
<script src="src/morphic.js?version=2024-08-05"></script>
<script src="src/symbols.js?version=2024-01-24"></script>
<script src="src/widgets.js?version=2024-07-24"></script>
<script src="src/blocks.js?version=2024-06-10"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/morphic.js
Original file line number Diff line number Diff line change
Expand Up @@ -1320,7 +1320,7 @@

/*jshint esversion: 11, bitwise: false*/

var morphicVersion = '2024-June-04';
var morphicVersion = '2024-August-06';
var modules = {}; // keep track of additional loaded modules
var useBlurredShadows = true;

Expand Down

0 comments on commit af7a8f0

Please sign in to comment.