Skip to content

Commit

Permalink
prepared weekly patch
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoenig committed Jan 21, 2022
1 parent 43318dd commit 39034b4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,23 @@
## in development:

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

## 7.0.6:
* **Notable Changes:**
* added more localizable error strings
* **Notable Fixes:**
* fixed binding an unbound context to a sprite (e.g. when using JOIN blocks)
* fixed loading the Chinese translation, thanks, @moodykeke
* **Documentation Updates:**
* **Translation Updates:**
* German (for error messages)

### 2022-01-21
* threads: refactored Context >> image
* v7.0.6

### 2022-01-20
* German translation update (for error messages)
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.0.6 - dev - Build Your Own Blocks</title>
<title>Snap! 7.0.6 - 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-21"></script>
<script src="src/objects.js?version=2022-01-20"></script>
<script src="src/scenes.js?version=2021-11-24"></script>
<script src="src/gui.js?version=2022-01-17"></script>
<script src="src/gui.js?version=2022-01-21"></script>
<script src="src/paint.js?version=2021-07-05"></script>
<script src="src/lists.js?version=2021-12-15"></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-January-17';
modules.gui = '2022-January-21';

// Declarations

Expand Down Expand Up @@ -4768,7 +4768,7 @@ IDE_Morph.prototype.aboutSnap = function () {
module, btn1, btn2, btn3, btn4, licenseBtn, translatorsBtn,
world = this.world();

aboutTxt = 'Snap! 7.0.6 - dev -\nBuild Your Own Blocks\n\n'
aboutTxt = 'Snap! 7.0.6\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.0.6-dev',
var snapVersion = '7.0.6',
cacheName = 'snap-pwa',
filesToCache = [
'snap.html',
Expand Down

0 comments on commit 39034b4

Please sign in to comment.