forked from seba/servefile
Moved to v0.4.4
This commit is contained in:
parent
cd7eee21be
commit
a0b8ae4932
12
ChangeLog
12
ChangeLog
|
@ -1,6 +1,18 @@
|
||||||
servefile changelog
|
servefile changelog
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
2015-11-10 v0.4.4
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
0.4.4 released
|
||||||
|
|
||||||
|
* prefer using TLS1.2/TLS1 with --ssl if available
|
||||||
|
* issue v3 certificates for self signed certificates with --ssl
|
||||||
|
* removed lots of unnecessary error output
|
||||||
|
* fixed a bug where wrong ranges were used on a HEAD request in directory listing mode
|
||||||
|
* fixed a bug where directory listing mode allowed path traversal
|
||||||
|
|
||||||
|
|
||||||
2013-12-28 v0.4.3
|
2013-12-28 v0.4.3
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
|
|
||||||
__version__ = '0.4.3'
|
__version__ = '0.4.4'
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import base64
|
import base64
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.TH SERVEFILE 1 "December 2013" "servefile 0.4.3" "User Commands"
|
.TH SERVEFILE 1 "November 2015" "servefile 0.4.4" "User Commands"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
servefile \- small HTTP-Server for temporary file transfer
|
servefile \- small HTTP-Server for temporary file transfer
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -7,7 +7,7 @@ setup(
|
||||||
description='Serve files from shell via a small HTTP server',
|
description='Serve files from shell via a small HTTP server',
|
||||||
long_description='Serve files from shell via a small HTTP server. The server redirects all HTTP requests to the file, so only IP and port must be given to another user to access the file. Its main purpose is to quickly send a file to users in your local network, independent of their current setup (OS/software). Beneath that it also supports uploads, SSL, HTTP basic auth and directory listings.',
|
long_description='Serve files from shell via a small HTTP server. The server redirects all HTTP requests to the file, so only IP and port must be given to another user to access the file. Its main purpose is to quickly send a file to users in your local network, independent of their current setup (OS/software). Beneath that it also supports uploads, SSL, HTTP basic auth and directory listings.',
|
||||||
platforms='posix',
|
platforms='posix',
|
||||||
version='0.4.3',
|
version='0.4.4',
|
||||||
license='GPLv3 or later',
|
license='GPLv3 or later',
|
||||||
url='http://seba-geek.de/stuff/servefile/',
|
url='http://seba-geek.de/stuff/servefile/',
|
||||||
author='Sebastian Lohff',
|
author='Sebastian Lohff',
|
||||||
|
|
Loading…
Reference in New Issue