Skip to content

Commit

Permalink
update lib
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluefissure committed Jan 2, 2024
1 parent a07cc1f commit 993f86a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/FFXIVQuickLauncher
Submodule FFXIVQuickLauncher updated 62 files
+147 −0 src/.editorconfig
+1 −1 src/XIVLauncher.Common.Unix/Compatibility/Dxvk.cs
+4 −4 src/XIVLauncher.Common.Unix/Compatibility/GameFixes/Implementations/MacVideoFix.cs
+81 −56 src/XIVLauncher.Common/Dalamud/AssetManager.cs
+5 −12 src/XIVLauncher.Common/Dalamud/DalamudUpdater.cs
+47 −3 src/XIVLauncher.Common/Game/Headlines.cs
+20 −24 src/XIVLauncher.Common/Game/Launcher.cs
+6 −0 src/XIVLauncher.Common/Game/Patch/PatchInstaller.cs
+8 −8 src/XIVLauncher.Common/Game/SdoLauncher.cs
+4 −4 src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndex.cs
+2 −3 src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndexLocalInstaller.cs
+4 −0 src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndexRemoteInstaller.cs
+1 −3 src/XIVLauncher.Common/Patching/Util/FullDeflateStreamReader.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
+8 −10 src/XIVLauncher.Common/Patching/ZiPatch/Util/SqexFileStream.cs
+1 −1 src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpackDatFile.cs
+23 −3 src/XIVLauncher.Common/Util/PlatformHelpers.cs
+1 −1 src/XIVLauncher.PatchInstaller/XIVLauncher.PatchInstaller.csproj
+4 −2 src/XIVLauncher/App.xaml
+0 −1 src/XIVLauncher/App.xaml.cs
+6 −2 src/XIVLauncher/Resources/Loc/XIVLauncher_Localizable.json
+5 −1 src/XIVLauncher/Resources/Loc/xl/xl_de.json
+6 −2 src/XIVLauncher/Resources/Loc/xl/xl_es.json
+6 −2 src/XIVLauncher/Resources/Loc/xl/xl_fr.json
+5 −1 src/XIVLauncher/Resources/Loc/xl/xl_it.json
+6 −2 src/XIVLauncher/Resources/Loc/xl/xl_ja.json
+5 −1 src/XIVLauncher/Resources/Loc/xl/xl_ko.json
+6 −2 src/XIVLauncher/Resources/Loc/xl/xl_nl.json
+11 −7 src/XIVLauncher/Resources/Loc/xl/xl_no.json
+5 −1 src/XIVLauncher/Resources/Loc/xl/xl_pt.json
+5 −1 src/XIVLauncher/Resources/Loc/xl/xl_ru.json
+6 −2 src/XIVLauncher/Resources/Loc/xl/xl_si.json
+5 −1 src/XIVLauncher/Resources/Loc/xl/xl_sv.json
+5 −1 src/XIVLauncher/Resources/Loc/xl/xl_tw.json
+6 −2 src/XIVLauncher/Resources/Loc/xl/xl_ur.json
+50 −46 src/XIVLauncher/Resources/Loc/xl/xl_zh.json
+10 −0 src/XIVLauncher/Updates.cs
+1 −2 src/XIVLauncher/Windows/AdvancedSettingsWindow.xaml.cs
+69 −6 src/XIVLauncher/Windows/MainWindow.xaml
+17 −26 src/XIVLauncher/Windows/MainWindow.xaml.cs
+0 −1 src/XIVLauncher/Windows/PatchDownloadDialog.xaml.cs
+0 −1 src/XIVLauncher/Windows/SettingsControl.xaml.cs
+87 −18 src/XIVLauncher/Windows/ViewModel/MainWindowViewModel.cs
+2 −2 src/XIVLauncher/XIVLauncher.csproj
+9 −0 src/XIVLauncher/Xaml/Components/MaterialDesignOverrides.xaml

0 comments on commit 993f86a

Please sign in to comment.