webssh

Web based ssh client https://github.com/huashengdun/webssh webssh.huashengdun.org/
git clone http://git.hanabi.in/repos/webssh.git
Log | Files | Refs | README | LICENSE

commit d38453fd0bc622de940cddd6054995052aff96f8
parent 169286586fc010be92158f0cd119beb5aa67f030
Author: Sheng <webmaster0115@gmail.com>
Date:   Fri, 10 Aug 2018 13:45:01 +0800

Updated version

Diffstat:
MREADME.md | 8++++----
MREADME.rst | 8++++----
Msetup.py | 1+
Mwebssh/_version.py | 2+-
4 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md @@ -17,7 +17,7 @@ A simple web application to be used as an ssh client to connect to your ssh serv * Fullscreen terminal supported. * Terminal window resizable. * Auto detect system default encoding. -* Compatible with Python 2.7-3.6. +* Compatible with Python 2.7-3.7. ### Instructions ``` @@ -27,13 +27,13 @@ wssh ### Options ``` -# configure listen address and port +# listen address and port wssh --address='0.0.0.0' --port=8000 -# configure missing host key policy +# missing host key policy wssh --policy=reject -# configure logging level +# logging level wssh --logging=debug # log to file diff --git a/README.rst b/README.rst @@ -21,7 +21,7 @@ Features - Fullscreen terminal supported. - Terminal window resizable. - Auto detect system default encoding. -- Compatible with Python 2.7-3.6. +- Compatible with Python 2.7-3.7. Instructions ~~~~~~~~~~~~ @@ -36,13 +36,13 @@ Options :: - # configure listen address and port + # listen address and port wssh --address='0.0.0.0' --port=8000 - # configure missing host key policy + # missing host key policy wssh --policy=reject - # configure logging level + # logging level wssh --logging=debug # log to file diff --git a/setup.py b/setup.py @@ -30,6 +30,7 @@ setup( 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], install_requires=[ 'tornado>=4.5.0', diff --git a/webssh/_version.py b/webssh/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 2, 5) +__version_info__ = (0, 2, 6) __version__ = '.'.join(map(str, __version_info__))