Skip to content

Commit e22fe3b

Browse files
committed
prepared v10.4 minor release
1 parent e273d50 commit e22fe3b

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

HISTORY.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Snap! (BYOB) History
22

33
## in development:
4+
5+
## 10.4.0:
46
* **Notable Changes:**
5-
* "Quicksteps" Evaluation - Dynamic Scheduling: Keep stepping non-animating processes between animation frames, makes "warp" and "turbo mode" largely obsolete and improves musical thread synching
7+
* "Quicksteps" Evaluation - Dynamic Scheduling: Keep stepping non-animating processes between animation frames, makes "warp" and "turbo mode" largely obsolete for number crunching and improves musical thread synching
68
* Floating point precision random numbers - pick a random float by entering an integer with a decimal point into at least one of the "pick random" reporter's input slots
79
* reduced animation speed from 67 fps to 60 fps
810
* disabled santa hats until next Christmas, still loadable as extension
@@ -18,6 +20,7 @@
1820

1921
### 2025-01-22
2022
* Armenian translation update, thanks, Antrohoos Education Foundation!
23+
* prepared v10.4 minor release
2124

2225
### 2025-01-21
2326
* morphic: fixed Pen demo and "doIt" for inspectors

snap.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<script src="src/threads.js?version=2025-01-09"></script>
2121
<script src="src/objects.js?version=2025-01-13"></script>
2222
<script src="src/scenes.js?version=2024-05-28"></script>
23-
<script src="src/gui.js?version=2025-01-21"></script>
23+
<script src="src/gui.js?version=2025-01-22"></script>
2424
<script src="src/paint.js?version=2023-05-24"></script>
2525
<script src="src/lists.js?version=2025-01-07"></script>
2626
<script src="src/byob.js?version=2024-12-18"></script>

src/gui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ HatBlockMorph*/
8787

8888
// Global stuff ////////////////////////////////////////////////////////
8989

90-
modules.gui = '2025-January-21';
90+
modules.gui = '2025-January-22';
9191

9292
// Declarations
9393

94-
var SnapVersion = '10.4-rc9';
94+
var SnapVersion = '10.4.0';
9595

9696
var IDE_Morph;
9797
var ProjectDialogMorph;

sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*global self, caches*/
22
/*jshint esversion: 6*/
3-
var snapVersion = '10.4-rc9',
3+
var snapVersion = '10.4.0',
44
cacheName = `snap-pwa-${snapVersion}`,
55
filesToCache = [
66
'snap.html',

0 commit comments

Comments
 (0)