Update README.

Bump to 0.1.2.
This commit is contained in:
n0vad3v 2020-03-20 13:20:02 +08:00
parent ceebddbd43
commit 5cc9bf2588
No known key found for this signature in database
GPG Key ID: 8D42A0E699E50639
3 changed files with 3 additions and 4 deletions

View File

@ -158,12 +158,11 @@ It's basically between `ExpressJS` and `Fiber`, much faster than the `http` pack
## TODO
- [x] This version doesn't support header-based-output, which means Safari users will not see the converted `webp` images, this should be fixed in later releases.
- [ ] Multi platform support.
- [x] Multi platform support.
- [x] A better way to supervise the program.
- [ ] Get rid of render-blocking effect on first render.
- [x] Prefetch on server initialization.
- [x] Custom exhaust path.
- [ ] Multiple listen address.
## Benchmark on convert

View File

@ -1,5 +1,5 @@
Name: webp-server
Version: 0.1.1
Version: 0.1.2
Release: 1%{?dist}
Summary: Go version of WebP Server. A tool that will serve your JPG/PNGs as WebP format with compression, on-the-fly.

View File

@ -21,7 +21,7 @@ type Config struct {
ExhaustPath string `json:"EXHAUST_PATH"`
}
const version = "0.1.1"
const version = "0.1.2"
var configPath string
var prefetch bool