3 Commits

Author SHA1 Message Date
5b2688e091 version bump 2021-04-20 10:32:14 +01:00
9f626b8265 remove debug print 2021-04-20 10:31:50 +01:00
2b2ac66708 remove/ignore some things 2021-04-10 12:22:34 +01:00
3 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@@ -8,3 +8,5 @@
/lull.zip /lull.zip
/dist/ /dist/
/package/ /package/
/*.kra
/*.png

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "lull" name = "lull"
description = "a looping sound player for generating atmospheric soundscapes" description = "a looping sound player for generating atmospheric soundscapes"
version = "1.0.3" version = "1.0.4"
authors = ["Max Bradbury <max@tinybird.info>"] authors = ["Max Bradbury <max@tinybird.info>"]
repository = "https://tinybird.dev/max/lull" repository = "https://tinybird.dev/max/lull"
license = "MIT" license = "MIT"

View File

@@ -38,8 +38,6 @@ fn save_config(config: Config) {
let mut config_file = File::create(config_path) let mut config_file = File::create(config_path)
.expect("Couldn't create config file"); .expect("Couldn't create config file");
print!("{}", toml);
config_file.write(&toml.into_bytes()) config_file.write(&toml.into_bytes())
.expect("Couldn't write config file"); .expect("Couldn't write config file");
} }