summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Mönig <jens@moenig.org>2015-03-15 14:55:37 +0100
committerJens Mönig <jens@moenig.org>2015-03-15 14:55:37 +0100
commit7f9fe78c56dbe26ccdcd8f6fd33cbb9766add474 (patch)
tree85ce61570a275fa4aad86dd03c501b3c4d9fac68
parent31ea6f603085827ba95f20f55faca3e4fa85365e (diff)
downloadsnap-7f9fe78c56dbe26ccdcd8f6fd33cbb9766add474.tar.gz
snap-7f9fe78c56dbe26ccdcd8f6fd33cbb9766add474.zip
fixed #743
-rwxr-xr-xhistory.txt5
-rw-r--r--store.js4
2 files changed, 7 insertions, 2 deletions
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);