From d33d4c0162cab7e3ae1727106fcbd8c3147a91ce Mon Sep 17 00:00:00 2001 From: jmoenig Date: Sat, 12 Sep 2020 16:30:35 +0200 Subject: [PATCH] don't auto-translate ListMorph items --- HISTORY.md | 4 ++++ snap.html | 2 +- src/morphic.js | 6 ++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 7397d8f9..8df2098a 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -11,11 +11,15 @@ * **Notable Fixes:** * changing the type of a custom block from reporter to command in the block editor changes the prototype instead of adding another one * deleting project notes in the "save" dialog now also deletes them in the saved project + * items in list-boxes such as the project list are no longer auto-translated * **Translation Updates:** * Catalan, thanks, Joan! * Norwegian, thanks, Olav! * German +### 2020-09-12 +* morphic: don't auto-translate ListMorph items + ### 2020-09-10 * added input type assertions to Database library diff --git a/snap.html b/snap.html index 4dad2c73..ca74d36f 100755 --- a/snap.html +++ b/snap.html @@ -5,7 +5,7 @@ Snap! 6.2.0 - dev - Build Your Own Blocks - + diff --git a/src/morphic.js b/src/morphic.js index bb4b564e..17356704 100644 --- a/src/morphic.js +++ b/src/morphic.js @@ -1280,7 +1280,7 @@ /*global window, HTMLCanvasElement, FileReader, Audio, FileList, Map*/ -var morphicVersion = '2020-July-23'; +var morphicVersion = '2020-September-12'; var modules = {}; // keep track of additional loaded modules var useBlurredShadows = true; @@ -10850,7 +10850,9 @@ ListMorph.prototype.buildListContents = function () { color, bold, italic, - this.doubleClickAction + this.doubleClickAction, + null, // shortcut + true // verbatim - don't translate ); } });