Skip to content

Commit

Permalink
prepared v10.0.9 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Sep 16, 2024
1 parent 1c10d1c commit befa184
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
9 changes: 6 additions & 3 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# Snap! (BYOB) History

## in development:

## 10.0.9:
* **Notable Fixes:**
* tweaked refactoring variables ("rename all") for auto-lambdafying C-Slots inside custom blocks
* optimized canvasBoundingBox for speed, thanks, @SArpnt, for the contribution!
* fixed initializing formal ring parameters if called without passing actual arguments, thanks, @DarDoro, for the report!

### 2024-09-16
* blocks: tweaked refactoring variables ("rename all") for auto-lambdafying C-Slots inside custom blocks
* objects: optimized canvasBoundingBox() for speed, thanks, @SArpnt!
* threads: fixed initializing formal ring parameters if called without passing actual arguments
* blocks: tweaked refactoring variables ("rename all") for auto-lambdafying C-Slots inside custom blocks
* objects: optimized canvasBoundingBox() for speed, thanks, @SArpnt!
* threads: fixed initializing formal ring parameters if called without passing actual arguments
* prepared v10.0.9 patch

## 10.0.8:
* **Notable Fixes:**
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-09-16"></script>
<script src="src/objects.js?version=2024-09-16"></script>
<script src="src/scenes.js?version=2024-05-28"></script>
<script src="src/gui.js?version=2024-09-13"></script>
<script src="src/gui.js?version=2024-09-16"></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-09-13"></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 @@ BlockVisibilityDialogMorph, ThreadManager, isString, SnapExtensions, snapEquals

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

modules.gui = '2024-September-13';
modules.gui = '2024-September-16';

// Declarations

var SnapVersion = '10.0.8';
var SnapVersion = '10.0.9';

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,4 +1,4 @@
var snapVersion = '10.0.8',
var snapVersion = '10.0.9',
cacheName = `snap-pwa-${snapVersion}`,
filesToCache = [
'snap.html',
Expand Down

0 comments on commit befa184

Please sign in to comment.