notice += light_green('pip install -U rainbowstream')
printNicely(notice)
else:
- printNicely(yellow('You are running latest ' + current + ' version.'))
+ notice = light_yellow('You are running latest version (')
+ notice += light_green(current)
+ notice += light_yellow(')')
+ printNicely(notice)
except:
pass
usage += s * 2 + light_green('p') + ' will pause the stream.\n'
usage += s * 2 + light_green('r') + ' will unpause the stream.\n'
usage += s * 2 + light_green('c') + ' will clear the screen.\n'
+ usage += s * 2 + light_green('v') + ' will show version info.\n'
usage += s * 2 + light_green('q') + ' will quit.\n'
# End
usage += '\n'
'p',
'r',
'c',
+ 'v',
'q',
- 'version',
]
# Handle function set
pause,
replay,
clear,
- quit,
upgrade_center,
+ quit,
]
[], # pause
[], # reconnect
[], # clear
- [], # quit
[], # version
+ [], # quit
]
))
init_interactive_shell(d)