kopia lustrzana https://github.com/backface/turtlestitch
renamed "whitespace" option in SPLIT to "word"
rodzic
137b9b51df
commit
2150bbf8bf
|
@ -56,6 +56,7 @@
|
||||||
* adjust bottom of STOP block to reflect the menu selection (show / hide bottom notch)
|
* adjust bottom of STOP block to reflect the menu selection (show / hide bottom notch)
|
||||||
* enable dropping commands into all rings
|
* enable dropping commands into all rings
|
||||||
* colors in the vector editor are now named "Edge color" and "Fill color", thanks, Brian!
|
* colors in the vector editor are now named "Edge color" and "Fill color", thanks, Brian!
|
||||||
|
* renamed "whitespace" option in SPLIT to "word"
|
||||||
* deprecated storing projects in the browser's localStorage
|
* deprecated storing projects in the browser's localStorage
|
||||||
* deprecated some (useless) graphic effects
|
* deprecated some (useless) graphic effects
|
||||||
* additional "publish / unpublish" buttons in the project dialog
|
* additional "publish / unpublish" buttons in the project dialog
|
||||||
|
@ -82,7 +83,8 @@
|
||||||
|
|
||||||
### 2019-05-29
|
### 2019-05-29
|
||||||
* Threads, Objects: added "Find First" primitive to lists category
|
* Threads, Objects: added "Find First" primitive to lists category
|
||||||
* Blocks, Thread, Objects: added "blitz" version of FIND
|
* Blocks, Threads, Objects: added "blitz" version of FIND
|
||||||
|
* Blocks, Threads, Objects: renamed "whitespace" option in SPLIT to "word"
|
||||||
|
|
||||||
### 2019-05-28
|
### 2019-05-28
|
||||||
* Maps: added various different tile hosts
|
* Maps: added various different tile hosts
|
||||||
|
|
|
@ -1099,7 +1099,7 @@ SyntaxElementMorph.prototype.labelPart = function (spec) {
|
||||||
false, // numeric?
|
false, // numeric?
|
||||||
{
|
{
|
||||||
'letter' : ['letter'],
|
'letter' : ['letter'],
|
||||||
'whitespace' : ['whitespace'],
|
'word' : ['word'],
|
||||||
'line' : ['line'],
|
'line' : ['line'],
|
||||||
'tab' : ['tab'],
|
'tab' : ['tab'],
|
||||||
'cr' : ['cr'],
|
'cr' : ['cr'],
|
||||||
|
|
|
@ -3332,6 +3332,7 @@ Process.prototype.reportTextSplit = function (string, delimiter) {
|
||||||
case 'cr':
|
case 'cr':
|
||||||
del = '\r';
|
del = '\r';
|
||||||
break;
|
break;
|
||||||
|
case 'word':
|
||||||
case 'whitespace':
|
case 'whitespace':
|
||||||
str = str.trim();
|
str = str.trim();
|
||||||
del = /\s+/;
|
del = /\s+/;
|
||||||
|
|
Ładowanie…
Reference in New Issue