Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit 62d5657

Browse files
committed
Bump UniverseLib and version
1 parent 870f82a commit 62d5657

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

src/ExplorerCore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace UnityExplorer
1414
public static class ExplorerCore
1515
{
1616
public const string NAME = "UnityExplorer";
17-
public const string VERSION = "4.7.9";
17+
public const string VERSION = "4.7.10";
1818
public const string AUTHOR = "Sinai";
1919
public const string GUID = "com.sinai.unityexplorer";
2020

src/UI/UIManager.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@ internal static void InitUI()
112112
Notification.Init();
113113
ConsoleController.Init();
114114

115-
// Set default menu visibility
116-
ShowMenu = !ConfigManager.Hide_On_Startup.Value;
117-
118115
// Failsafe fix, in some games all dropdowns displayed values are blank on startup for some reason.
119116
foreach (Dropdown dropdown in UIRoot.GetComponentsInChildren<Dropdown>(true))
120117
dropdown.RefreshShownValue();
121118

122119
Initializing = false;
120+
121+
if (ConfigManager.Hide_On_Startup.Value)
122+
ShowMenu = false;
123123
}
124124

125125
// Main UI Update loop

src/UnityExplorer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@
7979
<!-- il2cpp nuget -->
8080
<ItemGroup Condition="'$(Configuration)'=='ML_Cpp_net6' or '$(Configuration)'=='ML_Cpp_net472' or '$(Configuration)'=='STANDALONE_Cpp' or '$(Configuration)'=='BIE_Cpp'">
8181
<PackageReference Include="Il2CppAssemblyUnhollower.BaseLib" Version="0.4.22" IncludeAssets="compile" />
82-
<PackageReference Include="UniverseLib.IL2CPP" Version="1.3.10" />
82+
<PackageReference Include="UniverseLib.IL2CPP" Version="1.3.11" />
8383
</ItemGroup>
8484
<!-- mono nuget -->
8585
<ItemGroup Condition="'$(Configuration)'=='BIE6_Mono' or '$(Configuration)'=='BIE5_Mono' or '$(Configuration)'=='ML_Mono' or '$(Configuration)'=='STANDALONE_Mono'">
86-
<PackageReference Include="UniverseLib.Mono" Version="1.3.10" />
86+
<PackageReference Include="UniverseLib.Mono" Version="1.3.11" />
8787
</ItemGroup>
8888

8989
<!-- ~~~~~ ASSEMBLY REFERENCES ~~~~~ -->

0 commit comments

Comments
 (0)