From 489be96e51aaeb551f44ee4edc08197c40746e40 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 21 Sep 2025 23:30:20 +0300 Subject: change defaults --- internal/main.go | 6 +++--- internal/version.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/main.go b/internal/main.go index 33bdce5..97bdb82 100644 --- a/internal/main.go +++ b/internal/main.go @@ -22,11 +22,11 @@ func Main(composeModeDefault bool) { configPath := filepath.Join(os.Getenv("HOME"), ".config/gos/gos.json") configPath = *flag.String("configPath", configPath, "Gos' config file path") platforms := flag.String("platforms", "Mastodon:500,LinkedIn:1000,Noop:2000", "Platforms enabled plus their post size limits") - target := flag.Int("target", 4, "How many posts per week are the target?") + target := flag.Int("target", 3, "How many posts per week are the target?") minQueued := flag.Int("minQueued", 10, "Minimum of queued items until printing a warn message!") - maxDaysQueued := flag.Int("maxDaysQueued", 1000, "Maximum days worth of queued posts until target++ and pauseDays--") + maxDaysQueued := flag.Int("maxDaysQueued", 365, "Maximum days worth of queued posts until target++ and pauseDays--") pauseDays := flag.Int("pauseDays", 1, "How many days until next post can be posted?") - runInterval := flag.Int("runInterval", 6, "How many hours to wait for the next run.") + runInterval := flag.Int("runInterval", 3, "How many hours to wait for the next run.") lookback := flag.Int("lookback", 90, "How many days look back in time for posting history") geminiSummaryFor := flag.String("geminiSummaryFor", "", "Generate a summary in Gemini Gemtext format, format is coma separated string of months, e.g. 202410,202411") geminiCapsules := flag.String("geminiCapsules", "foo.zone", "Comma sepaeated list Gemini capsules. Used by geminiEnable to detect Gemtext links") diff --git a/internal/version.go b/internal/version.go index 354774e..a77a49c 100644 --- a/internal/version.go +++ b/internal/version.go @@ -6,7 +6,7 @@ import ( "codeberg.org/snonux/gos/internal/table" ) -const versionStr = "v1.1.0" +const versionStr = "v1.1.1" func printVersion() { table.New(). -- cgit v1.2.3