From c9dda3df0d86c78c582beda14174fab93c99b62b Mon Sep 17 00:00:00 2001 From: 3Simplex <10260755+3Simplex@users.noreply.github.com> Date: Fri, 23 Aug 2024 12:36:54 -0400 Subject: [PATCH] Update button for offline installer now points to releases. (#2888) Signed-off-by: 3Simplex <10260755+3Simplex@users.noreply.github.com> --- gpt4all-chat/CHANGELOG.md | 3 +++ gpt4all-chat/llm.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gpt4all-chat/CHANGELOG.md b/gpt4all-chat/CHANGELOG.md index 808648d5..7669e1c4 100644 --- a/gpt4all-chat/CHANGELOG.md +++ b/gpt4all-chat/CHANGELOG.md @@ -17,6 +17,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). - Corrections to the Romanian translation (by [@SINAPSA-IC](https://github.com/SINAPSA-IC) in [#2890](https://github.com/nomic-ai/gpt4all/pull/2890)) - Fix singular/plural forms of LocalDocs "x Sources" (by [@cosmic-snow](https://github.com/cosmic-snow) in [#2885](https://github.com/nomic-ai/gpt4all/pull/2885)) +### Changed +- The offline update button now directs users to the offline installer releases page. (by [@3Simplex](https://github.com/3Simplex) in [#2888](https://github.com/nomic-ai/gpt4all/pull/2888)) + ## [3.2.1] - 2024-08-13 ### Fixed diff --git a/gpt4all-chat/llm.cpp b/gpt4all-chat/llm.cpp index 13820030..c8a3c3fe 100644 --- a/gpt4all-chat/llm.cpp +++ b/gpt4all-chat/llm.cpp @@ -51,7 +51,7 @@ bool LLM::checkForUpdates() const { #ifdef GPT4ALL_OFFLINE_INSTALLER # pragma message(__FILE__ ": WARNING: offline installer build will not check for updates!") - return QDesktopServices::openUrl(QUrl("https://gpt4all.io/")); + return QDesktopServices::openUrl(QUrl("https://github.com/nomic-ai/gpt4all/releases")); #else Network::globalInstance()->trackEvent("check_for_updates");