Skip to content

Commit

Permalink
prepared v7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Feb 21, 2022
1 parent 187b6f3 commit eff15b4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## in development:

* **New Features:**
* **Notable Changes:**
* **Notable Fixes:**
* **Documentation Updates:**
* **Translation Updates:**

## 7.2.0:
* **New Features:**
* new SciSnap2 extension and library, thanks, Eckart!
* new MQTT extension and library, thanks, Simon and Xavier!
Expand All @@ -11,12 +18,11 @@
* strings library: fixed lowercase(number), thanks, Brian and Simon!
* swapped "lists" and "other" in the make-a-block category menu, thanks Brian, for the report!
* don't let deleted sprites clone
* **Documentation Updates:**
* **Translation Updates:**

### 2022-02-21
* threads: optimized hyper-if/else to skip repeated evaluation of literal true/false cases
* objects: prevent deleted sprites from cloning
* prepared v7.2.0

### 2022-02-18
* new MQTT extension and library, thanks, Simon and Xavier!
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.2.0 - dev - Build Your Own Blocks</title>
<title>Snap! 7.2.0 - 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-02-21"></script>
<script src="src/objects.js?version=2022-02-21"></script>
<script src="src/scenes.js?version=2021-11-24"></script>
<script src="src/gui.js?version=2022-02-18"></script>
<script src="src/gui.js?version=2022-02-21"></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-02-17"></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-18';
modules.gui = '2022-February-21';

// 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.2.0 - dev -\nBuild Your Own Blocks\n\n'
aboutTxt = 'Snap! 7.2.0\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
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var snapVersion = '7.2.0-dev',
var snapVersion = '7.2.0',
cacheName = 'snap-pwa',
filesToCache = [
'snap.html',
Expand Down

0 comments on commit eff15b4

Please sign in to comment.