Compare commits
15 Commits
main
...
1.0.1-release
| Author | SHA1 | Date |
|---|---|---|
|
|
a5238bcd29 | |
|
|
12dd5d8685 | |
|
|
feb8ed3206 | |
|
|
6939d16b6c | |
|
|
ca143691aa | |
|
|
f62a2fedb0 | |
|
|
2effa79f6d | |
|
|
1a23268b03 | |
|
|
e5c3bfa184 | |
|
|
9bb1b6054e | |
|
|
ef0db32fc1 | |
|
|
f0230149ce | |
|
|
0401d638a1 | |
|
|
4ea1798700 | |
|
|
eee3dbaa69 |
|
|
@ -127,14 +127,14 @@ namespace HybridCLR.Editor.Installer
|
|||
|
||||
public string HybridCLRRepoInstalledVersion
|
||||
{
|
||||
get { return EditorPrefs.GetString("hybridclr_repo"); }
|
||||
set { EditorPrefs.SetString("hybridclr_repo", value); }
|
||||
get { return EditorPrefs.GetString($"hybridclr_repo#{MajorVersion}"); }
|
||||
set { EditorPrefs.SetString($"hybridclr_repo#{MajorVersion}", value); }
|
||||
}
|
||||
|
||||
public string Il2CppRepoInstalledVersion
|
||||
{
|
||||
get { return EditorPrefs.GetString("il2cpp_plus_repo"); }
|
||||
set { EditorPrefs.SetString("il2cpp_plus_repo", value); }
|
||||
get { return EditorPrefs.GetString($"il2cpp_plus_repo#{MajorVersion}"); }
|
||||
set { EditorPrefs.SetString($"il2cpp_plus_repo#{MajorVersion}", value); }
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -19,12 +19,12 @@ namespace HybridCLR.Editor.Installer
|
|||
_hybridclrVersion = _controller.HybridCLRRepoInstalledVersion;
|
||||
if (string.IsNullOrWhiteSpace(_hybridclrVersion))
|
||||
{
|
||||
_hybridclrVersion = "main";
|
||||
_hybridclrVersion = "1.0";
|
||||
}
|
||||
_il2cppPlusVersion = _controller.Il2CppRepoInstalledVersion;
|
||||
if (string.IsNullOrWhiteSpace(_il2cppPlusVersion))
|
||||
{
|
||||
_il2cppPlusVersion = $"{_controller.MajorVersion}-main";
|
||||
_il2cppPlusVersion = $"{_controller.MajorVersion}-1.0";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "com.focus-creative-games.hybridclr_unity",
|
||||
"version": "1.1.15",
|
||||
"version": "1.0.12",
|
||||
"displayName": "HybridCLR",
|
||||
"description": "Unity package for HybridCLR. It includes editor and runtime scripts and assets for HybridCLR",
|
||||
"category": "Runtime",
|
||||
|
|
|
|||
Loading…
Reference in New Issue