Merge pull request #97530 from reedrw/noisetorch-072

This commit is contained in:
Sandro 2020-11-24 02:16:57 +01:00 committed by GitHub
commit 6f29643d35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 16 deletions

View File

@ -1,13 +0,0 @@
diff --git a/config.go b/config.go
index de16249..fb91ec0 100644
--- a/config.go
+++ b/config.go
@@ -20,7 +20,7 @@ const configFile = "config.toml"
func initializeConfigIfNot() {
log.Println("Checking if config needs to be initialized")
- conf := config{Threshold: 95, DisplayMonitorSources: false, EnableUpdates: true}
+ conf := config{Threshold: 95, DisplayMonitorSources: false, EnableUpdates: false}
configdir := configDir()
ok, err := exists(configdir)
if err != nil {

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "NoiseTorch";
version = "0.5.2-beta";
version = "0.8.2";
src = fetchFromGitHub {
owner = "lawl";
repo = "NoiseTorch";
rev = version;
sha256 = "1q0gfpqczlpybxcjjkiybcy6yc0gnrq8x27r0mpg4pvgwy7mps47";
sha256 = "14i04rmraxbddcvk0k9c6ak9invln7002g5jms54kcjzv9p39hbf";
};
patches = [ ./version.patch ./config.patch ./embedlibrnnoise.patch ];
patches = [ ./version.patch ./embedlibrnnoise.patch ];
vendorSha256 = null;