noisetorch: 0.7.2-beta -> 0.8.0-beta

This commit is contained in:
Reed 2020-11-12 13:18:00 -05:00
parent 0a6703019e
commit c53d879309
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.7.2-beta";
version = "0.8.0-beta";
src = fetchFromGitHub {
owner = "lawl";
repo = "NoiseTorch";
rev = version;
sha256 = "06xlqjma8h7lcnqgc9226blps6m9dp487hk71lslfxj0jkay548k";
sha256 = "0cb9vbszxrgq83q5p5y5vgs2fvywlwmjglcamhibscag2zdd8kdp";
};
patches = [ ./version.patch ./config.patch ./embedlibrnnoise.patch ];
patches = [ ./version.patch ./embedlibrnnoise.patch ];
vendorSha256 = null;