Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
b3f72ef
simpler implementation
shashi Aug 28, 2015
d635a13
Fix flatten
shashi Aug 29, 2015
57a4a4b
Add previous and delay
shashi Aug 29, 2015
de7cd83
Fix the gc issue - don't close over output node
shashi Aug 29, 2015
ecb5f9e
require MessageUtils
shashi Aug 29, 2015
ba3a4c6
Add coverall support in travis
shashi Aug 30, 2015
9a9fbe0
consume -> map
shashi Aug 30, 2015
f34205b
fix some time issues, add cursory tests
shashi Aug 30, 2015
452002a
async and remote map
shashi Aug 30, 2015
d47c0f7
test for push! inside push! behavior
shashi Aug 30, 2015
00dcf32
delete obsolete old tests
shashi Aug 30, 2015
747a6ae
fix tests - method ambiguity in map
shashi Aug 30, 2015
076b14f
require initial value in async and remote map
shashi Aug 31, 2015
e64bfd1
finalize compat for julia 0.3
shashi Aug 31, 2015
c1ec080
remove dropif and dropwhen, rename keepwhen to filterwhen
shashi Aug 31, 2015
a475044
remove boundcopy - still unclear why this is useful
shashi Aug 31, 2015
0506214
time tests and fixes
shashi Aug 31, 2015
7123af0
timewindow & debounce
shashi Aug 31, 2015
c052e8d
formatting changes to tests
shashi Aug 31, 2015
bc77c26
Fix throttle, remove debounce
shashi Sep 6, 2015
92a7ec2
Add tests for previous and delay
shashi Sep 6, 2015
aac2b8e
Fix default value handling in filter
shashi Sep 6, 2015
1ef0a4b
Make foldp take multiple input signals
shashi Sep 6, 2015
e0e6d2d
Deprecation for previous api
shashi Sep 6, 2015
89c9568
add kwargs in deprecated methods
shashi Sep 19, 2015
9a0d468
Maintain a reference to signal's parents. Fix ad-hoc intermediate nod…
shashi Sep 30, 2015
f79c41b
use showerror for captured exception
shashi Sep 30, 2015
9f9501c
fix Union() deprecation warning on 0.4
sjkelly Oct 17, 2015
702b814
Merge pull request #72 from sjkelly/sjk/next-fixes1
shashi Oct 18, 2015
3556b48
return node in preserve
shashi Oct 23, 2015
5af8463
debug_memory flag and saving backtraces for debugging
shashi Nov 8, 2015
abe2a71
Fix bug in fpswhen
shashi Nov 9, 2015
9fa68ec
Fix deprecations, deprecate Input{T}, keep it working
shashi Nov 10, 2015
222e690
Merge remote-tracking branch 'origin/next' into next
shashi Nov 10, 2015
dfabab7
Get rid of weakref logic
shashi Nov 11, 2015
81f7eef
Attempt to allow gc of timed nodes
shashi Nov 11, 2015
e64d139
Remove 0.3 compat
shashi Nov 11, 2015
3541fa2
Remove current test/gc.jl
shashi Nov 11, 2015
2acb72e
Make third argument to push! error callback. Default error callback p…
shashi Nov 11, 2015
b9a9168
Allow cleanup of timer nodes
timholy Nov 12, 2015
62bb4b7
Merge pull request #76 from JuliaLang/teh/gc_timers
shashi Nov 12, 2015
cece161
bind and unbind signals
shashi Nov 12, 2015
7da9893
Merge remote-tracking branch 'origin/next' into next
shashi Nov 12, 2015
b0df92f
Fix up some tests. time tests failing
shashi Nov 12, 2015
78d1303
Add docstrings
shashi Nov 14, 2015
64b72f2
Fixes to async.jl
shashi Nov 14, 2015
68ba195
Permit gc on fps nodes
timholy Nov 14, 2015
664a929
Merge pull request #77 from JuliaLang/teh/cleanup_fps
shashi Nov 14, 2015
402a776
commit documentation for push!
shashi Nov 14, 2015
1fcb7d9
Merge remote-tracking branch 'origin/next' into next
shashi Nov 14, 2015
be5557f
properly crash runner_task in tests. tests for async_map
shashi Nov 14, 2015
cd9e83a
Name changes for Signal
shashi Nov 14, 2015
1fe1d42
Bring back gc
shashi Nov 15, 2015
acffeb1
use deprecate_binding
shashi Nov 15, 2015
eecba8a
rename Input to Signal in tests
shashi Nov 15, 2015
bf1845f
Preserve/unpreserve parents recursively
shashi Nov 15, 2015
e011e15
put a weakref to node on the queue, do send_value in a let block
shashi Nov 15, 2015
4748828
Merge remote-tracking branch 'origin/master' into next
shashi Nov 16, 2015
c050606
Revert "use deprecate_binding"
shashi Nov 16, 2015
9c5d5d1
[ci skip] update docs
shashi Nov 16, 2015
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
doc/html
.*~
.*.swp
.*.swo
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
language: julia
os:
- linux
- osx
julia:
- 0.3
- 0.4
- release
- nightly
sudo: false
notifications:
email: false
sudo: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia -e 'Pkg.clone(pwd()); Pkg.build("Reactive"); Pkg.test("Reactive"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("Reactive")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder()); Codecov.submit(process_folder())'
- julia -e 'cd(Pkg.dir("Reactive")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
1 change: 0 additions & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
julia 0.3
Compat 0.4.0
Loading