From 5cc9bf25886b5841c33b79a99418822a5a96ab7d Mon Sep 17 00:00:00 2001 From: n0vad3v Date: Fri, 20 Mar 2020 13:20:02 +0800 Subject: [PATCH] Update README. Bump to 0.1.2. --- README.md | 3 +-- scripts/webp_server.spec | 2 +- webp-server.go | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 76e8628..5743947 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/scripts/webp_server.spec b/scripts/webp_server.spec index 68edd3d..b6e5613 100644 --- a/scripts/webp_server.spec +++ b/scripts/webp_server.spec @@ -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. diff --git a/webp-server.go b/webp-server.go index 0a2e3d1..46125e5 100644 --- a/webp-server.go +++ b/webp-server.go @@ -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