Fix documentation on watch intervals. Fixes #26

This commit is contained in:
Justin Hawkins 2022-09-15 22:14:59 +09:30
parent 4dd166e65e
commit 326807b395
4 changed files with 7 additions and 3 deletions

View File

@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
## [Unreleased] ## [Unreleased]
## [v0.12.4] - 2022-09-15
- Document that watcher intervals are in seconds
## [v0.12.3] - 2022-05-09 ## [v0.12.3] - 2022-05-09
- Fix a race condition occasionally causing multiple duplicate uploads - Fix a race condition occasionally causing multiple duplicate uploads

View File

@ -54,7 +54,7 @@ no changes will take effect until the "Save All Configuration" button has been p
### Global options ### Global options
* Server port - the port number the web server listens on. Requires restart * Server port - the port number the web server listens on. Requires restart
* Watch interval - how often each watcher will check the directory for new files * Watch interval - how often each watcher will check the directory for new files, in seconds
### Watcher configuration ### Watcher configuration

View File

@ -13,7 +13,7 @@ import (
"golang.org/x/mod/semver" "golang.org/x/mod/semver"
) )
const CurrentVersion string = "v0.12.3" const CurrentVersion string = "v0.12.4"
type GithubRelease struct { type GithubRelease struct {
HTMLURL string `json:"html_url"` HTMLURL string `json:"html_url"`

View File

@ -21,7 +21,7 @@
</p> </p>
<p>The Watch Interval is how often new files will be discovered by your <p>The Watch Interval is how often new files will be discovered by your
watchers (watchers are configured below).</p> watchers in seconds (watchers are configured below).</p>
<div class="form-row align-items-center"> <div class="form-row align-items-center">
<div class="col-sm-6 my-1"> <div class="col-sm-6 my-1">