mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2025-01-11 15:59:08 +01:00
Merge branch 'jay' of https://github.com/Ryochan7/DS4Windows into jay-bezierCurveOutput
This commit is contained in:
commit
229dfe5525
@ -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;
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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")]
|
||||
|
||||
|
@ -1 +1 @@
|
||||
1.7.12
|
||||
1.7.13
|
||||
|
Loading…
x
Reference in New Issue
Block a user