Added tab completion, history, and fixed an OSX error

This commit is contained in:
trustedsec 2013-01-08 21:00:36 -05:00
parent 57644c88b6
commit f859526f9b
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
~~~~~~~~~~~~~~~~
version 4.3.6
~~~~~~~~~~~~~~~~
* you can now use up arrows, down errors, history, etc. within the interactive shell (thanks lnxg33k for the change)
* fixed a bug in OSX if README and readme were in the same folder, would throw errors (thanks mubix)
~~~~~~~~~~~~~~~~
version 4.3.5
~~~~~~~~~~~~~~~~

View file

@ -215,7 +215,7 @@ def print_error(message):
print bcolors.RED + bcolors.BOLD + "[!] " + bcolors.ENDC + bcolors.RED + str(message) + bcolors.ENDC
def get_version():
define_version = '4.3.5'
define_version = '4.3.6'
return define_version
class create_menu: