Skip to content

Commit

Permalink
prepared v9.0.8 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Oct 20, 2023
1 parent 562ecd9 commit c261f8c
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,14 +1,17 @@
# Snap! (BYOB) History

## in development:

## 9.0.8:
* **Notable Fixes:**
* fixed a typo in 'noDefaultCat' configuration setting, thanks, Emmanuel, for the report!
* SPLIT now observes the preference setting for case-sensitivity
* fixed a typo in 'noDefaultCat' configuration setting, thanks, Emmanuel, for the report!

This comment has been minimized.

Copy link
@schanzer

schanzer Oct 20, 2023

you mean hideDefaultCat, right?

* **Translation Updates:**
* Brazilian Portuguese, thanks, Ville Medeiro!

2023-10-20
* threads: made SPLIT observe the "case sensitivity" preference setting
* prepared v9.0.8 patch

2023-10-17
* Brazilian Portuguese translation update, thanks, Ville Medeiro!
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-20"></script>
<script src="src/objects.js?version=2023-07-14"></script>
<script src="src/scenes.js?version=2022-10-25"></script>
<script src="src/gui.js?version=2023-10-11"></script>
<script src="src/gui.js?version=2023-10-20"></script>
<script src="src/paint.js?version=2023-05-24"></script>
<script src="src/lists.js?version=2023-07-18"></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-October-11';
modules.gui = '2023-October-20';

// Declarations

var SnapVersion = '9.0.8-dev';
var SnapVersion = '9.0.8';

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.0.8-dev',
var snapVersion = '9.0.8',
cacheName = `snap-pwa-${snapVersion}`,
filesToCache = [
'snap.html',
Expand Down

0 comments on commit c261f8c

Please sign in to comment.