From cf641835e4e1d2d48b5fc119c9d3c44c43f43369 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 26 Jul 2025 11:49:57 -0400 Subject: [PATCH] Default to on for version check. --- ttyverse.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ttyverse.pl b/ttyverse.pl index 53ee29d..935f4c9 100755 --- a/ttyverse.pl +++ b/ttyverse.pl @@ -95,6 +95,7 @@ BEGIN { # verbose=0 # Show debug information # silent=0 # Reduce output messages # readline=1 # Use readline for input (if available) +# vcheck=1 # Check for updates on startup # === POST SETTINGS === # post_visibility=public # Default post visibility (public, unlisted, private, direct) @@ -831,6 +832,7 @@ binmode(W, ":utf8") unless ($seven); $anonymous ||= 0; $ssl ||= 1; +$vcheck ||= 1; # Enable version checking by default die("** -anonymous is not supported with fediverse authentication\n") if ($anonymous && !length($apibase)); undef $user if ($anonymous);