Skip to content

Commit

Permalink
Update submodule and skip maintenance check before patching
Browse files Browse the repository at this point in the history
  • Loading branch information
witchof0x20 committed Oct 3, 2023
1 parent 20781bb commit 98520e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/FFXIVQuickLauncher
Submodule FFXIVQuickLauncher updated 29 files
+28 −5 src/XIVLauncher.Common.Unix/Compatibility/GameFixes/Implementations/MacVideoFix.cs
+24 −45 src/XIVLauncher.Common/Dalamud/AssetManager.cs
+5 −12 src/XIVLauncher.Common/Dalamud/DalamudUpdater.cs
+3 −3 src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndex.cs
+3 −5 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/AddDirectoryChunk.cs
+3 −5 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ApplyFreeSpaceChunk.cs
+3 −5 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ApplyOptionChunk.cs
+3 −5 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/DeleteDirectoryChunk.cs
+3 −4 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/EndOfFileChunk.cs
+3 −3 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/FileHeaderChunk.cs
+7 −7 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkChunk.cs
+9 −12 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkAddData.cs
+6 −9 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkDeleteData.cs
+6 −9 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkExpandData.cs
+5 −8 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkFile.cs
+2 −5 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkHeader.cs
+2 −5 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkIndex.cs
+3 −5 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkPatchInfo.cs
+3 −4 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkTargetInfo.cs
+3 −4 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/XXXXChunk.cs
+9 −8 src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ZiPatchChunk.cs
+30 −0 src/XIVLauncher.Common/Patching/ZiPatch/Util/AdvanceOnDispose.cs
+7 −8 src/XIVLauncher.Common/Patching/ZiPatch/Util/SqexFileStream.cs
+1 −1 src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpackDatFile.cs
+22 −2 src/XIVLauncher.Common/Util/PlatformHelpers.cs
+2 −2 src/XIVLauncher/Resources/CHANGELOG.txt
+10 −0 src/XIVLauncher/Updates.cs
+10 −0 src/XIVLauncher/Windows/ViewModel/MainWindowViewModel.cs
+1 −1 src/XIVLauncher/XIVLauncher.csproj
4 changes: 2 additions & 2 deletions src/XIVLauncher.Core/Components/MainPage/MainPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public async Task<bool> Login(string username, string password, bool isOtp, bool

App.ShowMessageBlocking("Maintenance is in progress.");

return null;
//return null;
}
#endif

Expand Down Expand Up @@ -1244,4 +1244,4 @@ private void Reactivate()

Program.ShowWindow();
}
}
}

0 comments on commit 98520e8

Please sign in to comment.