Skip to content

Commit e2bd6cf

Browse files
upgrade hybridclr
1 parent 7e08e36 commit e2bd6cf

File tree

6 files changed

+34
-18
lines changed

6 files changed

+34
-18
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ UnityProject/Build/*
1515
/UnityProject/yoo
1616
/UnityProject/UserSettings/Layouts
1717
/UnityProject/HybridCLRData
18+
/UnityProject/UserSettings

UnityProject/Packages/[email protected]/Data~/hybridclr_version.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,37 @@
22
"versions": [
33
{
44
"unity_version":"2019",
5-
"hybridclr" : { "branch":"v8.5.1"},
5+
"hybridclr" : { "branch":"v8.6.0"},
66
"il2cpp_plus": { "branch":"v2019-8.1.0"}
77
},
88
{
99
"unity_version":"2020",
10-
"hybridclr" : { "branch":"v8.5.1"},
10+
"hybridclr" : { "branch":"v8.6.0"},
1111
"il2cpp_plus": { "branch":"v2020-8.1.0"}
1212
},
1313
{
1414
"unity_version":"2021",
15-
"hybridclr" : { "branch":"v8.5.1"},
15+
"hybridclr" : { "branch":"v8.6.0"},
1616
"il2cpp_plus": { "branch":"v2021-8.1.0"}
1717
},
1818
{
1919
"unity_version":"2022",
20-
"hybridclr" : { "branch":"v8.5.1"},
20+
"hybridclr" : { "branch":"v8.6.0"},
2121
"il2cpp_plus": { "branch":"v2022-8.2.0"}
2222
},
2323
{
2424
"unity_version":"2022-tuanjie",
25-
"hybridclr" : { "branch":"v8.5.1"},
26-
"il2cpp_plus": { "branch":"v2022-tuanjie-8.3.0"}
25+
"hybridclr" : { "branch":"v8.6.0"},
26+
"il2cpp_plus": { "branch":"v2022-tuanjie-8.6.0"}
2727
},
2828
{
2929
"unity_version":"2023",
30-
"hybridclr" : { "branch":"v8.5.1"},
30+
"hybridclr" : { "branch":"v8.6.0"},
3131
"il2cpp_plus": { "branch":"v2023-8.1.0"}
3232
},
3333
{
3434
"unity_version":"6000",
35-
"hybridclr" : { "branch":"v8.5.1"},
35+
"hybridclr" : { "branch":"v8.6.0"},
3636
"il2cpp_plus": { "branch":"v6000-8.1.0"}
3737
}
3838
]

UnityProject/Packages/[email protected]/Editor/Installer/BashUtil.cs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,15 @@ public static void CopyDir(string src, string dst, bool log = false)
108108
{
109109
UnityEngine.Debug.Log($"[BashUtil] CopyDir {src} => {dst}");
110110
}
111-
RemoveDir(dst);
111+
if (Directory.Exists(dst))
112+
{
113+
RemoveDir(dst);
114+
}
115+
else
116+
{
117+
string parentDir = Path.GetDirectoryName(Path.GetFullPath(dst));
118+
Directory.CreateDirectory(parentDir);
119+
}
112120

113121
UnityEditor.FileUtil.CopyFileOrDirectory(src, dst);
114122
}

UnityProject/Packages/[email protected]/Editor/ReversePInvokeWrap.meta

Lines changed: 0 additions & 8 deletions
This file was deleted.

UnityProject/Packages/[email protected]/RELEASELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# ReleaseLog
22

3+
## 8.6.0
4+
5+
Release Date: 2025-09-27.
6+
7+
### Runtime
8+
9+
- [fix] fix the crash in InterpreterDelegateInvoke when compiled in Release mode on Xcode 26.x. This bug is caused by an optimization issue in the newer Clang version.
10+
- [fix] [tuanjie] fix a bug on tuanjie that calling Init of Il2CppClass `Nullable<EnumType`> may not init Il2CppClass of EnumType, which causes crash when box `Nullable<EnumType>`
11+
- [fix] [tuanjie] fix bug that computation of method index in Class::GetGenericInstanceMethodFromDefintion. tuanjie 1.6.4 only fixes it when IL2CPP_ENABLE_LAZY_INIT.
12+
- [merge] merge il2cpp of tuanjie changes from 1.6.0-1.6.4
13+
14+
### Editor
15+
16+
- [fix] fix the bug that BashUtil.CopyDir calls UnityEditor.FileUtil.CopyFileOrDirectory failed when parent directory of dst does not exist.
17+
318
## 8.5.1
419

520
Release Date: 2025-08-25.

UnityProject/Packages/[email protected]/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.code-philosophy.hybridclr",
3-
"version": "8.5.1",
3+
"version": "8.6.0",
44
"displayName": "HybridCLR",
55
"description": "HybridCLR is a fully featured, zero-cost, high-performance, low-memory solution for Unity's all-platform native c# hotupdate.",
66
"category": "Scripting",

0 commit comments

Comments
 (0)