mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
Update SQLite, remove unneeded libraries
This commit is contained in:
@@ -89,11 +89,18 @@ namespace VRCX
|
||||
if (File.Exists(vueDevtoolsCrxPath))
|
||||
{
|
||||
var vueDevtoolsPath = Path.Join(extensionsPath, "Vue-js-devtools");
|
||||
if (!Directory.Exists(vueDevtoolsPath))
|
||||
try
|
||||
{
|
||||
if (Directory.Exists(vueDevtoolsPath))
|
||||
Directory.Delete(vueDevtoolsPath, true);
|
||||
|
||||
Directory.CreateDirectory(vueDevtoolsPath);
|
||||
ZipFile.ExtractToDirectory(vueDevtoolsCrxPath, vueDevtoolsPath);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
logger.Error(ex, "Failed to extract Vue Devtools");
|
||||
}
|
||||
}
|
||||
|
||||
// load extensions
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace VRCX
|
||||
repository.Register("AppApi", Program.AppApiInstance);
|
||||
repository.Register("WebApi", WebApi.Instance);
|
||||
repository.Register("VRCXStorage", VRCXStorage.Instance);
|
||||
repository.Register("SQLite", SQLiteLegacy.Instance);
|
||||
repository.Register("SQLite", SQLite.Instance);
|
||||
repository.Register("LogWatcher", LogWatcher.Instance);
|
||||
repository.Register("Discord", Discord.Instance);
|
||||
repository.Register("AssetBundleManager", AssetBundleManager.Instance);
|
||||
|
||||
Reference in New Issue
Block a user