Skip to content

Commit

Permalink
prepared v9.1 minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Dec 5, 2023
1 parent c3d8e96 commit b863ffc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Snap! (BYOB) History

## in development:

## 9.1.0:
* **New Features:**
* new 'text' list conversion selector, recursively joins all text and number leaf elements with spaces in between, filtering out and ignoring whitespace
* text inside "say" and "think" balloons gets vertical scroll bars if it exceeds the displayable space, is scrolled to the bottom by default to support language projects such as sengen
Expand All @@ -19,6 +21,7 @@

2023-12-05
* updated "Just Words" library, made sure it's a library file, not a project
* prepared v9.1 minor release

2023-11-30
* objects: scroll text inside speech/thought balloons, display long text scrolled to the bottom to support language-centered projects (e.g. sengen)
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=2023-10-29"></script>
<script src="src/objects.js?version=2023-11-30"></script>
<script src="src/scenes.js?version=2022-10-29"></script>
<script src="src/gui.js?version=2023-11-23"></script>
<script src="src/gui.js?version=2023-12-05"></script>
<script src="src/paint.js?version=2023-05-24"></script>
<script src="src/lists.js?version=2023-07-24"></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 = '2023-November-23';
modules.gui = '2023-December-05';

// Declarations

var SnapVersion = '9.1.0-dev';
var SnapVersion = '9.1.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.1.0-dev',
var snapVersion = '9.1.0',
cacheName = `snap-pwa-${snapVersion}`,
filesToCache = [
'snap.html',
Expand Down

0 comments on commit b863ffc

Please sign in to comment.