Skip to content

Commit

Permalink
prepared v7.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Feb 8, 2022
1 parent 8d8c685 commit d37d1bc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
11 changes: 8 additions & 3 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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!
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions snap.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Snap! 7.1.3 - dev - Build Your Own Blocks</title>
<title>Snap! 7.1.3 - Build Your Own Blocks</title>
<link rel="icon" href="src/favicon.ico" type="image/x-icon">
<link rel="manifest" href="manifest.json">
<link rel="apple-touch-icon" href="img/snap-icon-152.png">
Expand All @@ -20,7 +20,7 @@
<script src="src/threads.js?version=2022-01-31"></script>
<script src="src/objects.js?version=2022-02-07"></script>
<script src="src/scenes.js?version=2021-11-24"></script>
<script src="src/gui.js?version=2022-02-04"></script>
<script src="src/gui.js?version=2022-02-08"></script>
<script src="src/paint.js?version=2021-07-05"></script>
<script src="src/lists.js?version=2022-02-07"></script>
<script src="src/byob.js?version=2022-01-07"></script>
Expand Down
4 changes: 2 additions & 2 deletions src/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ BlockVisibilityDialogMorph, ThreadManager*/

// Global stuff ////////////////////////////////////////////////////////

modules.gui = '2022-February-04';
modules.gui = '2022-February-08';

// Declarations

Expand Down Expand Up @@ -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'
+ '[email protected], [email protected]\n\n'
Expand Down
3 changes: 2 additions & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var snapVersion = '7.1.3-dev',
var snapVersion = '7.1.3',
cacheName = 'snap-pwa',
filesToCache = [
'snap.html',
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit d37d1bc

Please sign in to comment.