diff --git a/README.md b/README.md index b1b2012..2dcd665 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ See [docker-compose.yml](docker-compose.yml) for usage example. ## Note about gorilla/websocket Not choosen because [Connections support one concurrent reader and one concurrent writer](https://godoc.org/github.com/gorilla/websocket). -But we need two writers (one for tail and one for command responses) +But we need two writers (one for tail and one for command responses). May be we join these writers in future. ## TODO diff --git a/cmd/webtail/bindata.go b/cmd/webtail/bindata.go index 8715849..559a403 100644 --- a/cmd/webtail/bindata.go +++ b/cmd/webtail/bindata.go @@ -146,7 +146,7 @@ func webtailJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "webtail.js", size: 7752, mode: os.FileMode(436), modTime: time.Unix(1509214887, 0)} + info := bindataFileInfo{name: "webtail.js", size: 7752, mode: os.FileMode(436), modTime: time.Unix(1510746001, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/cmd/webtail/main.go b/cmd/webtail/main.go index b617a8b..42538e7 100644 --- a/cmd/webtail/main.go +++ b/cmd/webtail/main.go @@ -13,8 +13,8 @@ import ( "github.com/jessevdk/go-flags" "github.com/LeKovr/go-base/log" - "github.com/LeKovr/webtail/manager" "github.com/LeKovr/webtail/api" + "github.com/LeKovr/webtail/manager" ) // ----------------------------------------------------------------------------- @@ -40,7 +40,7 @@ func main() { cfg, lg := setUp() lg.Printf("info: %s v %s. WebTail, tail logfiles via web", path.Base(os.Args[0]), Version) - lg.Print("info: Copyright (C) 2016, Alexey Kovrizhkin ") + lg.Print("info: Copyright (C) 2016-2017, Alexey Kovrizhkin ") _, err := os.Stat(cfg.Tail.Root) panicIfError(lg, err, "Logfile root dir") diff --git a/cmd/webtail/version.go b/cmd/webtail/version.go index 8651653..323e1d8 100644 --- a/cmd/webtail/version.go +++ b/cmd/webtail/version.go @@ -3,7 +3,7 @@ package main // App version variables // Version set in source code -const Version = "0.12" +const Version = "0.20" // Build time filled by make on program build var Build string