prepared v7.0.3

snap7
jmoenig 2022-01-04 14:29:50 +01:00
rodzic 2705c8ffb1
commit d9ce299bf1
5 zmienionych plików z 18 dodań i 11 usunięć

Wyświetl plik

@ -2,6 +2,14 @@
## in development:
* **New Features:**
* **Notable Changes:**
* **Notable Fixes:**
* **Documentation Updates:**
* **Translation Updates:**
## 7.0.3:
* **New Features:**
* arity control for assembling polyadic inputs using JOIN (pass a list whose first item is an integer representing the number of slots followed by the contents of those slots)
* **Notable Changes:**
@ -15,13 +23,13 @@
* fixed programmatically hiding palette blocks using the "hide variable" block, thanks, Zak!
* fixed / worked around PWA caching for URLs with query parts, thanks, Ken!
* added missing "identical to" relabel option to "less than" reporter, thanks, Mary!
* **Documentation Updates:**
* **Translation Updates:**
* Italian, thanks, Stefano!
### 2022-01-04
* manifest: fixed #2954
* threads, blocks: added arity control for assembling polyadic inputs
* v7.0.3
### 2022-01-03
* Italian translation update, thanks, Stefano!

Wyświetl plik

@ -30,7 +30,7 @@ If you have security concerns, please do not post them publicly.
Please reach out to us at [contact@snap.berkeley.edu](mailto:contact@snap.berkeley.edu).
## License
Copyright (C) 2008-2021 by Jens Mönig and Brian Harvey
Copyright (C) 2008-2022 by Jens Mönig and Brian Harvey
Snap! is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as

Wyświetl plik

@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Snap! 7.0.3 - dev - Build Your Own Blocks</title>
<title>Snap! 7.0.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">
@ -20,7 +20,7 @@
<script src="src/threads.js?version=2022-01-04"></script>
<script src="src/objects.js?version=2022-01-03"></script>
<script src="src/scenes.js?version=2021-11-24"></script>
<script src="src/gui.js?version=2021-12-22"></script>
<script src="src/gui.js?version=2022-01-04"></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=2021-12-16"></script>

Wyświetl plik

@ -9,7 +9,7 @@
written by Jens Mönig
jens@moenig.org
Copyright (C) 2021 by Jens Mönig
Copyright (C) 2022 by Jens Mönig
This file is part of Snap!.
@ -86,7 +86,7 @@ BlockVisibilityDialogMorph, ThreadManager*/
// Global stuff ////////////////////////////////////////////////////////
modules.gui = '2021-December-22';
modules.gui = '2022-January-04';
// Declarations
@ -4768,8 +4768,8 @@ IDE_Morph.prototype.aboutSnap = function () {
module, btn1, btn2, btn3, btn4, licenseBtn, translatorsBtn,
world = this.world();
aboutTxt = 'Snap! 7.0.3 - dev -\nBuild Your Own Blocks\n\n'
+ 'Copyright \u24B8 2008-2021 Jens M\u00F6nig and '
aboutTxt = 'Snap! 7.0.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'
+ ' Snap! is developed by the University of California, '

5
sw.js
Wyświetl plik

@ -1,6 +1,5 @@
var snapVersion = '7.0.3 - dev -'
var cacheName = 'snap-pwa',
var snapVersion = '7.0.3',
cacheName = 'snap-pwa',
filesToCache = [
'snap.html',