├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── CASCConsole ├── CASCConsole.csproj ├── CASCConsole.csproj.user ├── Program.cs └── Properties │ ├── PublishProfiles │ ├── publish_linux.pubxml │ └── publish_win.pubxml │ └── launchSettings.json ├── CASCExplorer.ViewPlugin ├── CASCExplorer.ViewPlugin.csproj ├── IPreview.cs ├── Previews │ ├── BlpView.Designer.cs │ ├── BlpView.cs │ ├── BlpView.resx │ ├── HexView.Designer.cs │ ├── HexView.cs │ ├── HexView.resx │ ├── TextView.Designer.cs │ ├── TextView.cs │ └── TextView.resx └── Properties │ └── AssemblyInfo.cs ├── CASCExplorer.sln ├── CASCExplorer ├── AboutBox.Designer.cs ├── AboutBox.cs ├── AboutBox.resx ├── App.config ├── Bruteforce.cs ├── BruteforceForm.Designer.cs ├── BruteforceForm.cs ├── BruteforceForm.resx ├── CASCEntrySorter.cs ├── CASCExplorer.csproj ├── CASCViewHelper.cs ├── DB2Reader.cs ├── ExtractProgress.Designer.cs ├── ExtractProgress.cs ├── ExtractProgress.resx ├── FileScanner.cs ├── Icons │ ├── CASCExplorer.ico │ ├── folder.ico │ └── openFolder.ico ├── InitForm.Designer.cs ├── InitForm.cs ├── InitForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── NoFlickerListView.cs ├── OpenStorageForm.Designer.cs ├── OpenStorageForm.cs ├── OpenStorageForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RecentStorage.cs ├── Resources │ ├── logo.png │ └── transparent.png ├── ScanForm.Designer.cs ├── ScanForm.cs ├── ScanForm.resx ├── SearchForm.Designer.cs ├── SearchForm.cs ├── SearchForm.resx ├── SelectBuildForm.Designer.cs ├── SelectBuildForm.cs ├── SelectBuildForm.resx ├── WDB2Reader.cs ├── WDB3Reader.cs ├── WDB5Reader.cs ├── WDB6Reader.cs ├── WDBCReader.cs ├── WDC1Reader.cs ├── WDC2Reader.cs ├── WDC2ReaderGeneric.cs ├── WDC3Reader.cs ├── WDC3ReaderGeneric.cs └── app.manifest └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/.gitmodules -------------------------------------------------------------------------------- /CASCConsole/CASCConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCConsole/CASCConsole.csproj -------------------------------------------------------------------------------- /CASCConsole/CASCConsole.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCConsole/CASCConsole.csproj.user -------------------------------------------------------------------------------- /CASCConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCConsole/Program.cs -------------------------------------------------------------------------------- /CASCConsole/Properties/PublishProfiles/publish_linux.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCConsole/Properties/PublishProfiles/publish_linux.pubxml -------------------------------------------------------------------------------- /CASCConsole/Properties/PublishProfiles/publish_win.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCConsole/Properties/PublishProfiles/publish_win.pubxml -------------------------------------------------------------------------------- /CASCConsole/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCConsole/Properties/launchSettings.json -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/CASCExplorer.ViewPlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/CASCExplorer.ViewPlugin.csproj -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/IPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/IPreview.cs -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/BlpView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/BlpView.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/BlpView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/BlpView.cs -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/BlpView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/BlpView.resx -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/HexView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/HexView.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/HexView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/HexView.cs -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/HexView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/HexView.resx -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/TextView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/TextView.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/TextView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/TextView.cs -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Previews/TextView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Previews/TextView.resx -------------------------------------------------------------------------------- /CASCExplorer.ViewPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.ViewPlugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CASCExplorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer.sln -------------------------------------------------------------------------------- /CASCExplorer/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/AboutBox.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/AboutBox.cs -------------------------------------------------------------------------------- /CASCExplorer/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/AboutBox.resx -------------------------------------------------------------------------------- /CASCExplorer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/App.config -------------------------------------------------------------------------------- /CASCExplorer/Bruteforce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Bruteforce.cs -------------------------------------------------------------------------------- /CASCExplorer/BruteforceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/BruteforceForm.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/BruteforceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/BruteforceForm.cs -------------------------------------------------------------------------------- /CASCExplorer/BruteforceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/BruteforceForm.resx -------------------------------------------------------------------------------- /CASCExplorer/CASCEntrySorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/CASCEntrySorter.cs -------------------------------------------------------------------------------- /CASCExplorer/CASCExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/CASCExplorer.csproj -------------------------------------------------------------------------------- /CASCExplorer/CASCViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/CASCViewHelper.cs -------------------------------------------------------------------------------- /CASCExplorer/DB2Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/DB2Reader.cs -------------------------------------------------------------------------------- /CASCExplorer/ExtractProgress.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/ExtractProgress.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/ExtractProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/ExtractProgress.cs -------------------------------------------------------------------------------- /CASCExplorer/ExtractProgress.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/ExtractProgress.resx -------------------------------------------------------------------------------- /CASCExplorer/FileScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/FileScanner.cs -------------------------------------------------------------------------------- /CASCExplorer/Icons/CASCExplorer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Icons/CASCExplorer.ico -------------------------------------------------------------------------------- /CASCExplorer/Icons/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Icons/folder.ico -------------------------------------------------------------------------------- /CASCExplorer/Icons/openFolder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Icons/openFolder.ico -------------------------------------------------------------------------------- /CASCExplorer/InitForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/InitForm.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/InitForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/InitForm.cs -------------------------------------------------------------------------------- /CASCExplorer/InitForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/InitForm.resx -------------------------------------------------------------------------------- /CASCExplorer/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/MainForm.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/MainForm.cs -------------------------------------------------------------------------------- /CASCExplorer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/MainForm.resx -------------------------------------------------------------------------------- /CASCExplorer/NoFlickerListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/NoFlickerListView.cs -------------------------------------------------------------------------------- /CASCExplorer/OpenStorageForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/OpenStorageForm.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/OpenStorageForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/OpenStorageForm.cs -------------------------------------------------------------------------------- /CASCExplorer/OpenStorageForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/OpenStorageForm.resx -------------------------------------------------------------------------------- /CASCExplorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Program.cs -------------------------------------------------------------------------------- /CASCExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CASCExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /CASCExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /CASCExplorer/RecentStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/RecentStorage.cs -------------------------------------------------------------------------------- /CASCExplorer/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Resources/logo.png -------------------------------------------------------------------------------- /CASCExplorer/Resources/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/Resources/transparent.png -------------------------------------------------------------------------------- /CASCExplorer/ScanForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/ScanForm.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/ScanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/ScanForm.cs -------------------------------------------------------------------------------- /CASCExplorer/ScanForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/ScanForm.resx -------------------------------------------------------------------------------- /CASCExplorer/SearchForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/SearchForm.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/SearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/SearchForm.cs -------------------------------------------------------------------------------- /CASCExplorer/SearchForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/SearchForm.resx -------------------------------------------------------------------------------- /CASCExplorer/SelectBuildForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/SelectBuildForm.Designer.cs -------------------------------------------------------------------------------- /CASCExplorer/SelectBuildForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/SelectBuildForm.cs -------------------------------------------------------------------------------- /CASCExplorer/SelectBuildForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/SelectBuildForm.resx -------------------------------------------------------------------------------- /CASCExplorer/WDB2Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDB2Reader.cs -------------------------------------------------------------------------------- /CASCExplorer/WDB3Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDB3Reader.cs -------------------------------------------------------------------------------- /CASCExplorer/WDB5Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDB5Reader.cs -------------------------------------------------------------------------------- /CASCExplorer/WDB6Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDB6Reader.cs -------------------------------------------------------------------------------- /CASCExplorer/WDBCReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDBCReader.cs -------------------------------------------------------------------------------- /CASCExplorer/WDC1Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDC1Reader.cs -------------------------------------------------------------------------------- /CASCExplorer/WDC2Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDC2Reader.cs -------------------------------------------------------------------------------- /CASCExplorer/WDC2ReaderGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDC2ReaderGeneric.cs -------------------------------------------------------------------------------- /CASCExplorer/WDC3Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDC3Reader.cs -------------------------------------------------------------------------------- /CASCExplorer/WDC3ReaderGeneric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/WDC3ReaderGeneric.cs -------------------------------------------------------------------------------- /CASCExplorer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/CASCExplorer/app.manifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WoW-Tools/CASCExplorer/HEAD/README.md --------------------------------------------------------------------------------