├── .gitignore ├── DS ROM Patcher ├── Analysis │ ├── FilePatchAnalysisResult.vb │ ├── ModAnalysisException.vb │ ├── ModAnalysisResult.vb │ └── ModpackAnalysisResult.vb ├── App.config ├── DS-ROM-Patcher.nuspec ├── DS-ROM-Patcher.vbproj ├── DSFormat.vb ├── FilePatcher.vb ├── FilePatcherJson.vb ├── Forms │ ├── CreateModWindow.Designer.vb │ ├── CreateModWindow.resx │ ├── CreateModWindow.vb │ ├── ErrorWindow.Designer.vb │ ├── ErrorWindow.resx │ ├── ErrorWindow.vb │ ├── Form2.Designer.vb │ ├── Form2.resx │ ├── Form2.vb │ ├── ModpackMetadataWindow.Designer.vb │ ├── ModpackMetadataWindow.resx │ ├── ModpackMetadataWindow.vb │ ├── ThreeDSFormatSelector.Designer.vb │ ├── ThreeDSFormatSelector.resx │ └── ThreeDSFormatSelector.vb ├── Language.Designer.vb ├── Language.resx ├── ModBuilder.vb ├── ModFile.vb ├── ModJson.vb ├── ModpackInfo.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ ├── Settings.settings │ └── app.manifest ├── NDSand3DSCore.vb ├── PatcherCore.vb ├── Program.vb ├── Resources │ └── xdelta3.exe ├── Utilities │ ├── ProcessHelper.vb │ └── xdelta.vb └── packages.config ├── DS-ROM-Patcher.sln ├── LICENSE.MD └── README.MD /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/.gitignore -------------------------------------------------------------------------------- /DS ROM Patcher/Analysis/FilePatchAnalysisResult.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Analysis/FilePatchAnalysisResult.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Analysis/ModAnalysisException.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Analysis/ModAnalysisException.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Analysis/ModAnalysisResult.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Analysis/ModAnalysisResult.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Analysis/ModpackAnalysisResult.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Analysis/ModpackAnalysisResult.vb -------------------------------------------------------------------------------- /DS ROM Patcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/App.config -------------------------------------------------------------------------------- /DS ROM Patcher/DS-ROM-Patcher.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/DS-ROM-Patcher.nuspec -------------------------------------------------------------------------------- /DS ROM Patcher/DS-ROM-Patcher.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/DS-ROM-Patcher.vbproj -------------------------------------------------------------------------------- /DS ROM Patcher/DSFormat.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/DSFormat.vb -------------------------------------------------------------------------------- /DS ROM Patcher/FilePatcher.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/FilePatcher.vb -------------------------------------------------------------------------------- /DS ROM Patcher/FilePatcherJson.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/FilePatcherJson.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/CreateModWindow.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/CreateModWindow.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/CreateModWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/CreateModWindow.resx -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/CreateModWindow.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/CreateModWindow.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ErrorWindow.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ErrorWindow.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ErrorWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ErrorWindow.resx -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ErrorWindow.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ErrorWindow.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/Form2.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/Form2.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/Form2.resx -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/Form2.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/Form2.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ModpackMetadataWindow.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ModpackMetadataWindow.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ModpackMetadataWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ModpackMetadataWindow.resx -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ModpackMetadataWindow.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ModpackMetadataWindow.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ThreeDSFormatSelector.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ThreeDSFormatSelector.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ThreeDSFormatSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ThreeDSFormatSelector.resx -------------------------------------------------------------------------------- /DS ROM Patcher/Forms/ThreeDSFormatSelector.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Forms/ThreeDSFormatSelector.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Language.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Language.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Language.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Language.resx -------------------------------------------------------------------------------- /DS ROM Patcher/ModBuilder.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/ModBuilder.vb -------------------------------------------------------------------------------- /DS ROM Patcher/ModFile.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/ModFile.vb -------------------------------------------------------------------------------- /DS ROM Patcher/ModJson.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/ModJson.vb -------------------------------------------------------------------------------- /DS ROM Patcher/ModpackInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/ModpackInfo.vb -------------------------------------------------------------------------------- /DS ROM Patcher/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/My Project/Application.myapp -------------------------------------------------------------------------------- /DS ROM Patcher/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /DS ROM Patcher/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/My Project/Resources.resx -------------------------------------------------------------------------------- /DS ROM Patcher/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /DS ROM Patcher/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/My Project/Settings.settings -------------------------------------------------------------------------------- /DS ROM Patcher/My Project/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/My Project/app.manifest -------------------------------------------------------------------------------- /DS ROM Patcher/NDSand3DSCore.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/NDSand3DSCore.vb -------------------------------------------------------------------------------- /DS ROM Patcher/PatcherCore.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/PatcherCore.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Program.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Program.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Resources/xdelta3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Resources/xdelta3.exe -------------------------------------------------------------------------------- /DS ROM Patcher/Utilities/ProcessHelper.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Utilities/ProcessHelper.vb -------------------------------------------------------------------------------- /DS ROM Patcher/Utilities/xdelta.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/Utilities/xdelta.vb -------------------------------------------------------------------------------- /DS ROM Patcher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS ROM Patcher/packages.config -------------------------------------------------------------------------------- /DS-ROM-Patcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/DS-ROM-Patcher.sln -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evandixon/DS-ROM-Patcher/HEAD/README.MD --------------------------------------------------------------------------------