Skip to content

Commit

Permalink
Fixed xbox 360 and Wii U trainers
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Fliss committed Oct 18, 2016
1 parent 9d45b46 commit 4682690
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 22 deletions.
6 changes: 3 additions & 3 deletions Trainer Manager/Trainer Installer/Trainer Installer.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -407,15 +407,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Trainer Manager"
"ProductCode" = "8:{BAC090F8-0D16-420E-8BF8-4827E10D08E2}"
"PackageCode" = "8:{8523D5EA-EB73-4E1D-B954-1267CC0FA02D}"
"ProductCode" = "8:{4F3F4365-87A2-483F-B7DA-E5EB1102B71C}"
"PackageCode" = "8:{9E42147E-F953-45C2-B35D-00709D92A8BE}"
"UpgradeCode" = "8:{57113CAC-5039-42CD-9D65-69B1DE824C04}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:FALSE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:TRUE"
"ProductVersion" = "8:1.1.3"
"ProductVersion" = "8:1.1.4"
"Manufacturer" = "8:NewAgeSoldier"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:http://newagesoldier.com"
Expand Down
30 changes: 16 additions & 14 deletions Trainer Manager/Trainer Manager/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions Trainer Manager/Trainer Manager/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -748,5 +748,17 @@ private void backgroundWorker1_RunWorkerCompleted(object sender, RunWorkerComple
listView4.Cursor = Cursors.Hand;
label2.Visible = false;
}

private void listView3_MouseClick(object sender, MouseEventArgs e)
{
if (listView3.SelectedItems.Count > 0)
getTrainer(listView3.SelectedItems[0].Text);
}

private void listView4_MouseClick(object sender, MouseEventArgs e)
{
if (listView4.SelectedItems.Count > 0)
getTrainer(listView4.SelectedItems[0].Text);
}
}
}
6 changes: 3 additions & 3 deletions Trainer Manager/Trainer Manager/Form1.resx
Original file line number Diff line number Diff line change
Expand Up @@ -1823,12 +1823,12 @@
<metadata name="imageList1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>768, 17</value>
</metadata>
<metadata name="imageList2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>878, 17</value>
</metadata>
<metadata name="imageList3.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>988, 17</value>
</metadata>
<metadata name="imageList2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>878, 17</value>
</metadata>
<metadata name="imageList4.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>1098, 17</value>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions Trainer Manager/Trainer Manager/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.1.3.0")]
[assembly: AssemblyFileVersion("1.1.3.0")]
[assembly: AssemblyVersion("1.1.4.0")]
[assembly: AssemblyFileVersion("1.1.4.0")]
1 change: 1 addition & 0 deletions Trainer Manager/Trainer Manager/Trainer Manager.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
<EmbeddedResource Include="update.resx">
<DependentUpon>update.cs</DependentUpon>
</EmbeddedResource>
<None Include="My Private Key.pfx" />
<None Include="Properties\app.manifest" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
Expand Down

0 comments on commit 4682690

Please sign in to comment.