diff --git a/Compatible/Compatible.cs b/Compatible/Compatible.cs index 61fd439..517c8eb 100644 --- a/Compatible/Compatible.cs +++ b/Compatible/Compatible.cs @@ -22,6 +22,7 @@ { MoveFile(Path.Combine(qwilightEntry, "Qwilight.json"), Path.Combine(qwilightEntry, "Configure.json")); MoveFile(Path.Combine(qwilightEntry, "Qwilight.db"), Path.Combine(qwilightEntry, "DB.db")); + MoveFile(Path.Combine(qwilightEntry, "Position.json"), Path.Combine(qwilightEntry, "#.json")); var CommentEntry = Path.Combine(qwilightEntry, "Comment"); diff --git a/Protobuf/Protobuf.csproj b/Protobuf/Protobuf.csproj index 872cad4..159a5a3 100644 --- a/Protobuf/Protobuf.csproj +++ b/Protobuf/Protobuf.csproj @@ -6,6 +6,6 @@ - + diff --git a/Qwilight/Qwilight.csproj b/Qwilight/Qwilight.csproj index 4c02bef..cba5426 100644 --- a/Qwilight/Qwilight.csproj +++ b/Qwilight/Qwilight.csproj @@ -44,7 +44,7 @@ - + diff --git a/Qwilight/System/PositionSystem.cs b/Qwilight/System/PositionSystem.cs index 85568a9..6491dc0 100644 --- a/Qwilight/System/PositionSystem.cs +++ b/Qwilight/System/PositionSystem.cs @@ -10,7 +10,7 @@ { public static readonly PositionSystem Instance = new(); - static readonly string _fileName = Path.Combine(QwilightComponent.QwilightEntryPath, "Position.json"); + static readonly string _fileName = Path.Combine(QwilightComponent.QwilightEntryPath, "#.json"); readonly ConcurrentDictionary _data = []; diff --git a/Xwindow/Xwindow.cpp b/Xwindow/Xwindow.cpp index 02c8ea0..07bb882 100644 --- a/Xwindow/Xwindow.cpp +++ b/Xwindow/Xwindow.cpp @@ -28,7 +28,7 @@ SetProcessDpiAwarenessContext(DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2); if (__argc < 2 || !PathFileExists(__wargv[1]) || DeleteFileW(__wargv[1])) { - MessageBoxW(NULL, L"Cannot run Xwindow alone", L"Qwilight", MB_ICONWARNING); + MessageBoxW(NULL, L"Cannot find Qwilight", L"Qwilight", MB_ICONWARNING); return EXIT_FAILURE; }