diff --git a/DS4Control/Control.cs b/DS4Control/Control.cs index ac970b6..4123a82 100644 --- a/DS4Control/Control.cs +++ b/DS4Control/Control.cs @@ -5,7 +5,6 @@ using System.Text; using DS4Library; using System.IO; using System.Reflection; -using System.Diagnostics; namespace DS4Control { public class Control @@ -210,7 +209,7 @@ namespace DS4Control { if (Global.getLaunchProgram(ind) != string.Empty) { - Process.Start(Global.getLaunchProgram(ind)); + System.Diagnostics.Process.Start(Global.getLaunchProgram(ind)); } } public void TouchPadOn(int ind, DS4Device device) @@ -224,7 +223,7 @@ namespace DS4Control device.Touchpad.TouchUnchanged += tPad.touchUnchanged; //LogDebug("Touchpad mode for " + device.MacAddress + " is now " + tmode.ToString()); //Log.LogToTray("Touchpad mode for " + device.MacAddress + " is now " + tmode.ToString()); - //Global.ControllerStatusChanged(this); + Global.ControllerStatusChanged(this); } public void TimeoutConnection(DS4Device d) diff --git a/DS4Tool/Properties/AssemblyInfo.cs b/DS4Tool/Properties/AssemblyInfo.cs index 3efdd04..d92d575 100644 --- a/DS4Tool/Properties/AssemblyInfo.cs +++ b/DS4Tool/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ 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.4.0.2")] -[assembly: AssemblyFileVersion("1.4.0.2")] +[assembly: AssemblyVersion("1.4.0.22")] +[assembly: AssemblyFileVersion("1.4.0.22")]