Skip to content

Commit

Permalink
Prerelease 4
Browse files Browse the repository at this point in the history
  • Loading branch information
bbepis committed Sep 18, 2015
1 parent 0338a69 commit dcc35f2
Show file tree
Hide file tree
Showing 15 changed files with 160 additions and 527 deletions.
18 changes: 6 additions & 12 deletions AA2Install.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Archives\7z.cs" />
<Compile Include="Archives\PP.cs" />
<Compile Include="Configuration.cs" />
<Compile Include="Console.cs" />
<Compile Include="formAbout.cs">
Expand Down Expand Up @@ -98,31 +97,26 @@
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<None Include="tools\x64\7za.dll">
<None Include="tools\7z\x64\7za.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="tools\x64\7za.exe">
<None Include="tools\7z\x64\7za.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="tools\x64\7zxa.dll">
<None Include="tools\7z\x64\7zxa.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="tools\x86_64\7za.exe">
<None Include="tools\7z\x86\7za.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="tools\x86_64\7za.dll">
<None Include="tools\7z\x86\7za.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="tools\x86_64\7zxa.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="tools\x86_64\AA2Decrypt.exe">
<None Include="tools\7z\x86\7zxa.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
Expand Down
67 changes: 0 additions & 67 deletions Archives/PP.cs

This file was deleted.

9 changes: 8 additions & 1 deletion Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
Pre3
Pre4
+ Injection now supports backups
+ Properly shows progress when injecting
+ Fixed crash when previewing image when installing
+ Injection now (partially) runs on another thread
+ Injection buttons now disable normally

Pre3
+ Imported code from enimaroah/SB3Utility, tweaked to get it to work standalone
+ Memory leaks found in image previews patched
+ .pp direct injection (beta)
Expand Down
24 changes: 2 additions & 22 deletions Paths.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,15 @@ public static string _7Za
{
if (Environment.Is64BitOperatingSystem)
{
return Environment.CurrentDirectory + @"\tools\x64\7za.exe";
return Environment.CurrentDirectory + @"\tools\7z\x64\7za.exe";
}
else
{
return Environment.CurrentDirectory + @"\tools\x86_64\7za.exe";
return Environment.CurrentDirectory + @"\tools\7z\x86\7za.exe";
}
}
}
/// <summary>
/// AA2Decrypt location
/// </summary>
public static string AA2Decrypt
{
get
{
return Environment.CurrentDirectory + @"\tools\x86_64\AA2Decrypt.exe";
}
}
/// <summary>
/// AA2Play data install location
/// </summary>
public static string AA2Play
Expand Down Expand Up @@ -104,16 +94,6 @@ public static string MODS
}
}
/// <summary>
/// PP non-working directory
/// </summary>
public static string PP
{
get
{
return Environment.CurrentDirectory + @"\PP";
}
}
/// <summary>
/// PP working directory
/// </summary>
public static string WORKING
Expand Down
2 changes: 1 addition & 1 deletion SB3UtilityPP/SB3UtilityPP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
Expand Down
27 changes: 7 additions & 20 deletions formMain.Designer.cs

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

Loading

0 comments on commit dcc35f2

Please sign in to comment.