From 1892bf6bdc8963ad106ae8bb6e58cc9f72c43a97 Mon Sep 17 00:00:00 2001 From: DvvCz <86097860+DvvCz@users.noreply.github.com> Date: Mon, 4 Sep 2023 19:23:58 -0700 Subject: [PATCH] Hide console --- CHANGELOG.md | 6 ++++++ src/main.rs | 3 +++ 2 files changed, 9 insertions(+) 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)]