From 326807b3955d2d35221ce41d0e69ec01a54a06a9 Mon Sep 17 00:00:00 2001
From: Justin Hawkins
Date: Thu, 15 Sep 2022 22:14:59 +0930
Subject: [PATCH] Fix documentation on watch intervals. Fixes #26
---
CHANGELOG.md | 4 ++++
README.md | 2 +-
version/version.go | 2 +-
web/data/config.html | 2 +-
4 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8c96141..e30228e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
+## [v0.12.4] - 2022-09-15
+
+- Document that watcher intervals are in seconds
+
## [v0.12.3] - 2022-05-09
- Fix a race condition occasionally causing multiple duplicate uploads
diff --git a/README.md b/README.md
index ac20416..8fc4e7e 100644
--- a/README.md
+++ b/README.md
@@ -54,7 +54,7 @@ no changes will take effect until the "Save All Configuration" button has been p
### Global options
* 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
diff --git a/version/version.go b/version/version.go
index 60c1c65..a4bab73 100644
--- a/version/version.go
+++ b/version/version.go
@@ -13,7 +13,7 @@ import (
"golang.org/x/mod/semver"
)
-const CurrentVersion string = "v0.12.3"
+const CurrentVersion string = "v0.12.4"
type GithubRelease struct {
HTMLURL string `json:"html_url"`
diff --git a/web/data/config.html b/web/data/config.html
index 64cf610..75098e6 100644
--- a/web/data/config.html
+++ b/web/data/config.html
@@ -21,7 +21,7 @@
The Watch Interval is how often new files will be discovered by your
- watchers (watchers are configured below).
+ watchers in seconds (watchers are configured below).