Linux: Change how AppImage moving is handled, add support for vrcx:\\

This commit is contained in:
Natsumi
2025-02-28 09:53:43 +13:00
parent 641dba2fe9
commit 137608b705
9 changed files with 167 additions and 161 deletions

View File

@@ -9,6 +9,7 @@ using NLog.Targets;
using System;
using System.Data.SQLite;
using System.IO;
using System.Text.Json;
using System.Threading;
using System.Windows.Forms;
@@ -224,6 +225,9 @@ namespace VRCX
Application.SetCompatibleTextRenderingDefault(false);
logger.Info("{0} Starting...", Version);
logger.Info("Args: {0}", JsonSerializer.Serialize(StartupArgs.Args));
if (!string.IsNullOrEmpty(StartupArgs.LaunchArguments.LaunchCommand))
logger.Info("Launch Command: {0}", StartupArgs.LaunchArguments.LaunchCommand);
logger.Debug("Wine detection: {0}", Wine.GetIfWine());
SQLiteLegacy.Instance.Init();
@@ -276,6 +280,9 @@ namespace VRCX
Update.Check();
logger.Info("{0} Starting...", Version);
logger.Info("Args: {0}", JsonSerializer.Serialize(StartupArgs.Args));
if (!string.IsNullOrEmpty(StartupArgs.LaunchArguments.LaunchCommand))
logger.Info("Launch Command: {0}", StartupArgs.LaunchArguments.LaunchCommand);
AppApiInstance = new AppApiElectron();
// ProcessMonitor.Instance.Init();