Skip to content

Commit

Permalink
Merge pull request #20 from emoacht/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
emoacht authored Dec 3, 2021
2 parents edeb54b + 48cbf80 commit 4c709dd
Show file tree
Hide file tree
Showing 10 changed files with 419 additions and 306 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="Wifinian" Manufacturer="emoacht" Version="3.0.1"
<Product Id="*" Name="Wifinian" Manufacturer="emoacht" Version="3.1.0"
Language="1033" Codepage="1252" UpgradeCode="{A8357D71-600C-462A-AEEE-BF1B988DD2E4}">
<Package Id="*" InstallerVersion="500" Compressed="yes"
InstallScope="perMachine" InstallPrivileges="elevated"
Expand Down
4 changes: 2 additions & 2 deletions Source/ReactivePropertyTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// 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("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("3.1.0.0")]
[assembly: AssemblyFileVersion("3.1.0.0")]
4 changes: 2 additions & 2 deletions Source/ReactivePropertyTest/ReactivePropertyTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf">
<Version>1.1.31</Version>
<Version>1.1.39</Version>
</PackageReference>
<PackageReference Include="ReactiveProperty">
<Version>7.12.0</Version>
<Version>8.0.2</Version>
</PackageReference>
<PackageReference Include="System.Reactive.Core">
<Version>5.0.0</Version>
Expand Down
2 changes: 1 addition & 1 deletion Source/VisualStateTest/VisualStateTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf">
<Version>1.1.31</Version>
<Version>1.1.39</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
2 changes: 1 addition & 1 deletion Source/Wifinian/AppController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ private void OnMenuWindowShowRequested(object sender, Point e)
private void ShowMainWindow()
{
var window = (MainWindow)_current.MainWindow;
if (window is { CanBeShown: false } or { Visibility: Visibility.Visible, IsForeground: true })
if (window is null or { CanBeShown: false } or { Visibility: Visibility.Visible, IsForeground: true })
return;

window.Show();
Expand Down
Binary file modified Source/Wifinian/Library/ScreenFrame.dll
Binary file not shown.
275 changes: 194 additions & 81 deletions Source/Wifinian/Library/ScreenFrame.xml

Large diffs are not rendered by default.

Binary file modified Source/Wifinian/Library/StartupAgency.dll
Binary file not shown.
4 changes: 2 additions & 2 deletions Source/Wifinian/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("3.0.1.0")]
[assembly: AssemblyFileVersion("3.0.1.0")]
[assembly: AssemblyVersion("3.1.0.0")]
[assembly: AssemblyFileVersion("3.1.0.0")]
[assembly: Guid("056ef371-bf6b-42c3-82b7-a113cafa5718")]
[assembly: NeutralResourcesLanguage("en-US")]
Loading

0 comments on commit 4c709dd

Please sign in to comment.