summaryrefslogtreecommitdiff
path: root/internal/cli
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-19 21:01:55 +0200
committerPaul Buetow <paul@buetow.org>2026-03-19 21:01:55 +0200
commitb1faeca09f1cd98a64e5c7c17db990b19803750a (patch)
tree7a15723d6390d34539efac5c7e978a1e62915e25 /internal/cli
parentd24a40f2f66999f36ab4d0e26cfe88c38d12e64e (diff)
chore(release): bump version to 0.15.7v0.15.7
Increase full sync recent-days window from 7 to 17 days. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/cli')
-rw-r--r--internal/cli/throttle.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/cli/throttle.go b/internal/cli/throttle.go
index d285350..5241782 100644
--- a/internal/cli/throttle.go
+++ b/internal/cli/throttle.go
@@ -16,7 +16,7 @@ const (
defaultSyncInterval = 24 * time.Hour
throttleMinDays = 60
throttleMaxDays = 120
- recentDays = 7
+ recentDays = 17
)
func loadSyncState(workDir string) (*state.Manager, *state.State, error) {