diff --git a/HISTORY.md b/HISTORY.md index bd3fa7a89..df26e924a 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,11 +1,14 @@ # Snap! (BYOB) History ## in development: + +## 10.0.8: * **Notable Fixes:** * disabled abusing the "primitive" block with metaprogramming to run arbitrary JS code. Sigh. ### 2024-09-13 * byob, objects, threads, store: disabled abusing the "primitive" block with metaprogramming to run arbitrary JS code. Sigh. +* prepared v10.0.8 patch ## 10.0.7: * **Translation Updates:** diff --git a/snap.html b/snap.html index 0a2450a63..42b910b17 100755 --- a/snap.html +++ b/snap.html @@ -20,7 +20,7 @@ - + diff --git a/src/gui.js b/src/gui.js index 70ff838be..15f3e2c51 100644 --- a/src/gui.js +++ b/src/gui.js @@ -87,11 +87,11 @@ BlockVisibilityDialogMorph, ThreadManager, isString, SnapExtensions, snapEquals // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2024-September-06'; +modules.gui = '2024-September-13'; // Declarations -var SnapVersion = '10.0.7'; +var SnapVersion = '10.0.8'; var IDE_Morph; var ProjectDialogMorph; diff --git a/sw.js b/sw.js index a901047a9..eddf5ec1b 100644 --- a/sw.js +++ b/sw.js @@ -1,4 +1,4 @@ -var snapVersion = '10.0.7', +var snapVersion = '10.0.8', cacheName = `snap-pwa-${snapVersion}`, filesToCache = [ 'snap.html',