Skip to content

Commit

Permalink
prepared v10.4 minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Jan 22, 2025
1 parent e273d50 commit e22fe3b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Snap! (BYOB) History

## in development:

## 10.4.0:
* **Notable Changes:**
* "Quicksteps" Evaluation - Dynamic Scheduling: Keep stepping non-animating processes between animation frames, makes "warp" and "turbo mode" largely obsolete and improves musical thread synching
* "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
* 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
* reduced animation speed from 67 fps to 60 fps
* disabled santa hats until next Christmas, still loadable as extension
Expand All @@ -18,6 +20,7 @@

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

### 2025-01-21
* morphic: fixed Pen demo and "doIt" for inspectors
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=2025-01-09"></script>
<script src="src/objects.js?version=2025-01-13"></script>
<script src="src/scenes.js?version=2024-05-28"></script>
<script src="src/gui.js?version=2025-01-21"></script>
<script src="src/gui.js?version=2025-01-22"></script>
<script src="src/paint.js?version=2023-05-24"></script>
<script src="src/lists.js?version=2025-01-07"></script>
<script src="src/byob.js?version=2024-12-18"></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 @@ HatBlockMorph*/

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

modules.gui = '2025-January-21';
modules.gui = '2025-January-22';

// Declarations

var SnapVersion = '10.4-rc9';
var SnapVersion = '10.4.0';

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,6 +1,6 @@
/*global self, caches*/
/*jshint esversion: 6*/
var snapVersion = '10.4-rc9',
var snapVersion = '10.4.0',
cacheName = `snap-pwa-${snapVersion}`,
filesToCache = [
'snap.html',
Expand Down

0 comments on commit e22fe3b

Please sign in to comment.