kopia lustrzana https://github.com/backface/turtlestitch
restored v7.4.0-dev
rodzic
14f9b3319f
commit
1eea1c4f68
|
@ -14,6 +14,9 @@
|
|||
* **Translation Updates:**
|
||||
* German
|
||||
|
||||
### 2022-03-16
|
||||
* restored v7.4.0-dev
|
||||
|
||||
## 7.3.1:
|
||||
* **Notable Fix:**
|
||||
* guard against broken SVG costumes when loading a project
|
||||
|
|
|
@ -3313,7 +3313,7 @@ BlockMorph.prototype.userMenu = function () {
|
|||
}
|
||||
);
|
||||
}
|
||||
// +++ menu.addLine();
|
||||
menu.addLine();
|
||||
menu.addItem(
|
||||
"script pic...",
|
||||
() => {
|
||||
|
@ -3339,14 +3339,11 @@ BlockMorph.prototype.userMenu = function () {
|
|||
'save a picture of both\nthis script and its result'
|
||||
);
|
||||
}
|
||||
if (this.world().currentKey === 16) { // +++ shift
|
||||
menu.addItem(
|
||||
'export script',
|
||||
() => top.exportScript(),
|
||||
'download this script\nas an XML file',
|
||||
new Color(100, 0, 0)
|
||||
);
|
||||
}
|
||||
menu.addItem(
|
||||
'export script',
|
||||
() => top.exportScript(),
|
||||
'download this script\nas an XML file'
|
||||
);
|
||||
if (proc) {
|
||||
if (vNames.length) {
|
||||
menu.addLine();
|
||||
|
|
|
@ -90,8 +90,7 @@ modules.gui = '2022-March-16';
|
|||
|
||||
// Declarations
|
||||
|
||||
// +++ var SnapVersion = '7.4.0-dev';
|
||||
var SnapVersion = '7.3.1';
|
||||
var SnapVersion = '7.4.0-dev';
|
||||
|
||||
var IDE_Morph;
|
||||
var ProjectDialogMorph;
|
||||
|
|
|
@ -2792,14 +2792,14 @@ SpriteMorph.prototype.blockTemplates = function (
|
|||
blocks.push('-');
|
||||
blocks.push(block('doForEach'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('reportConcatenatedLists'));
|
||||
blocks.push(block('reportReshape'));
|
||||
// +++ blocks.push(block('reportCrossproduct'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('doAddToList'));
|
||||
blocks.push(block('doDeleteFromList'));
|
||||
blocks.push(block('doInsertInList'));
|
||||
blocks.push(block('doReplaceInList'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('reportConcatenatedLists'));
|
||||
blocks.push(block('reportReshape'));
|
||||
blocks.push(block('reportCrossproduct'));
|
||||
|
||||
if (SpriteMorph.prototype.showingExtensions) {
|
||||
blocks.push('=');
|
||||
|
@ -9197,14 +9197,14 @@ StageMorph.prototype.blockTemplates = function (
|
|||
blocks.push('-');
|
||||
blocks.push(block('doForEach'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('reportConcatenatedLists'));
|
||||
blocks.push(block('reportReshape'));
|
||||
// +++ blocks.push(block('reportCrossproduct'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('doAddToList'));
|
||||
blocks.push(block('doDeleteFromList'));
|
||||
blocks.push(block('doInsertInList'));
|
||||
blocks.push(block('doReplaceInList'));
|
||||
blocks.push('-');
|
||||
blocks.push(block('reportConcatenatedLists'));
|
||||
blocks.push(block('reportReshape'));
|
||||
blocks.push(block('reportCrossproduct'));
|
||||
|
||||
if (SpriteMorph.prototype.showingExtensions) {
|
||||
blocks.push('=');
|
||||
|
|
2
sw.js
2
sw.js
|
@ -1,4 +1,4 @@
|
|||
var snapVersion = '7.3.1', // +++ '7.4.0-dev',
|
||||
var snapVersion = '7.4.0-dev',
|
||||
cacheName = 'snap-pwa',
|
||||
filesToCache = [
|
||||
'snap.html',
|
||||
|
|
Ładowanie…
Reference in New Issue