diff --git a/CHANGELOG.md b/CHANGELOG.md index bfd1c10..0194d9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.1 + +Hide the console when starting the application. + +Missed this in an oversight from using VSCode to test. + # 0.1.0 Initial version. diff --git a/src/main.rs b/src/main.rs index c9bc943..900f743 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,3 +1,6 @@ +// This makes the console not appear when running. +#![windows_subsystem = "windows"] + mod singleton; #[derive(PartialEq, Clone)]