forked from seba/servefile
Moved to v0.4.2
This commit is contained in:
parent
602dba42f9
commit
8c4439cc2b
10
ChangeLog
10
ChangeLog
|
@ -1,6 +1,16 @@
|
|||
servefile changelog
|
||||
===================
|
||||
|
||||
2012-06-27 v0.4.2
|
||||
-----------------
|
||||
|
||||
0.4.2 released
|
||||
|
||||
* new directory listing + nicer index
|
||||
* IPv6 support
|
||||
* basic auth realm configurable
|
||||
* various bugfixes
|
||||
|
||||
2012-05-04 v0.4.1
|
||||
-----------------
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
from __future__ import print_function
|
||||
|
||||
__version__ = '0.4.1'
|
||||
__version__ = '0.4.2'
|
||||
|
||||
import argparse
|
||||
import base64
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH SERVEFILE 1 "April 2012" "servefile 0.4.1" "User Commands"
|
||||
.TH SERVEFILE 1 "April 2012" "servefile 0.4.2" "User Commands"
|
||||
|
||||
.SH NAME
|
||||
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',
|
||||
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',
|
||||
version='0.4.1',
|
||||
version='0.4.2',
|
||||
license='GPLv3 or later',
|
||||
url='http://seba-geek.de/stuff/servefile/',
|
||||
author='Sebastian Lohff',
|
||||
|
|
Loading…
Reference in New Issue