CLI/TUI for drafting, repeating, and publishing daily standup updates as GitHub issues
github go cli golang management project tui daily
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: reduce version check cache to 1 hour

Previously cached for 24 hours which could hide new releases for too long.
1 hour provides a better balance between freshness and API rate limits.

+1 -1
+1 -1
internal/version/check.go
··· 13 13 14 14 const ( 15 15 githubRepo = "vieitesss/pad" 16 - checkInterval = 24 * time.Hour 16 + checkInterval = 1 * time.Hour 17 17 ) 18 18 19 19 type ReleaseAsset struct {