Moved to version v0.4.1

This commit is contained in:
Sebastian Lohff 2012-05-04 15:40:46 +02:00
父節點 889be24025
當前提交 528d19c67b
共有 5 個檔案被更改,包括 17 行新增7 行删除

查看文件

@ -1,7 +1,17 @@
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

查看文件

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

查看文件

@ -5,7 +5,7 @@
# Written by Sebastian Lohff (seba@seba-geek.de)
# http://seba-geek.de/stuff/servefile/
__version__ = '0.4.0'
__version__ = '0.4.1'
import argparse
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
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
wget http://ip:port/bar \-\-post-file=foo
.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
servefile --tar -c gzip path/to/dir
servefile \-\-tar \-c gzip path/to/dir
.PP
.SH AUTHOR
servefile is developed by Sebastian Lohff <seba@someserver.de>

查看文件

@ -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.0',
version='0.4.1',
license='GPLv3 or later',
url='http://seba-geek.de/stuff/servefile/',
author='Sebastian Lohff',