File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -20,16 +20,18 @@ function __PythonCall_banner(io::IO = stdout)
20
20
c = Base. text_colors
21
21
tx = c[:normal ] # text
22
22
jl = c[:normal ] # julia
23
- jc = c[:blue ] # juliacall
23
+ jc = c[:blue ] # juliacall text
24
+ jb = c[:bold ] * jc # bold blue dot
24
25
d1 = c[:bold ] * c[:blue ] # first dot
25
26
d2 = c[:bold ] * c[:red ] # second dot
26
27
d3 = c[:bold ] * c[:green ] # third dot
27
28
d4 = c[:bold ] * c[:magenta ] # fourth dot
29
+ d5 = c[:bold ] * c[:yellow ] # bold yellow dot
28
30
29
31
if short
30
32
print (io,"""
31
- $(d3 ) o$(tx) | Julia $(VERSION )
32
- $(d2 ) o$(tx) $(d4) o $(tx) $(c[ :bold ] * jc ) o$(tx) | PythonCall $(PythonCall. VERSION )
33
+ $(jb ) o$(tx) | Julia $(VERSION )
34
+ $(jb ) o$(tx) $(d5 ) o$(tx) | PythonCall $(PythonCall. VERSION )
33
35
""" )
34
36
else
35
37
print (io,""" $(d3) _$(tx)
@@ -46,8 +48,8 @@ function __PythonCall_banner(io::IO = stdout)
46
48
else
47
49
if short
48
50
print (io,"""
49
- o | Julia $(VERSION )
50
- o o o | PythonCall $(PythonCall. VERSION )
51
+ o | Julia $(VERSION )
52
+ o o | PythonCall $(PythonCall. VERSION )
51
53
""" )
52
54
else
53
55
print (io,"""
You can’t perform that action at this time.
0 commit comments