Skip to content

Commit

Permalink
prepared v9.2.0 minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Jan 11, 2024
1 parent ea6d92d commit ac8cd59
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
9 changes: 7 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Snap! (BYOB) History

## in development:

## 9.2.0:
* **New Features:**
* (better) matrix-kernel convolution support, automatic zero-padding
* new graphic filter effects tools in the pixels library
Expand All @@ -14,9 +16,12 @@
* MQTT library update, thanks, Simon!
* **Notable Fixes:**
* fixed a RESHAPE edge case when passing in a single zero dimension
* made sure ITEM OF returns data matching the shape specified by the query struct
* made sure ITEM OF returns data matching the shape specified by the query struct (automatic zero-padding)
* fixed speech balloons inside ASK menus
* added safeguard against accidentally querying too many list dimensions (forgetting to transpose a convolution)
* added safeguard against accidentally querying too many list dimensions (e.g. when forgetting to transpose a convolution)

2024-01-11
* prepared v9.2.0 minor release

2024-01-10
* lists, threads, objects: optimized internal matrix ops by speeding up shape & rank determination assuming well-formed tables
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-01-10"></script>
<script src="src/objects.js?version=2024-01-10"></script>
<script src="src/scenes.js?version=2022-10-29"></script>
<script src="src/gui.js?version=2024-01-24"></script>
<script src="src/gui.js?version=2024-01-11"></script>
<script src="src/paint.js?version=2023-05-24"></script>
<script src="src/lists.js?version=2024-01-10"></script>
<script src="src/byob.js?version=2023-07-14"></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-January-08';
modules.gui = '2024-January-11';

// Declarations

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

0 comments on commit ac8cd59

Please sign in to comment.