diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-09-23 18:43:14 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2021-09-23 18:43:14 +0000 |
commit | 74c8651360746c667b00c24f60440105d57e73de (patch) | |
tree | 93aca0805b3fd2e098c23cc84273aee636dfa1de | |
parent | Merge pull request #508 from Jikstra/feat_raw_mode (diff) | |
download | miniserve-74c8651360746c667b00c24f60440105d57e73de.tar.gz miniserve-74c8651360746c667b00c24f60440105d57e73de.zip |
Add CHANGELOG and README entry for raw mode
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | README.md | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e53fe0..f70b95c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). <!-- next-header --> ## [Unreleased] - ReleaseDate +- Add raw mode and raw mode footer display [#508](https://github.com/svenstaro/miniserve/pull/508) (thanks @Jikstra) ## [0.17.0] - 2021-09-04 - Print QR codes on terminal [#524](https://github.com/svenstaro/miniserve/pull/524) (thanks @aliemjay) @@ -132,6 +132,9 @@ Sometimes this is just a more practical and quick way than doing things properly -V, --version Print version information + -W, --show-wget-footer + If enabled, display a wget command to recursively download the current directory + -z, --enable-zip Enable zip archive generation @@ -267,7 +270,7 @@ You can provide `-i` multiple times to bind to multiple interfaces at the same t ## Why use this over alternatives? -- darkhttpd: Not easily available on Windows and it's not as easy as download and go. +- darkhttpd: Not easily available on Windows and it's not as easy as download-and-go. - Python built-in webserver: Need to have Python installed, it's low performance, and also doesn't do correct MIME type handling in some cases. - netcat: Not as convenient to use and sending directories is [somewhat involved](https://nakkaya.com/2009/04/15/using-netcat-for-file-transfers/). |