From 802ace18d18784a026a7c1c0466da264828b8227 Mon Sep 17 00:00:00 2001 From: Jens Mönig Date: Mon, 9 Mar 2015 07:09:43 +0100 Subject: fixed #738 --- history.txt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'history.txt') diff --git a/history.txt b/history.txt index d042af4..8265210 100755 --- a/history.txt +++ b/history.txt @@ -2466,3 +2466,7 @@ ______ 150306 ------ * Blocks: fixed #736 + +150309 +------ +* Blocks: fixed #738 -- cgit v1.3.1 From 7f9fe78c56dbe26ccdcd8f6fd33cbb9766add474 Mon Sep 17 00:00:00 2001 From: Jens Mönig Date: Sun, 15 Mar 2015 14:55:37 +0100 Subject: fixed #743 --- history.txt | 5 +++++ store.js | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'history.txt') diff --git a/history.txt b/history.txt index 8265210..1a430fb 100755 --- a/history.txt +++ b/history.txt @@ -2470,3 +2470,8 @@ ______ 150309 ------ * Blocks: fixed #738 +* GUI, Blocks: Only enable input caching for blocks + +150315 +------ +* Store: fixed #743 diff --git a/store.js b/store.js index b17fb49..d4a2b64 100644 --- a/store.js +++ b/store.js @@ -61,7 +61,7 @@ SyntaxElementMorph, Variable*/ // Global stuff //////////////////////////////////////////////////////// -modules.store = '2015-February-28'; +modules.store = '2015-March-15'; // XML_Serializer /////////////////////////////////////////////////////// @@ -782,7 +782,7 @@ SnapSerializer.prototype.loadCustomBlocks = function ( names = definition.parseSpec(definition.spec).filter( function (str) { - return str.charAt(0) === '%'; + return str.charAt(0) === '%' && str.length > 1; } ).map(function (str) { return str.substr(1); -- cgit v1.3.1 From fdd2ecf7d91d8026d3ca42c4bd52774877c72645 Mon Sep 17 00:00:00 2001 From: Jens Mönig Date: Sun, 15 Mar 2015 15:01:25 +0100 Subject: switch from beta to release candidate --- gui.js | 4 ++-- history.txt | 1 + snap.html | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) (limited to 'history.txt') diff --git a/gui.js b/gui.js index b103ccc..50f3cb2 100644 --- a/gui.js +++ b/gui.js @@ -69,7 +69,7 @@ SpeechBubbleMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.gui = '2015-March-09'; +modules.gui = '2015-March-15'; // Declarations @@ -2598,7 +2598,7 @@ IDE_Morph.prototype.aboutSnap = function () { module, btn1, btn2, btn3, btn4, licenseBtn, translatorsBtn, world = this.world(); - aboutTxt = 'Snap! 4.0\nBuild Your Own Blocks\n\n--- beta ---\n\n' + aboutTxt = 'Snap! 4.0\nBuild Your Own Blocks\n\n--- rc ---\n\n' + 'Copyright \u24B8 2015 Jens M\u00F6nig and ' + 'Brian Harvey\n' + 'jens@moenig.org, bh@cs.berkeley.edu\n\n' diff --git a/history.txt b/history.txt index 1a430fb..b53e59c 100755 --- a/history.txt +++ b/history.txt @@ -2475,3 +2475,4 @@ ______ 150315 ------ * Store: fixed #743 +* GUI, html: switch from beta to release candidate diff --git a/snap.html b/snap.html index 93b4c73..976bcd6 100755 --- a/snap.html +++ b/snap.html @@ -2,7 +2,7 @@ - Snap! Build Your Own Blocks. Beta + Snap! Build Your Own Blocks -- cgit v1.3.1