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
2021-07-04Add polling as a fallback to native filesystem events in server watchBjørn Erik Pedersen
Fixes #8720 Fixes #6849 Fixes #7930
2020-11-21watcher: Add file deleted by accidentBjørn Erik Pedersen
See #7972
2020-11-20docs: Regenerate docshelperBjørn Erik Pedersen
2017-08-03Add some missing doc commentsJorin Vogel
As pointed out by the linter, some exported functions and types are missing doc comments. The linter warnings have been reduced from 194 to 116. Not all missing comments have been added in this commit though.
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.