Add token expiry (bump minor)

Temp remove genuine patch for unity product name
Exporting and importing tokens (not tested very well)
Insecure HTTP warning on auth
This commit is contained in:
2025-03-25 21:57:14 -04:00
parent a61549c932
commit bc84ef04ed
7 changed files with 61 additions and 26 deletions

View File

@@ -46,11 +46,15 @@ namespace undead_universal_patch_il2cpp
{
public static ConfigEntry<bool> Enabled;
public static ConfigEntry<bool> RegenerateKeypair;
public static ConfigEntry<string> Export;
public static ConfigEntry<bool> Import;
}
public static class GalvanicConfigDefaults
{
public static bool Enabled = false;
public static bool RegenerateKeypair = false;
public static string Export = "IDoNotWantToExportMyKeys";
public static bool Import = false;
}
}