Merge branch 'jay' of https://github.com/Ryochan7/DS4Windows into jay-bezierCurveOutput

This commit is contained in:
mika-n 2019-07-29 11:31:30 +03:00
commit 229dfe5525
4 changed files with 14 additions and 10 deletions

View File

@ -652,6 +652,7 @@ namespace DS4Windows.Forms
DS4LightBar.shuttingdown = false;
wasrunning = false;
Program.rootHub.suspending = false;
Thread.Sleep(8000);
this.Invoke((System.Action)(() => BtnStartStop_Clicked()));
}
@ -663,13 +664,16 @@ namespace DS4Windows.Forms
{
DS4LightBar.shuttingdown = true;
Program.rootHub.suspending = true;
this.Invoke((System.Action)(() => BtnStartStop_Clicked()));
wasrunning = true;
changingService = true;
while (this.changingService)
{
Thread.SpinWait(500);
}
Program.rootHub.Stop(true);
Invoke((System.Action)(() => {
ServiceShutdownFinish();
btnStartStop.Enabled = false;
}));
changingService = false;
wasrunning = true;
}
break;

View File

@ -73,7 +73,7 @@ namespace DS4Windows.Forms
if (File.Exists(exepath + $"\\{InstFileName}"))
{
bnStep1.Text = Properties.Resources.OpeningInstaller;
monitorProc = Process.Start(exepath + $"\\{InstFileName}", "/quiet");
monitorProc = Process.Start(exepath + $"\\{InstFileName}");
bnStep1.Text = Properties.Resources.Installing;
}

View File

@ -33,7 +33,7 @@ using System.Runtime.InteropServices;
// 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.7.12")]
[assembly: AssemblyFileVersion("1.7.12")]
[assembly: AssemblyVersion("1.7.13")]
[assembly: AssemblyFileVersion("1.7.13")]
[assembly: NeutralResourcesLanguage("en")]

View File

@ -1 +1 @@
1.7.12
1.7.13