├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── build-container.yml │ ├── build.yml │ ├── exd-files.yml │ ├── movies.yml │ └── stress-data.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── dotnet ├── FFXIVDownloader.Command │ ├── CacheMetadata.cs │ ├── ChainLutCommand.cs │ ├── DownloadCommand.cs │ ├── FFXIVDownloader.Command.csproj │ ├── GraphvizCommand.cs │ ├── LutCommand.cs │ ├── MainCommand.cs │ └── Properties │ │ └── launchSettings.json ├── FFXIVDownloader.sln └── FFXIVDownloader │ ├── FFXIVDownloader.csproj │ ├── Log.cs │ ├── Lut │ ├── ChunkType.cs │ ├── ClutDataRef.cs │ ├── ClutDiff.cs │ ├── ClutFile.cs │ ├── ClutFileData.cs │ ├── ClutHeader.cs │ ├── ClutPatchRef.cs │ ├── ClutPatcher.cs │ ├── ClutVersion.cs │ ├── CompressType.cs │ ├── LutChunk.cs │ ├── LutException.cs │ ├── LutFile.cs │ ├── LutHeader.cs │ └── LutVersion.cs │ ├── PatchClient.cs │ ├── Thaliak │ ├── GameVersion.cs │ ├── Patch.cs │ ├── PatchVersion.cs │ ├── Repository.cs │ ├── ThaliakClient.cs │ └── Version.cs │ └── ZiPatch │ ├── Chunk │ ├── AddDirectoryChunk.cs │ ├── ApplyFreeSpaceChunk.cs │ ├── ApplyOptionChunk.cs │ ├── DeleteDirectoryChunk.cs │ ├── EndOfFileChunk.cs │ ├── FileHeaderChunk.cs │ ├── SqpkChunk.cs │ ├── SqpkCommand │ │ ├── SqpkAddData.cs │ │ ├── SqpkDeleteData.cs │ │ ├── SqpkExpandData.cs │ │ ├── SqpkFile.cs │ │ ├── SqpkHeader.cs │ │ ├── SqpkIndex.cs │ │ ├── SqpkPatchInfo.cs │ │ └── SqpkTargetInfo.cs │ ├── XXXXChunk.cs │ └── ZiPatchChunk.cs │ ├── Config │ ├── BlackHoleTargetFile.cs │ ├── FilteredZiPatchConfig.cs │ ├── PersistentTargetFile.cs │ ├── PersistentZiPatchConfig.cs │ ├── TargetFile.cs │ └── ZiPatchConfig.cs │ ├── Util │ ├── BinaryReaderHelpers.cs │ ├── ClampedStream.cs │ ├── PlaceholderedSqexFile.cs │ ├── PlainSqexFile.cs │ ├── PositionedStream.cs │ ├── SemaphoreLock.cs │ ├── SqexExtensions.cs │ ├── SqexFile.cs │ ├── SqpackDatFile.cs │ ├── SqpackFile.cs │ ├── SqpackIndexFile.cs │ └── SqpkCompressedBlock.cs │ ├── ZiPatchException.cs │ └── ZiPatchFile.cs └── rust ├── Cargo.lock ├── Cargo.toml ├── cache ├── Cargo.toml ├── build.rs └── src │ ├── builder.rs │ ├── file.rs │ ├── lib.rs │ ├── server.rs │ ├── stream.rs │ └── weakling.rs ├── cli ├── Cargo.toml ├── build.rs └── src │ ├── cache.rs │ ├── diff.rs │ ├── download.rs │ ├── main.rs │ ├── ops │ ├── file_ops.rs │ ├── filtered.rs │ ├── io │ │ ├── mod.rs │ │ ├── open_options.rs │ │ ├── unix.rs │ │ ├── win.rs │ │ └── win_future.rs │ ├── mod.rs │ └── persistent.rs │ └── patcher.rs └── core ├── Cargo.toml └── src ├── downloader.rs ├── file ├── clut.rs ├── data_ref.rs ├── file_data.rs ├── header.rs ├── mod.rs ├── patch_ref.rs ├── slug.rs ├── types.rs ├── utils.rs └── version.rs ├── lib.rs └── thaliak ├── 2022-08-14.json ├── mod.rs └── queries.graphql /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/.github/workflows/build-container.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/exd-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/.github/workflows/exd-files.yml -------------------------------------------------------------------------------- /.github/workflows/movies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/.github/workflows/movies.yml -------------------------------------------------------------------------------- /.github/workflows/stress-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/.github/workflows/stress-data.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/action.yml -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.Command/CacheMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.Command/CacheMetadata.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.Command/ChainLutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.Command/ChainLutCommand.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.Command/DownloadCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.Command/DownloadCommand.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.Command/FFXIVDownloader.Command.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.Command/FFXIVDownloader.Command.csproj -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.Command/GraphvizCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.Command/GraphvizCommand.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.Command/LutCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.Command/LutCommand.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.Command/MainCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.Command/MainCommand.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.Command/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.Command/Properties/launchSettings.json -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader.sln -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/FFXIVDownloader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/FFXIVDownloader.csproj -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Log.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ChunkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ChunkType.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ClutDataRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ClutDataRef.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ClutDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ClutDiff.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ClutFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ClutFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ClutFileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ClutFileData.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ClutHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ClutHeader.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ClutPatchRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ClutPatchRef.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ClutPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ClutPatcher.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/ClutVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/ClutVersion.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/CompressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/CompressType.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/LutChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/LutChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/LutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/LutException.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/LutFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/LutFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/LutHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/LutHeader.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Lut/LutVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Lut/LutVersion.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/PatchClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/PatchClient.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Thaliak/GameVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Thaliak/GameVersion.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Thaliak/Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Thaliak/Patch.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Thaliak/PatchVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Thaliak/PatchVersion.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Thaliak/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Thaliak/Repository.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Thaliak/ThaliakClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Thaliak/ThaliakClient.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/Thaliak/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/Thaliak/Version.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/AddDirectoryChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/AddDirectoryChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/ApplyFreeSpaceChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/ApplyFreeSpaceChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/ApplyOptionChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/ApplyOptionChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/DeleteDirectoryChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/DeleteDirectoryChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/EndOfFileChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/EndOfFileChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/FileHeaderChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/FileHeaderChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkAddData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkAddData.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkDeleteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkDeleteData.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkExpandData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkExpandData.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkHeader.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkIndex.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkPatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkPatchInfo.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkTargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/SqpkCommand/SqpkTargetInfo.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/XXXXChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/XXXXChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Chunk/ZiPatchChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Chunk/ZiPatchChunk.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Config/BlackHoleTargetFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Config/BlackHoleTargetFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Config/FilteredZiPatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Config/FilteredZiPatchConfig.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Config/PersistentTargetFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Config/PersistentTargetFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Config/PersistentZiPatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Config/PersistentZiPatchConfig.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Config/TargetFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Config/TargetFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Config/ZiPatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Config/ZiPatchConfig.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/BinaryReaderHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/BinaryReaderHelpers.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/ClampedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/ClampedStream.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/PlaceholderedSqexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/PlaceholderedSqexFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/PlainSqexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/PlainSqexFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/PositionedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/PositionedStream.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/SemaphoreLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/SemaphoreLock.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/SqexExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/SqexExtensions.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/SqexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/SqexFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/SqpackDatFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/SqpackDatFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/SqpackFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/SqpackFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/SqpackIndexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/SqpackIndexFile.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/Util/SqpkCompressedBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/Util/SqpkCompressedBlock.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/ZiPatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/ZiPatchException.cs -------------------------------------------------------------------------------- /dotnet/FFXIVDownloader/ZiPatch/ZiPatchFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/dotnet/FFXIVDownloader/ZiPatch/ZiPatchFile.cs -------------------------------------------------------------------------------- /rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/Cargo.lock -------------------------------------------------------------------------------- /rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/Cargo.toml -------------------------------------------------------------------------------- /rust/cache/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cache/Cargo.toml -------------------------------------------------------------------------------- /rust/cache/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cache/build.rs -------------------------------------------------------------------------------- /rust/cache/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cache/src/builder.rs -------------------------------------------------------------------------------- /rust/cache/src/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cache/src/file.rs -------------------------------------------------------------------------------- /rust/cache/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cache/src/lib.rs -------------------------------------------------------------------------------- /rust/cache/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cache/src/server.rs -------------------------------------------------------------------------------- /rust/cache/src/stream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cache/src/stream.rs -------------------------------------------------------------------------------- /rust/cache/src/weakling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cache/src/weakling.rs -------------------------------------------------------------------------------- /rust/cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/Cargo.toml -------------------------------------------------------------------------------- /rust/cli/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/build.rs -------------------------------------------------------------------------------- /rust/cli/src/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/cache.rs -------------------------------------------------------------------------------- /rust/cli/src/diff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/diff.rs -------------------------------------------------------------------------------- /rust/cli/src/download.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/download.rs -------------------------------------------------------------------------------- /rust/cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/main.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/file_ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/file_ops.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/filtered.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/filtered.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/io/mod.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/io/open_options.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/io/open_options.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/io/unix.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/io/unix.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/io/win.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/io/win.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/io/win_future.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/io/win_future.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/mod.rs -------------------------------------------------------------------------------- /rust/cli/src/ops/persistent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/ops/persistent.rs -------------------------------------------------------------------------------- /rust/cli/src/patcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/cli/src/patcher.rs -------------------------------------------------------------------------------- /rust/core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/Cargo.toml -------------------------------------------------------------------------------- /rust/core/src/downloader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/downloader.rs -------------------------------------------------------------------------------- /rust/core/src/file/clut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/clut.rs -------------------------------------------------------------------------------- /rust/core/src/file/data_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/data_ref.rs -------------------------------------------------------------------------------- /rust/core/src/file/file_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/file_data.rs -------------------------------------------------------------------------------- /rust/core/src/file/header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/header.rs -------------------------------------------------------------------------------- /rust/core/src/file/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/mod.rs -------------------------------------------------------------------------------- /rust/core/src/file/patch_ref.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/patch_ref.rs -------------------------------------------------------------------------------- /rust/core/src/file/slug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/slug.rs -------------------------------------------------------------------------------- /rust/core/src/file/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/types.rs -------------------------------------------------------------------------------- /rust/core/src/file/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/utils.rs -------------------------------------------------------------------------------- /rust/core/src/file/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/file/version.rs -------------------------------------------------------------------------------- /rust/core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/lib.rs -------------------------------------------------------------------------------- /rust/core/src/thaliak/2022-08-14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/thaliak/2022-08-14.json -------------------------------------------------------------------------------- /rust/core/src/thaliak/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/thaliak/mod.rs -------------------------------------------------------------------------------- /rust/core/src/thaliak/queries.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WorkingRobot/ffxiv-downloader/HEAD/rust/core/src/thaliak/queries.graphql --------------------------------------------------------------------------------