Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Julia v0.7 support #143

Merged
merged 46 commits into from
Aug 21, 2018
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
d596127
fix most 0.7 deprecations and errors
rdeits Jul 21, 2018
4df9c7f
some fixes for 0.7
vdayanand Jul 31, 2018
849985c
fix wrong use of jsstring
vdayanand Aug 7, 2018
c8532e0
use the right random port
vdayanand Aug 11, 2018
8429b7a
spawn -> run
rdeits Aug 11, 2018
1209954
more deprecations
rdeits Aug 11, 2018
7a2eddd
make port a const Ref
rdeits Aug 11, 2018
4c4d7ac
more deprecation fixes
rdeits Aug 11, 2018
76a8a1e
test all supported versions on CI
rdeits Aug 16, 2018
c53e3ef
fix Compat requirement
rdeits Aug 16, 2018
2878f71
Compat.Test
rdeits Aug 16, 2018
c04e911
don't use kwarg for run() on 0.6
rdeits Aug 16, 2018
cb177b7
checkout WebIO.jl master on 0.7 and 1.0
rdeits Aug 17, 2018
b02f1b9
update travis scripts
rdeits Aug 17, 2018
78a139e
don't build PR pushes
rdeits Aug 17, 2018
1e7a678
make install.jl more standalone
rdeits Aug 17, 2018
168c958
fix missing kwarg
rdeits Aug 17, 2018
912c572
longer sleep
rdeits Aug 17, 2018
a5eb56b
simpler travis config
rdeits Aug 17, 2018
2dc5640
fix finalizer syntax
rdeits Aug 17, 2018
f5ed611
use pkg string macro
rdeits Aug 17, 2018
26b375b
don't use pkg macro
rdeits Aug 17, 2018
78379c8
blink doesn't need HttpServer.jl
rdeits Aug 17, 2018
3038783
debug
rdeits Aug 17, 2018
bca508e
debug is broken
rdeits Aug 17, 2018
01e12a8
more debugging
rdeits Aug 17, 2018
75d5f41
fewer changes on v0.6:
rdeits Aug 17, 2018
cd880c2
drop Julia v0.6 and remove Compat.jl usage
rdeits Aug 17, 2018
76d840d
try to find an available port instead of picking one randomly
rdeits Aug 17, 2018
46d3da0
more port monkey business
rdeits Aug 17, 2018
bffb5ab
more debug
rdeits Aug 17, 2018
fccf7df
manual port
rdeits Aug 17, 2018
6b77c7f
a lot more tries
rdeits Aug 17, 2018
ed9fa52
show error
rdeits Aug 17, 2018
dfc0adc
debug electron process
rdeits Aug 17, 2018
f5c1bdc
block
rdeits Aug 17, 2018
902b390
more asserts
rdeits Aug 17, 2018
1753aff
more debugging
rdeits Aug 17, 2018
78ce030
undo all my weird hacks
rdeits Aug 17, 2018
4a6eb84
fix script
rdeits Aug 17, 2018
4485af0
update CI again
rdeits Aug 17, 2018
9932875
undo some prints
rdeits Aug 17, 2018
a047736
check out WebIO and JSExpr master on CI
rdeits Aug 19, 2018
dc004a0
use releases of webio and jsexpr
rdeits Aug 19, 2018
167af8e
suppress log messages from HTTP.jl
rdeits Aug 21, 2018
37a5ca0
don't clean up on windows for now
rdeits Aug 21, 2018
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
Prev Previous commit
Next Next commit
debug is broken
rdeits committed Aug 17, 2018
commit bca508ee58de7b3977279f6522800b6d5df2e087
2 changes: 1 addition & 1 deletion src/AtomShell/process.jl
Original file line number Diff line number Diff line change
@@ -138,7 +138,7 @@ quit(shell::Electron) = close(shell.sock)

# Default process

function shell(; debug = true)
function shell(; debug = false)
global _shell
_shell nothing && active(_shell) && return _shell
_shell = init(debug = debug)