diff --git a/HISTORY.md b/HISTORY.md index e51d32bb..e7045f62 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -3,8 +3,14 @@ ## in development: * **New Features:** - * new bitwise operators library, thanks, Bernat! * **Notable Changes:** +* **Notable Fixes:** +* **Documentation Updates:** +* **Translation Updates:** + +## 7.1.3: +* **New Features:** + * new bitwise operators library, thanks, Bernat! * **Notable Fixes:** * JSON encoding for nested lists * enforce static typing for stage backgrounds and sounds, and for sprite duplicates @@ -16,8 +22,6 @@ * fixed missing blocks in iteration composition library * fixed a comment in "remove duplicates" in the list utilities library * fixed missing blocks in parallelization library -* **Documentation Updates:** -* **Translation Updates:** ### 2022-02-08 * signade library: fixed cached values being stuck forever in edge case, thanks, Bernat! @@ -29,6 +33,7 @@ * fixed "do in parallel" block in parallelization library * new bitwise operators library, thanks, Bernat! * moved bitwise operators into standard extensions +* prepared v7.1.3 ### 2022-02-07 * lists: fixed JSON encoding for nested lists diff --git a/snap.html b/snap.html index 9a2c4226..452921b9 100755 --- a/snap.html +++ b/snap.html @@ -1,7 +1,7 @@ - Snap! 7.1.3 - dev - Build Your Own Blocks + Snap! 7.1.3 - Build Your Own Blocks @@ -20,7 +20,7 @@ - + diff --git a/src/gui.js b/src/gui.js index 7244d872..af1acebe 100644 --- a/src/gui.js +++ b/src/gui.js @@ -86,7 +86,7 @@ BlockVisibilityDialogMorph, ThreadManager*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2022-February-04'; +modules.gui = '2022-February-08'; // Declarations @@ -4775,7 +4775,7 @@ IDE_Morph.prototype.aboutSnap = function () { module, btn1, btn2, btn3, btn4, licenseBtn, translatorsBtn, world = this.world(); - aboutTxt = 'Snap! 7.1.3 - dev -\nBuild Your Own Blocks\n\n' + aboutTxt = 'Snap! 7.1.3\nBuild Your Own Blocks\n\n' + 'Copyright \u24B8 2008-2022 Jens M\u00F6nig and ' + 'Brian Harvey\n' + 'jens@moenig.org, bh@cs.berkeley.edu\n\n' diff --git a/sw.js b/sw.js index a91ed0a5..15d10f2b 100644 --- a/sw.js +++ b/sw.js @@ -1,4 +1,4 @@ -var snapVersion = '7.1.3-dev', +var snapVersion = '7.1.3', cacheName = 'snap-pwa', filesToCache = [ 'snap.html', @@ -84,6 +84,7 @@ var snapVersion = '7.1.3-dev', 'libraries/biginteger.js', 'libraries/bignumbers.xml', 'libraries/bignums.js', + 'libraries/bitwise.xml', 'libraries/bbtSnapExtension.js', 'libraries/cases.xml', 'libraries/colors.xml',