From db2a08b96737c46667a50d7f350616f96fc35240 Mon Sep 17 00:00:00 2001 From: IsaacShelton Date: Tue, 22 Feb 2022 18:47:00 -0600 Subject: [PATCH] Slightly modified the message for when there is a new update available --- README.md | 2 +- src/DRVR/config.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4e9d8766..160543f7 100644 --- a/README.md +++ b/README.md @@ -580,6 +580,6 @@ func maybeGetAlphaChannel(color int, out a *int) void { -#### Thank you for sponsering Adept: ❤️ +#### Thank you for sponsoring Adept: ❤️ - Fernando Dantas diff --git a/src/DRVR/config.c b/src/DRVR/config.c index 3fcc797b..863bb69d 100644 --- a/src/DRVR/config.c +++ b/src/DRVR/config.c @@ -259,7 +259,8 @@ static successful_t config_read_adept_config_value(config_t *config, jsmnh_obj_c config->show_new_compiler_available ){ blueprintf("\nNEWS: A newer version of Adept is available!\n"); - printf(" (Visit https://github.com/AdeptLanguage/Adept for more information)\n\n"); + printf(" Visit https://github.com/AdeptLanguage/Adept for more information!\n"); + printf(" You can disable update checks in your 'adept.config'\n\n"); goto success; } else if(config->show_checking_for_updates_message){ blueprintf(" -> Already up to date!\n");