Moved to version v0.4.1

master
Sebastian Lohff 12 years ago
parent 889be24025
commit 528d19c67b

@ -1,7 +1,17 @@
servefile changelog servefile changelog
=================== ===================
2012-04-27 v0.4.0 2012-05-04 v0.4.1
-----------------
0.4.1 released
* tar + compression feature
* compression
* shows fingerprint for self generated certs
* added manpage
2012-04-16 v0.4.0
----------------- -----------------
0.4.0 released 0.4.0 released

@ -1,2 +1,2 @@
include changelog include ChangeLog
include servefile.1 include servefile.1

@ -5,7 +5,7 @@
# Written by Sebastian Lohff (seba@seba-geek.de) # Written by Sebastian Lohff (seba@seba-geek.de)
# http://seba-geek.de/stuff/servefile/ # http://seba-geek.de/stuff/servefile/
__version__ = '0.4.0' __version__ = '0.4.1'
import argparse import argparse
import base64 import base64

@ -1,4 +1,4 @@
.TH SERVEFILE "20" "April 2012" "servefile 0.4.0" "User Commands" .TH SERVEFILE "20" "April 2012" "servefile 0.4.1" "User Commands"
.SH NAME .SH NAME
servefile \- small HTTP-Server for temporary file transfer servefile \- small HTTP-Server for temporary file transfer
@ -105,9 +105,9 @@ Uploading file foo as bar to servefile via command line:
curl \-X POST http://ip:port/bar \-d @foo curl \-X POST http://ip:port/bar \-d @foo
wget http://ip:port/bar \-\-post-file=foo wget http://ip:port/bar \-\-post-file=foo
.PP .PP
serving a on the fly generated tar.gz file of a directory: Serving a on the fly generated tar.gz file of a directory:
.IP .IP
servefile --tar -c gzip path/to/dir servefile \-\-tar \-c gzip path/to/dir
.PP .PP
.SH AUTHOR .SH AUTHOR
servefile is developed by Sebastian Lohff <seba@someserver.de> servefile is developed by Sebastian Lohff <seba@someserver.de>

@ -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.0', version='0.4.1',
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…
Cancel
Save