Skip to content
This repository has been archived by the owner on Oct 24, 2021. It is now read-only.

Commit

Permalink
Version 1.4.267
Browse files Browse the repository at this point in the history
Fixes for adding programs to auto profiles
  • Loading branch information
Jays2Kings committed Jul 31, 2015
1 parent 86079b0 commit f5c9dbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions DS4Windows/DS4Windows/WinProgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,8 @@ private void addSteamGamesToolStripMenuItem_Click(object sender, EventArgs e)

private void addDirectoryToolStripMenuItem_Click(object sender, EventArgs e)
{
/*VistaFolderBrowserDialog fbd = new VistaFolderBrowserDialog();
if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
FolderBrowserDialog fbd = new FolderBrowserDialog();
if (fbd.ShowDialog() == DialogResult.OK)
{
try
{
Expand All @@ -381,13 +381,13 @@ private void addDirectoryToolStripMenuItem_Click(object sender, EventArgs e)
Timer appstimer = new Timer();
appstimer.Start();
appstimer.Tick += appstimer_Tick;
}*/
}
}

private void browseForOtherProgramsToolStripMenuItem_Click(object sender, EventArgs e)
{
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;
if (file.EndsWith(".lnk"))
Expand Down
4 changes: 2 additions & 2 deletions DS4Windows/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 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.266")]
[assembly: AssemblyFileVersion("1.4.266")]
[assembly: AssemblyVersion("1.4.267")]
[assembly: AssemblyFileVersion("1.4.267")]

0 comments on commit f5c9dbf

Please sign in to comment.