From af7a8f001cd82abe5026a72a824280e6936a7aa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jens=20M=C3=B6nig?= Date: Tue, 6 Aug 2024 16:41:07 +0200 Subject: [PATCH] fixed occasional buffer overflow issue for code embedded in script pics, thanks, @DarDoro ! --- HISTORY.md | 6 +++++- snap.html | 2 +- src/morphic.js | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 504460f11..70670a896 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/snap.html b/snap.html index 3d576d346..03c9edf56 100755 --- a/snap.html +++ b/snap.html @@ -13,7 +13,7 @@ - + diff --git a/src/morphic.js b/src/morphic.js index 59511d036..33df7f5b1 100644 --- a/src/morphic.js +++ b/src/morphic.js @@ -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;