remaining changes for v106 support

This commit is contained in:
LukeFZ
2026-02-09 20:06:52 +01:00
parent bf2cedd8d1
commit d9f2fc64dd
3 changed files with 2424 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -101,7 +101,7 @@ namespace Il2CppInspector
// Set object versioning for Bin2Object from metadata version
Version = new StructVersion(Header.Version);
if (Version < MetadataVersions.V160 || Version > MetadataVersions.V1050) {
if (Version < MetadataVersions.V160 || Version > MetadataVersions.V1060) {
throw new InvalidOperationException($"The supplied metadata file is not of a supported version ({Header.Version}).");
}

View File

@@ -8,7 +8,7 @@ This is a continuation of [Il2CppInspector, by djkaty](https://github.com/djkaty
### Redux only features
* Support for metadata version 29/29.1/31/35/38/39/104/105, with full reconstruction of custom attributes
* Support for metadata version 29/29.1/31/35/38/39/104/105/106, with full reconstruction of custom attributes
* Proper extraction of static array initializer contents with their correct length
* Proper support for v27.2+ Il2CppType
* Fixed support for v24.5
@@ -772,6 +772,7 @@ Unity version | IL2CPP version | Support
6000.3.0b1 | 39 | Working
6000.5.0a3-6000.5.0a4 | 104 | Working
6000.5.0a5 | 105 | Working
6000.5.0a6 | 106 | Working
Please refer to the companion repository https://github.com/nneonneo/Il2CppVersions if you would like to track the changes between each IL2CPP release version.