Added changelog. Clean output folder before Release build. Preparing for v0.4 release.

This commit is contained in:
Prof. 9 2014-05-25 01:49:21 +02:00
parent 10658d6157
commit ab83def682
4 changed files with 21 additions and 2 deletions

View File

@ -1,6 +1,5 @@
WfcReplay
=========
WfcReplay is a command-line Windows utility written in C# that automatically generates an Action Replay DS code for a Nintendo DS game that will make it use HTTP instead of HTTPS for connections to Nintendo Wi-Fi Connection. This is done by pre-finding all URLs in the ROM and patching them in-memory. This can be used to connect to any custom Nintendo Wi-Fi Connection server.
To run this program, the .NET Framework 4.0 or higher must be installed on your computer.

View File

@ -14,6 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BLZ", "BLZ", "{D77E390D-426
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D1489082-8DFE-4840-AE45-DC2AF8DFA568}"
ProjectSection(SolutionItems) = preProject
changelog.md = changelog.md
license.txt = license.txt
readme.md = readme.md
EndProjectSection

View File

@ -48,9 +48,11 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>copy $(SolutionDir)BLZ\* $(TargetDir)*
<PreBuildEvent>if "$(ConfigurationName)" == "Release" del /Q $(TargetDir)*
copy $(SolutionDir)BLZ\* $(TargetDir)*
rename $(TargetDir)license.txt blz_license.txt
copy $(SolutionDir)readme.md $(TargetDir)readme.txt
copy $(SolutionDir)changelog.md $(TargetDir)changelog.txt
copy $(SolutionDir)license.txt $(TargetDir)license.txt</PreBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

17
changelog.md Normal file
View File

@ -0,0 +1,17 @@
Changelog
=========
WfcReplay v0.4 - 25 May 2014
----------------------------
This release contains various bugfixes for a number of games, such as Zelda: Phantom Hourglass and Planet Puzzle League. It also corrects some other issues. Antipiracy-protected games remain unsupported.
* Fixed code output issue for games with invalid characters in their title IDs, fixes various games.
* Fixed code cave address alignment issue, fixes various games.
* Fixed "Could not find ARM9 hook" error when the temporary folder path contained spaces.
* Fixed crash when no HTTPS URLs were found.
WfcReplay v0.3 - 23 May 2014
----------------------------
Initial release.