diff --git a/README.md b/README.md new file mode 100644 index 0000000..381ed07 --- /dev/null +++ b/README.md @@ -0,0 +1,43 @@ +# webdir + +![](https://img.shields.io/badge/written%20in-golang-blue) + +A web-based directory viewer. + +Host a read-only view of a directory, allowing users to browse the content. + +## Features + +- Windows Explorer-style theme +- Browse subdirectories and download files +- Thumbnail preview for image files and video files (with `ffmpeg` installed) + +The thumbnailer code can also be compiled as a standalone utility (`mkthumb`). This binary is not required to use `webdir`, but is shipped as an extra utility for convenience and testing. + +## Usage + + +``` + +Usage of ./webdir: + -Basedir string + Directory to serve + -CacheSize int + Number of thumbnails to cache in memory (default 100) + -Listen string + Address:port (default "127.0.0.1:8090") + +``` + + +## Changelog + +2017-06-03 1.0 +- Reduce opacity for hidden files +- Improve build system +- [⬇️ webdir-1.0-src.zip](dist-archive/webdir-1.0-src.zip) *(104.16 KiB)* +- [⬇️ webdir-1.0-linux64.tar.gz](dist-archive/webdir-1.0-linux64.tar.gz) *(2.93 MiB)* + + +2016-10-13 +- Initial development release diff --git a/dist-archive/webdir-1.0-linux64.tar.gz b/dist-archive/webdir-1.0-linux64.tar.gz new file mode 100644 index 0000000..ba709ce Binary files /dev/null and b/dist-archive/webdir-1.0-linux64.tar.gz differ diff --git a/dist-archive/webdir-1.0-src.zip b/dist-archive/webdir-1.0-src.zip new file mode 100644 index 0000000..9d5c77e Binary files /dev/null and b/dist-archive/webdir-1.0-src.zip differ diff --git a/doc/image0.png b/doc/image0.png new file mode 100644 index 0000000..3aaab99 Binary files /dev/null and b/doc/image0.png differ