Skip to content

Commit

Permalink
Merge pull request #631 from emoacht/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
emoacht authored Oct 14, 2024
2 parents adcf873 + 76dcc15 commit 0d68cae
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Source/Installer/Product.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="Monitorian" Manufacturer="emoacht" Version="4.7.2"
<Product Id="*" Name="Monitorian" Manufacturer="emoacht" Version="4.8.0"
Language="1033" Codepage="1252" UpgradeCode="{81A4D148-75D3-462E-938D-8C208FB48E3C}">
<Package Id="*" InstallerVersion="500" Compressed="yes"
InstallScope="perMachine" InstallPrivileges="elevated"
Expand Down
2 changes: 1 addition & 1 deletion Source/Monitorian.Core/Monitorian.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@
<Version>10.0.26100.1</Version>
</PackageReference>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf">
<Version>1.1.122</Version>
<Version>1.1.135</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
4 changes: 2 additions & 2 deletions Source/Monitorian.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.7.2.0")]
[assembly: AssemblyFileVersion("4.7.2.0")]
[assembly: AssemblyVersion("4.8.0.0")]
[assembly: AssemblyFileVersion("4.8.0.0")]
[assembly: NeutralResourcesLanguage("en-US")]

// For unit test
Expand Down
14 changes: 14 additions & 0 deletions Source/Monitorian.Core/Views/Controls/Sliders/EnhancedSlider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,20 @@ protected override void OnMouseWheel(MouseWheelEventArgs e)

#endregion

#region Key

protected override void OnKeyUp(KeyEventArgs e)
{
base.OnKeyUp(e);

if (e.Key is (Key.Left or Key.Right))
{
EnsureUpdateSource();
}
}

#endregion

#region Deferral

public bool DefersUpdateSource
Expand Down
2 changes: 1 addition & 1 deletion Source/Monitorian/Monitorian.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf">
<Version>1.1.122</Version>
<Version>1.1.135</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
4 changes: 2 additions & 2 deletions Source/Monitorian/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("4.7.2.0")]
[assembly: AssemblyFileVersion("4.7.2.0")]
[assembly: AssemblyVersion("4.8.0.0")]
[assembly: AssemblyFileVersion("4.8.0.0")]
[assembly: Guid("a4cc5362-9b08-465b-ad64-5cfabc72a4c7")]
[assembly: NeutralResourcesLanguage("en-US")]

0 comments on commit 0d68cae

Please sign in to comment.