diff --git a/src/ColorMC.Core/CoreMain.cs b/src/ColorMC.Core/CoreMain.cs index 20c6c9844..660f6a182 100644 --- a/src/ColorMC.Core/CoreMain.cs +++ b/src/ColorMC.Core/CoreMain.cs @@ -14,7 +14,7 @@ namespace ColorMC.Core; public static class ColorMCCore { - public const string TopVersion = "A28"; + public const string TopVersion = "A29"; public const string DateVersion = "20240817"; /// diff --git a/src/ColorMC.Launcher/Program.cs b/src/ColorMC.Launcher/Program.cs index 9a6ac2de1..901fb6541 100644 --- a/src/ColorMC.Launcher/Program.cs +++ b/src/ColorMC.Launcher/Program.cs @@ -101,7 +101,13 @@ public static void Main(string[] args) { if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux)) { - _inputDir = $"{Environment.GetFolderPath(Environment.SpecialFolder.UserProfile)}/ColorMC/"; + _inputDir = $"{Environment.GetFolderPath(Environment.SpecialFolder.UserProfile)}/.ColorMC/"; + + string path = $"{Environment.GetFolderPath(Environment.SpecialFolder.UserProfile)}/ColorMC/"; + if (Directory.Exists(path)) + { + Directory.Move(path, RunDir); + } } else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) {