diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index beb9713..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: lich426 # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/MainForm.cs b/MainForm.cs index 0c23316..e2860a3 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -6,6 +6,7 @@ using System.Drawing; using System.Linq; using System.Reflection; +using System.Runtime.InteropServices; using System.Text; using System.Threading; using System.Threading.Tasks; @@ -148,7 +149,15 @@ protected override void OnLoad(EventArgs e) { mFanIconTimer.Start(); } - } + + if (OptionManager.getInstance().IsMinimized == true) + { + this.BeginInvoke(new Action(delegate () + { + this.Close(); + })); + } + } private void localizeComponent() { @@ -639,7 +648,5 @@ private void onOSDButtonClick(object sender, EventArgs e) }; form.ShowDialog(); } - - } } diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index ac5db58..4bcb34a 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -33,4 +33,4 @@ // 기본값으로 할 수 있습니다. [assembly: AssemblyVersion("1.2.1")] [assembly: AssemblyFileVersion("1.2.1")] -[assembly: AssemblyInformationalVersion("1.2.1b")] +[assembly: AssemblyInformationalVersion("1.2.1")] diff --git a/dll/LibreHardwareMonitorLib.dll b/dll/LibreHardwareMonitorLib.dll index 5484ecf..6fa9ccc 100644 Binary files a/dll/LibreHardwareMonitorLib.dll and b/dll/LibreHardwareMonitorLib.dll differ