Skip to content

Commit

Permalink
Added publisher info
Browse files Browse the repository at this point in the history
  • Loading branch information
RobethX committed Jan 25, 2018
1 parent 72be909 commit 4cbba4b
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Patcher/Patcher/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ public void sceneMenu() //show all main menu elements
{
buttonPatch.IsEnabled = true; //disable patch button
menuClose.IsEnabled = true;
menuDebug.IsEnabled = true;

buttonPatch.Visibility = Visibility.Visible; //hide the patch button
comboBoxGame.Visibility = Visibility.Visible;
Expand Down Expand Up @@ -129,7 +130,6 @@ public void button_Click(object sender, RoutedEventArgs e) // patch borderlands2
mods.Add("Patch.txt");
}


switch (gameID) //depending on game, set variables accordingly
{
case 3:
Expand Down Expand Up @@ -199,7 +199,7 @@ private void menuLFG_Click(object sender, RoutedEventArgs e)
private void patcherWorker_ProgressChanged(object sender, System.ComponentModel.ProgressChangedEventArgs e)
{
progressBar.Value = e.ProgressPercentage; //loading bar
taskbarInfo.ProgressValue = e.ProgressPercentage; //taskbar
taskbarInfo.ProgressValue = (double)e.ProgressPercentage / 100; //taskbar

switch(e.ProgressPercentage)
{
Expand Down
19 changes: 11 additions & 8 deletions Patcher/Patcher/Patcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,23 @@
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<IsWebBootstrapper>true</IsWebBootstrapper>
<PublishUrl>C:\Users\rmchi\Documents\bl2modding\BL2-MP-Mods\Patcher\publish\</PublishUrl>
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>G:\Games\Borderlands 2\Modding\BL2-MP-Mods\Patcher\publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Web</InstallFrom>
<UpdateEnabled>true</UpdateEnabled>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<InstallUrl>https://github.com/RobethX/BL2-MP-Mods/</InstallUrl>
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
<WebPage>publish.htm</WebPage>
<MapFileExtensions>false</MapFileExtensions>
<SupportUrl>http://steamcommunity.com/groups/bl2unlimitedcoop</SupportUrl>
<ErrorReportUrl>http://steamcommunity.com/groups/bl2unlimitedcoop</ErrorReportUrl>
<TargetCulture>en-US</TargetCulture>
<ProductName>Robeth%27s COOP Patcher</ProductName>
<PublisherName>Rob Chiocchio</PublisherName>
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
<ApplicationRevision>2</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
Expand Down
10 changes: 5 additions & 5 deletions Patcher/Patcher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Patcher")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("Robeth's Borderlands 2 Robeth's Unlimited COOP Patcher")]
[assembly: AssemblyDescription("A tool to patch Borderlands 2 to support 5+ players in game")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Patcher")]
[assembly: AssemblyCompany("Rob Chiocchio")]
[assembly: AssemblyProduct("COOP Patcher")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down Expand Up @@ -51,5 +51,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.0.0.0")]
[assembly: AssemblyVersion("0.8.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]
2 changes: 1 addition & 1 deletion Patcher/Patcher/app.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--<requestedExecutionLevel level="asInvoker" uiAccess="false" />-->
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<!--<requestedExecutionLevel level="highestAvailable" uiAccess="false" />-->
<!--<requestedExecutionLevel level="asInvoker" uiAccess="false" />-->
</requestedPrivileges>
Expand Down

0 comments on commit 4cbba4b

Please sign in to comment.