Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
b3ffa71
add CAR (string) node
Jul 21, 2014
17c4543
add CAR (string) some fix CDR (string)
Jul 21, 2014
613a766
add DeleteSlice(string) without bin size and fix cdr
Jul 21, 2014
c3ddd3b
add Reader(string)
Jul 21, 2014
6a20d52
add SubstractString node
Jul 21, 2014
5ac51ed
add Delete node on backspace (for mac users)
Jul 22, 2014
8d560ff
add GetSlice(color)
Jul 22, 2014
e8d572e
add nodes GetSpread(string), SetSlice(string)
Jul 24, 2014
7645424
some fix with commit
Jul 24, 2014
1e3e00f
String fixes from meeting.
smakhtin Jul 24, 2014
128539e
Bug fix GetSpreadAdvanced
Jul 25, 2014
bd96262
Bug fix getSpread node
Jul 26, 2014
2c39de8
add CAR, CDR, GetSpread advanced, DeleteSlice for spreads
Jul 26, 2014
c46a806
Added .idea folder to gitignore.
smakhtin Jul 27, 2014
9a7f093
Merge remote-tracking branch 'origin/master'
smakhtin Jul 27, 2014
722bfd8
Added Occurence node. Added test node. Need to debug.
smakhtin Jul 27, 2014
202e917
add multiple inputIn in SetSpread (String)
Jul 27, 2014
5b35702
Merge remote-tracking branch 'origin/master'
Jul 27, 2014
c62dc47
Occurrence working
smakhtin Jul 27, 2014
ebec7f8
Merge branch 'master' of github.com:noobusdeer/vvvv.js
Jul 27, 2014
17e18c3
Sort (String Advanced) working
smakhtin Jul 27, 2014
da124e8
Merge remote-tracking branch 'origin/master'
smakhtin Jul 27, 2014
3d0da56
Delete test files
Jul 28, 2014
a361bc1
Add Index Bin Size pin in Occurrence need Debug
Jul 29, 2014
4097f5c
Add UnzipString
Jul 29, 2014
7cd9636
Add advanced sort spread, S+H string
Jul 29, 2014
fc1c110
Add getslice string
Jul 30, 2014
1dda52d
add timing
Jul 30, 2014
d04f252
transfer timing to debug
Jul 31, 2014
35fdc49
add querySelector node for value
Jul 31, 2014
f22d91b
some fix (you don't to write # in id pin)
Jul 31, 2014
8b16453
Unzip spreads
Aug 5, 2014
4a46b14
add IndexOf node
Aug 7, 2014
c8e014c
some fix and nod deletenull
Aug 11, 2014
19019eb
Proper For loops
smakhtin Aug 13, 2014
6dfa2ec
Merge remote-tracking branch 'origin/master'
smakhtin Aug 13, 2014
2ee4fdb
Fixed bug in Occurence with BinSize -1
smakhtin Aug 13, 2014
35195e3
fix CDR
Aug 28, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea/
mongoose*.exe
2 changes: 1 addition & 1 deletion core/vvvv.core.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ VVVV.Core = {
* @param {Boolean} [stopPropagation] default is false; if true, the function does not update slavePins to avoid infinite loops; this parameter should not be used in node implementations
*/
this.setValue = function(i, v, stopPropagation) {
stopPropagation = stopPropagation || false
stopPropagation = stopPropagation || false;
this.values[i] = v;
this.changed = true;
this.node.dirty = true;
Expand Down
Loading