[version] Release v7.7.0
parent
4768c039d2
commit
528240b52b
|
|
@ -2,38 +2,38 @@
|
|||
"versions": [
|
||||
{
|
||||
"unity_version":"2019",
|
||||
"hybridclr" : { "branch":"v7.6.0"},
|
||||
"il2cpp_plus": { "branch":"v2019-7.6.0"}
|
||||
"hybridclr" : { "branch":"v7.7.0"},
|
||||
"il2cpp_plus": { "branch":"v2019-7.7.0"}
|
||||
},
|
||||
{
|
||||
"unity_version":"2020",
|
||||
"hybridclr" : { "branch":"v7.6.0"},
|
||||
"il2cpp_plus": { "branch":"v2020-7.6.0"}
|
||||
"hybridclr" : { "branch":"v7.7.0"},
|
||||
"il2cpp_plus": { "branch":"v2020-7.7.0"}
|
||||
},
|
||||
{
|
||||
"unity_version":"2021",
|
||||
"hybridclr" : { "branch":"v7.6.0"},
|
||||
"il2cpp_plus": { "branch":"v2021-7.6.0"}
|
||||
"hybridclr" : { "branch":"v7.7.0"},
|
||||
"il2cpp_plus": { "branch":"v2021-7.7.0"}
|
||||
},
|
||||
{
|
||||
"unity_version":"2022",
|
||||
"hybridclr" : { "branch":"v7.6.0"},
|
||||
"il2cpp_plus": { "branch":"v2022-7.4.0"}
|
||||
"hybridclr" : { "branch":"v7.7.0"},
|
||||
"il2cpp_plus": { "branch":"v2022-7.7.0"}
|
||||
},
|
||||
{
|
||||
"unity_version":"2022-tuanjie",
|
||||
"hybridclr" : { "branch":"v7.6.0"},
|
||||
"il2cpp_plus": { "branch":"v2022-tuanjie-7.4.0"}
|
||||
"hybridclr" : { "branch":"v7.7.0"},
|
||||
"il2cpp_plus": { "branch":"v2022-tuanjie-7.7.0"}
|
||||
},
|
||||
{
|
||||
"unity_version":"2023",
|
||||
"hybridclr" : { "branch":"v7.6.0"},
|
||||
"il2cpp_plus": { "branch":"v2023-7.4.0"}
|
||||
"hybridclr" : { "branch":"v7.7.0"},
|
||||
"il2cpp_plus": { "branch":"v2023-7.7.0"}
|
||||
},
|
||||
{
|
||||
"unity_version":"6000",
|
||||
"hybridclr" : { "branch":"v7.6.0"},
|
||||
"il2cpp_plus": { "branch":"v6000-7.4.0"}
|
||||
"hybridclr" : { "branch":"v7.7.0"},
|
||||
"il2cpp_plus": { "branch":"v6000-7.7.0"}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,5 +1,26 @@
|
|||
# ReleaseLog
|
||||
|
||||
## 7.7.0
|
||||
|
||||
Release Date: 2025-03-12.
|
||||
|
||||
### Runtime
|
||||
|
||||
- [change] fixed the issue that HYBRIDCLR_ENABLE_PROFILER was disabled in release build
|
||||
- [fix] fix a crash in PDBImage::SetMethodDebugInfo when GetMethodDataFromCache returns nullptr
|
||||
- [fix] fix assert bug of InterpreterDelegateInvoke when method->parameters_count - curMethod->parameters_count == 1
|
||||
- [fix] fix compiler error of initialize constructor code `{a, b}` for `std::tuple<void*,void*>` in PS5
|
||||
- [opt] removed unnecessary pdb lock in PDBImage
|
||||
- [change] fix some compiler warnings
|
||||
- [change] HYBRIDCLR_ENABLE_STRACKTRACE was enabled in both DEBUG and RELEASE build without considering HYBRIDCLR_ENABLE_STRACE_TRACE_IN_WEBGL_RELEASE_BUILD flag.
|
||||
|
||||
### Editor
|
||||
|
||||
- [fix] fixed hook failed in version below MacOS 11
|
||||
- [change] CompileDllActiveBuildTarget and GenerateAll use EditorUserBuildSettings.development to compile hot update dll.
|
||||
- [remove] remove option HybridCLRSettings.enableProfilerInReleaseBuild
|
||||
- [remove] remove option HybridCLRSettings.enableStraceTraceInWebGLReleaseBuild
|
||||
|
||||
## 7.6.0
|
||||
|
||||
Release Date: 2025-03-01.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "com.code-philosophy.hybridclr",
|
||||
"version": "7.6.0",
|
||||
"version": "7.7.0",
|
||||
"displayName": "HybridCLR",
|
||||
"description": "HybridCLR is a fully featured, zero-cost, high-performance, low-memory solution for Unity's all-platform native c# hotupdate.",
|
||||
"category": "Runtime",
|
||||
|
|
|
|||
Loading…
Reference in New Issue