diff --git a/HISTORY.md b/HISTORY.md index eb67a59bc..1b27f0246 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,16 @@ ## in development: +## 10.2.2: +* **Notable Changes:** + * changed wording for "when slot ... gets ..." hat block to "when slot ... signals ..." +* **Translation Updates:** + * German + +### 2024-11-10 +* objects: changed wording for "when slot ... gets ..." hat block to "when slot ... signals ..." +* prepared v10.2.2 patch + ## 10.2.1: * **Notable Changes:** * deprecated "expand (input) to (n) slots" command, because "set slot ... to ..." can now do this by passing a list as value diff --git a/locale/lang-de.js b/locale/lang-de.js index b228fe8f0..166a12328 100644 --- a/locale/lang-de.js +++ b/locale/lang-de.js @@ -1388,7 +1388,7 @@ SnapTranslator.dict.de = { "when I am _": "Wenn ich _ werde", "when I receive _ _": "Wenn ich _ empfange _", "when I start as a clone": "Wenn ich als Klon starte", - "when slot _ gets _" : "Wenn Eingabefeld _ Ereignis _", + "when slot _ signals _" : "Wenn Eingabefeld _ Ereignis _", "when _": "Wenn _", "when _ clicked": "Wenn _ angeklickt", "when _ is edited _": "Wenn _ bearbeitet wird _", diff --git a/src/gui.js b/src/gui.js index 8871d6366..35fb535cb 100644 --- a/src/gui.js +++ b/src/gui.js @@ -91,7 +91,7 @@ modules.gui = '2024-November-10'; // Declarations -var SnapVersion = '10.2.1'; +var SnapVersion = '10.2.2'; var IDE_Morph; var ProjectDialogMorph; diff --git a/src/objects.js b/src/objects.js index 87964363c..a1e5bccc5 100644 --- a/src/objects.js +++ b/src/objects.js @@ -1355,7 +1355,7 @@ SpriteMorph.prototype.primitiveBlocks = function () { receiveSlotEvent: { type: 'hat', category: 'control', - spec: 'when slot %inputSlot gets %slotEvent', + spec: 'when slot %inputSlot signals %slotEvent', defaults: ['', ['menu']] }, doSetSlot: { diff --git a/sw.js b/sw.js index 6cd0b7eba..67ecc6bea 100644 --- a/sw.js +++ b/sw.js @@ -1,6 +1,6 @@ /*global self, caches*/ /*jshint esversion: 6*/ -var snapVersion = '10.2.1', +var snapVersion = '10.2.2', cacheName = `snap-pwa-${snapVersion}`, filesToCache = [ 'snap.html',