gpt4all: update and disable version check

This commit is contained in:
Simon Gardling 2024-10-11 19:58:48 -04:00
parent 3c08138ccc
commit d3d7a5a45a
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
3 changed files with 22 additions and 4 deletions

View File

@ -0,0 +1,17 @@
diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml
index 1e685385..31cf7efd 100644
--- a/main.qml
+++ b/main.qml
@@ -95,10 +95,12 @@ Window {
}
// check for new version
+ /*
if (Download.hasNewerRelease && !firstStartDialog.opened) {
newVersionDialog.open();
return;
}
+ */
}
PopupDialog {

View File

@ -30,17 +30,18 @@ let
gpt4all_package = (
optimizeWithFlags
(pkgs.gpt4all.overrideAttrs (old: {
version = "3.4.0";
version = "3.4.1";
src = pkgs.fetchFromGitHub {
fetchSubmodules = true;
owner = "nomic-ai";
repo = "gpt4all";
rev = "v3.4.0";
sha256 = "yXp9MyezXQJWUyEvyXc6++/Ow/NNqs1cjLIpEuKDrn0=";
rev = "v3.4.1";
sha256 = "L29ZQlDDJlh538cgAGuo/ijtBQvZ0vloH4vdJ1oIe5I=";
};
patches = old.patches ++ [
./gpt4all-HEAD-disable-settings-err.patch
./disable-settings-err.patch
./disable-version-check.patch
];
}))