Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-20Update import path of fsnotifyAnthony Fok
Rename "gopkg.in/fsnotify.v1" to "github.com/fsnotify/fsnotify" per upstream recommendation. See https://github.com/fsnotify/fsnotify/issues/108 for rationale.
2015-12-07Fix copyright headers in source filesBjørn Erik Pedersen
Still need to add some missing headers and an AUTHORS file. See #1646
2015-11-24Change the license to Apache 2.0Steve Francia
2015-03-10Switch from fsnotify.v0 to fsnotify.v1 API (watcher)Anthony Fok
Fixes #357 See also #761
2015-01-05use fsnotify 0.9.3Nathan Youngman
This contains a few fixes (v0.9.1 through v0.9.3) but the same API and few internal changes. https://github.com/go-fsnotify/fsnotify/blob/master/CHANGELOG.md#v093--2014-12-31 A good first step before switching to v1.
2014-01-30gofmt all go codeTibor Vass
2013-12-28Added batching behavior for page building.Egon Elbre
Quite often file watcher gets many changes and each change triggered a build. One build per second should be sufficient. Also added tracking for new folders.