Skip to content

Commit

Permalink
Added support for NCT6687D
Browse files Browse the repository at this point in the history
  • Loading branch information
lich426 committed Aug 1, 2020
1 parent 62360a1 commit ab5c6b1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 16 deletions.
12 changes: 0 additions & 12 deletions .github/FUNDING.yml

This file was deleted.

13 changes: 10 additions & 3 deletions MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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()
{
Expand Down Expand Up @@ -639,7 +648,5 @@ private void onOSDButtonClick(object sender, EventArgs e)
};
form.ShowDialog();
}


}
}
2 changes: 1 addition & 1 deletion Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@
// 기본값으로 할 수 있습니다.
[assembly: AssemblyVersion("1.2.1")]
[assembly: AssemblyFileVersion("1.2.1")]
[assembly: AssemblyInformationalVersion("1.2.1b")]
[assembly: AssemblyInformationalVersion("1.2.1")]
Binary file modified dll/LibreHardwareMonitorLib.dll
Binary file not shown.

0 comments on commit ab5c6b1

Please sign in to comment.