Skip to content

Commit bc7851a

Browse files
committed
Release v2.9: enable startup update checks by default
1 parent 6bc46bd commit bc7851a

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v2.9
4+
5+
- Updater: default `_sofbuddy_update_check_startup` is now enabled (`1`) so new installs check for updates on startup automatically.
6+
37
## v2.8
48

59
- Build system: removed `http_maps` from `tools/generate_features_txt.py` default-disabled set, so `make`/CI auto-generation no longer silently disables it in `features/FEATURES.txt`.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8
1+
2.9

hdr/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
Increment version using: ./increment_version.sh
88
*/
99

10-
#define SOFBUDDY_VERSION "2.8"
10+
#define SOFBUDDY_VERSION "2.9"

src/core/update_command.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ void sofbuddy_update_init(void) {
936936
orig_Cvar_Get(kCvarUpdateDownloadPath, "", 0, nullptr);
937937
orig_Cvar_Get(kCvarUpdateDownloadedAsset, "", 0, nullptr);
938938
orig_Cvar_Get(kCvarUpdateCheckedUtc, "", 0, nullptr);
939-
orig_Cvar_Get(kCvarUpdateCheckStartup, "0", CVAR_SOFBUDDY_ARCHIVE, nullptr);
939+
orig_Cvar_Get(kCvarUpdateCheckStartup, "1", CVAR_SOFBUDDY_ARCHIVE, nullptr);
940940
cvar_t* api_url_cvar = orig_Cvar_Get(kCvarUpdateApiUrl, kUpdateApiUrl, CVAR_SOFBUDDY_ARCHIVE, nullptr);
941941
cvar_t* releases_url_cvar = orig_Cvar_Get(kCvarUpdateReleasesUrl, kUpdateReleasesUrl, CVAR_SOFBUDDY_ARCHIVE, nullptr);
942942

0 commit comments

Comments
 (0)