Published v1.0.1.0.
Updating Harmony library to v0.5.0
1.1 --- a/Server/FormMain.cs Thu Aug 25 00:42:09 2016 +0200
1.2 +++ b/Server/FormMain.cs Thu Aug 25 13:12:54 2016 +0200
1.3 @@ -2984,7 +2984,7 @@
1.4 {
1.5 if (Program.HarmonyClient != null)
1.6 {
1.7 - Program.HarmonyClient.Close();
1.8 + await Program.HarmonyClient.CloseAsync();
1.9 }
1.10
1.11 //Reset Harmony client & config
1.12 @@ -2998,7 +2998,7 @@
1.13 {
1.14 var sessionToken = File.ReadAllText("SessionToken");
1.15 Trace.WriteLine("Harmony: Reusing token: {0}", sessionToken);
1.16 - Program.HarmonyClient.Open(sessionToken);
1.17 + Program.HarmonyClient.OpenAsync(sessionToken);
1.18 }
1.19 else
1.20 {
1.21 @@ -3009,7 +3009,7 @@
1.22 }
1.23
1.24 Trace.WriteLine("Harmony: Authenticating with Logitech servers...");
1.25 - await Program.HarmonyClient.Open(iTextBoxLogitechUserName.Text, iTextBoxLogitechPassword.Text);
1.26 + await Program.HarmonyClient.OpenAsync(iTextBoxLogitechUserName.Text, iTextBoxLogitechPassword.Text);
1.27 File.WriteAllText("SessionToken", Program.HarmonyClient.Token);
1.28 }
1.29
2.1 --- a/Server/SharpDisplayManager.csproj Thu Aug 25 00:42:09 2016 +0200
2.2 +++ b/Server/SharpDisplayManager.csproj Thu Aug 25 13:12:54 2016 +0200
2.3 @@ -34,7 +34,7 @@
2.4 <WebPage>index.htm</WebPage>
2.5 <OpenBrowserOnPublish>false</OpenBrowserOnPublish>
2.6 <ApplicationRevision>0</ApplicationRevision>
2.7 - <ApplicationVersion>1.0.0.0</ApplicationVersion>
2.8 + <ApplicationVersion>1.0.1.0</ApplicationVersion>
2.9 <UseApplicationTrust>false</UseApplicationTrust>
2.10 <CreateDesktopShortcut>true</CreateDesktopShortcut>
2.11 <PublishWizardCompleted>true</PublishWizardCompleted>
2.12 @@ -112,7 +112,7 @@
2.13 <Private>True</Private>
2.14 </Reference>
2.15 <Reference Include="HarmonyHub, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
2.16 - <HintPath>..\packages\SharpLibHarmony.0.4.0\lib\net451\HarmonyHub.dll</HintPath>
2.17 + <HintPath>..\packages\SharpLibHarmony.0.5.0\lib\net451\HarmonyHub.dll</HintPath>
2.18 <Private>True</Private>
2.19 </Reference>
2.20 <Reference Include="LibCecSharp, Version=2.2.0.0, Culture=neutral, processorArchitecture=x86">
3.1 --- a/Server/packages.config Thu Aug 25 00:42:09 2016 +0200
3.2 +++ b/Server/packages.config Thu Aug 25 13:12:54 2016 +0200
3.3 @@ -4,7 +4,7 @@
3.4 <package id="Loamen.agsXMPP" version="1.3.1" targetFramework="net46" />
3.5 <package id="NAudio" version="1.7.3" targetFramework="net45" />
3.6 <package id="SharpLibDisplay" version="0.2.5" targetFramework="net46" />
3.7 - <package id="SharpLibHarmony" version="0.4.0" targetFramework="net46" />
3.8 + <package id="SharpLibHarmony" version="0.5.0" targetFramework="net46" />
3.9 <package id="SharpLibHid" version="1.4.2" targetFramework="net46" />
3.10 <package id="SharpLibNotification" version="0.0.1" targetFramework="net46" />
3.11 <package id="SharpLibWin32" version="0.0.9" targetFramework="net46" />