summaryrefslogtreecommitdiff
path: root/internal/main.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-10 15:10:53 +0300
committerPaul Buetow <paul@buetow.org>2026-04-10 15:10:53 +0300
commitf784d30559569cba63d5d02aa3413346accea7fb (patch)
tree36f8e4bc64cd641b2324c35999b3c053f267cad0 /internal/main.go
parentb6be62b537ebfd3a0e2fa25c93d2408ccb418cb7 (diff)
v1.3.0: Snonux inbox, default platform, compose posting, gemtext filterv1.3.0
- Snonux writes plain text to gosdir/snonux/inbox - Default -platforms includes Snonux; gosc runs post after compose - Gemini summary skips db/platforms/snonux posted entries Made-with: Cursor
Diffstat (limited to 'internal/main.go')
-rw-r--r--internal/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/main.go b/internal/main.go
index ea5d527..efc4782 100644
--- a/internal/main.go
+++ b/internal/main.go
@@ -25,7 +25,7 @@ func Main(composeModeDefault bool) {
// cacheDir := flag.String("cacheDir", filepath.Join(*gosDir, "cache"), "Go's cache dir")
browser := flag.String("browser", "firefox", "OAuth2 browser")
configPath := flag.String("configPath", filepath.Join(os.Getenv("HOME"), ".config/gos/gos.json"), "Gos' config file path")
- platforms := flag.String("platforms", "Mastodon:500,LinkedIn:1000,Noop:2000", "Platforms enabled plus their post size limits")
+ platforms := flag.String("platforms", "Mastodon:500,LinkedIn:1000,Noop:2000,Snonux:2000", "Platforms enabled plus their post size limits")
target := flag.Int("target", 2, "How many posts per week are the target?")
minQueued := flag.Int("minQueued", 42, "Minimum of queued items until printing a warn message!")
maxDaysQueued := flag.Int("maxDaysQueued", 365*2, "Maximum days worth of queued posts until target++ and pauseDays--")