diff --git a/HISTORY.md b/HISTORY.md index acacc80e..7b8238f9 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,12 +4,16 @@ * **New Features:** * **Notable Changes:** + * fixed storing the stage name(s) * same blocks with empty variadic inputs compare as equal regardless of their arity * **Notable Fixes:** * removed distinction between number and string keys in "analyze" * **Documentation Updates:** * **Translation Updates:** +### 2022-01-02 +* store: fixed storing the stage name(s) + ### 2022-01-01 * extensions: removed distinction between number and string keys in "analyze" diff --git a/snap.html b/snap.html index c403edf1..5996f7bb 100755 --- a/snap.html +++ b/snap.html @@ -30,7 +30,7 @@ - + diff --git a/src/extensions.js b/src/extensions.js index 35ac03f4..364123db 100644 --- a/src/extensions.js +++ b/src/extensions.js @@ -6,7 +6,7 @@ written by Jens Mönig - Copyright (C) 2021 by Jens Mönig + Copyright (C) 2022 by Jens Mönig This file is part of Snap!. diff --git a/src/store.js b/src/store.js index 756fb755..daa934fe 100644 --- a/src/store.js +++ b/src/store.js @@ -7,7 +7,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!. @@ -63,7 +63,7 @@ Project*/ // Global stuff //////////////////////////////////////////////////////// -modules.store = '2021-December-14'; +modules.store = '2022-January-02'; // XML_Serializer /////////////////////////////////////////////////////// /* @@ -1781,7 +1781,7 @@ StageMorph.prototype.toXML = function (serializer) { this.removeAllClones(); return serializer.format( - '%' + '%' + '', + this.name, this.dimensions.x, this.dimensions.y, costumeIdx,