- Added ability to cycle through "pages" with lists/arrays and with search results. Also reduced default array display limit to 20 elements, since we can now just cycle through pages.
- Some backend restructuring / cleanups
This commit is contained in:
sinaioutlander
2020-08-13 00:06:39 +10:00
parent 13c2d6b92d
commit a2677e2321
30 changed files with 944 additions and 724 deletions

View File

@ -15,8 +15,8 @@ namespace Explorer
// consts
public const string ID = "com.sinai.cppexplorer";
public const string NAME = "IL2CPP Runtime Explorer";
public const string VERSION = "1.3.0";
public const string NAME = "IL2CPP Runtime Explorer (Unity 2018)";
public const string VERSION = "1.3.1";
public const string AUTHOR = "Sinai";
// fields
@ -28,7 +28,7 @@ namespace Explorer
// props
public static bool ShowMenu { get; set; } = false;
public static int ArrayLimit { get; set; } = 100;
public static int ArrayLimit { get; set; } = 20;
public bool MouseInspect { get; set; } = false;
public static string ActiveSceneName