Version 1.4.267

Fixes for adding programs to auto profiles
This commit is contained in:
jays2kings 2015-07-30 23:51:16 -04:00
parent 86079b029e
commit f5c9dbff11
2 changed files with 6 additions and 6 deletions

View File

@ -366,8 +366,8 @@ namespace DS4Windows
private void addDirectoryToolStripMenuItem_Click(object sender, EventArgs e) private void addDirectoryToolStripMenuItem_Click(object sender, EventArgs e)
{ {
/*VistaFolderBrowserDialog fbd = new VistaFolderBrowserDialog(); FolderBrowserDialog fbd = new FolderBrowserDialog();
if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK) if (fbd.ShowDialog() == DialogResult.OK)
{ {
try try
{ {
@ -381,13 +381,13 @@ namespace DS4Windows
Timer appstimer = new Timer(); Timer appstimer = new Timer();
appstimer.Start(); appstimer.Start();
appstimer.Tick += appstimer_Tick; appstimer.Tick += appstimer_Tick;
}*/ }
} }
private void browseForOtherProgramsToolStripMenuItem_Click(object sender, EventArgs e) private void browseForOtherProgramsToolStripMenuItem_Click(object sender, EventArgs e)
{ {
openProgram.Filter = Properties.Resources.Programs+"|*.exe|" + Properties.Resources.Shortcuts + "|*.lnk"; openProgram.Filter = Properties.Resources.Programs+"|*.exe|" + Properties.Resources.Shortcuts + "|*.lnk";
if (openProgram.ShowDialog() == System.Windows.Forms.DialogResult.OK) if (openProgram.ShowDialog() == DialogResult.OK)
{ {
string file = openProgram.FileName; string file = openProgram.FileName;
if (file.EndsWith(".lnk")) if (file.EndsWith(".lnk"))

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.266")] [assembly: AssemblyVersion("1.4.267")]
[assembly: AssemblyFileVersion("1.4.266")] [assembly: AssemblyFileVersion("1.4.267")]