Skip to content

Commit

Permalink
prepared v9.0.12 patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Nov 20, 2023
1 parent 834b51f commit bc89aa3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
# Snap! (BYOB) History

## in development:

## 9.0.12:
* **Notable Fixes:**
* fixed loading the "Words, sentences" library
* fixed importing data into single-palette mode projects (avoid garbling the palette)
* fixed some broken file references in the pwa cache
* **Library Updates:**
* added 3 minimal library variants "Just Words", "Replace Letters" and "Just Bars"

2023-11-20
* new dev version for v9.0.12
* gui: fixed importing data into single-palette mode projects (avoid garbling the palette)
* sw: fixed #3270 (service worker cache uri issues)
* added 3 minimal library variants "Just Words", "Replace Letters" and "Just Bars"
* prepared v9.0.12 patch

## 9.0.11:
* **Notable Fixes:**
Expand Down
2 changes: 1 addition & 1 deletion src/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ modules.gui = '2023-November-20';

// Declarations

var SnapVersion = '9.0.12-dev';
var SnapVersion = '9.0.12';

var IDE_Morph;
var ProjectDialogMorph;
Expand Down
5 changes: 4 additions & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var snapVersion = '9.0.12-dev',
var snapVersion = '9.0.12',
cacheName = `snap-pwa-${snapVersion}`,
filesToCache = [
'snap.html',
Expand Down Expand Up @@ -108,6 +108,8 @@ var snapVersion = '9.0.12-dev',
'libraries/mqtt.xml',
'libraries/parallel_module.xml',
'libraries/pixel_module.xml',
'libraries/plot_bars_module.xml',
'libraries/replace_letters_module.xml',
'libraries/schemeNumber.js',
'libraries/SciSnapExtensions.js',
'libraries/SciSnap!2Blocks.xml',
Expand Down Expand Up @@ -165,6 +167,7 @@ var snapVersion = '9.0.12-dev',
'libraries/textCostumes_module.xml',
'libraries/try-catch.xml',
'libraries/word-sentence.xml',
'libraries/words_module.xml',

//costumes
'Costumes/COSTUMES',
Expand Down

0 comments on commit bc89aa3

Please sign in to comment.