Skip to content

Commit

Permalink
changed wording for "when slot ... gets ..." hat block to "when slot …
Browse files Browse the repository at this point in the history
…... signals ..."
  • Loading branch information
jmoenig committed Nov 10, 2024
1 parent 6eb5004 commit 559b074
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion locale/lang-de.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 _",
Expand Down
2 changes: 1 addition & 1 deletion src/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/objects.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit 559b074

Please sign in to comment.