diff --git a/README.md b/README.md index 9a7039e..163ade8 100644 --- a/README.md +++ b/README.md @@ -44,4 +44,14 @@ The Windows software is written in C# using .NET Framework 4.7.2 and Visual Stud Refer to the bundled plugins for examples. -Some icons courtesy of https://feathericons.com/ \ No newline at end of file +Some icons courtesy of https://feathericons.com/ + + +## Releases +Builds are automatically run using AppVeyor. Tagged master releases are available on the [GitHub releases page](https://github.com/MvRens/MassiveKnob/releases). You can find an installer for each version under the "Assets" section for a release. + +Master build (release versions) +[![Build status](https://ci.appveyor.com/api/projects/status/ycn9ydiitn25em99/branch/master?svg=true)](https://ci.appveyor.com/project/MvRens/massiveknob/branch/master) + +Latest build +[![Build status](https://ci.appveyor.com/api/projects/status/ycn9ydiitn25em99?svg=true)](https://ci.appveyor.com/project/MvRens/massiveknob) \ No newline at end of file diff --git a/Windows/MassiveKnob.Plugin.CoreAudio/OSD/OSDManager.cs b/Windows/MassiveKnob.Plugin.CoreAudio/OSD/OSDManager.cs index ad134ce..080e509 100644 --- a/Windows/MassiveKnob.Plugin.CoreAudio/OSD/OSDManager.cs +++ b/Windows/MassiveKnob.Plugin.CoreAudio/OSD/OSDManager.cs @@ -39,6 +39,10 @@ namespace MassiveKnob.Plugin.CoreAudio.OSD private static void WindowOnClosed(object sender, EventArgs e) { + // ReSharper disable once PossibleUnintendedReferenceComparison - it's intended. + if (sender != window) + return; + hideTimer?.Dispose(); hideTimer = null;