gpt4all: update and disable version check
This commit is contained in:
parent
3c08138ccc
commit
d3d7a5a45a
17
home-manager/progs/gpt4all/disable-version-check.patch
Normal file
17
home-manager/progs/gpt4all/disable-version-check.patch
Normal 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 {
|
||||
@ -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
|
||||
];
|
||||
|
||||
}))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user