├── .github ├── ISSUE_TEMPLATE │ ├── bugreport.yml │ ├── config.yml │ └── feature.yml ├── crowdin.yml └── workflows │ ├── ci-workflow.yml │ └── crowdin.yml ├── .gitignore ├── LICENSE ├── README.md ├── RELEASE.md ├── misc ├── 1password-cli-otp │ ├── 1password-hello-prompt.png │ ├── README.md │ ├── automatic-login.ps1 │ └── manual-login.ps1 ├── FFXIV Login.shortcut ├── FFXIV_OTP.macro ├── header.png ├── linux_distrib │ ├── 512.png │ └── XIVLauncher.desktop ├── screenshot.png └── xlcore_screenshot_v2.png ├── release.ps1 ├── scripts └── CreateHashList.ps1 ├── src ├── .editorconfig ├── .idea │ └── .idea.XIVLauncher │ │ └── .idea │ │ └── vcs.xml ├── CodeAnalysis │ ├── BannedSymbols.txt │ └── xl.ruleset ├── Directory.Build.props ├── XIVLauncher.Common.Tests │ ├── PatchAcquisitionTests.cs │ └── XIVLauncher.Common.Tests.csproj ├── XIVLauncher.Common.Unix │ ├── Compatibility │ │ ├── CompatibilityTools.cs │ │ ├── Dxvk.cs │ │ ├── GameFixes │ │ │ ├── GameFix.cs │ │ │ └── GameFixApply.cs │ │ └── WineSettings.cs │ ├── UnixDalamudCompatibilityCheck.cs │ ├── UnixDalamudRunner.cs │ ├── UnixGameRunner.cs │ ├── UnixSteam.cs │ ├── XIVLauncher.Common.Unix.csproj │ ├── libsteam_api64.dylib │ └── libsteam_api64.so ├── XIVLauncher.Common.Windows │ ├── NativeAclFix.cs │ ├── ShellLink.cs │ ├── WindowsDalamudCompatibilityCheck.cs │ ├── WindowsDalamudRunner.cs │ ├── WindowsGameRunner.cs │ ├── WindowsRestartManager.cs │ ├── WindowsSteam.cs │ ├── XIVLauncher.Common.Windows.csproj │ ├── steam_api.dll │ └── steam_api64.dll ├── XIVLauncher.Common │ ├── Addon │ │ ├── AddonEntry.cs │ │ ├── AddonManager.cs │ │ ├── IAddon.cs │ │ ├── INotifyAddonAfterClose.cs │ │ ├── IPersistentAddon.cs │ │ ├── IRunnableAddon.cs │ │ └── Implementations │ │ │ └── GenericAddon.cs │ ├── ClientLanguage.cs │ ├── CommonUniqueIdCache.cs │ ├── Constants.cs │ ├── Dalamud │ │ ├── AssetManager.cs │ │ ├── DalamudBranchMeta.cs │ │ ├── DalamudConsoleOutput.cs │ │ ├── DalamudInjectorArgs.cs │ │ ├── DalamudLauncher.cs │ │ ├── DalamudLoadMethod.cs │ │ ├── DalamudRunnerException.cs │ │ ├── DalamudStartInfo.cs │ │ ├── DalamudUpdater.cs │ │ └── DalamudVersionInfo.cs │ ├── DpiAwareness.cs │ ├── Encryption │ │ ├── ArgumentBuilder.cs │ │ ├── BlockCipher │ │ │ ├── Blowfish.cs │ │ │ ├── BlowfishState.cs │ │ │ ├── Ecb.cs │ │ │ ├── IBlockCipher.cs │ │ │ └── IBlockMode.cs │ │ ├── CrtRand.cs │ │ ├── LegacyBlowfish.cs │ │ └── Ticket.cs │ ├── EnvironmentSettings.cs │ ├── ExistingProcess.cs │ ├── Game │ │ ├── Exceptions │ │ │ ├── BinaryNotPresentException.cs │ │ │ ├── GameExitedException.cs │ │ │ ├── InvalidResponseException.cs │ │ │ ├── InvalidVersionFilesException.cs │ │ │ ├── NoVersionReferenceException.cs │ │ │ ├── OauthLoginException.cs │ │ │ ├── SteamException.cs │ │ │ ├── SteamLinkNeededException.cs │ │ │ └── SteamWrongAccountException.cs │ │ ├── GateStatus.cs │ │ ├── Headlines.cs │ │ ├── IntegrityCheck.cs │ │ ├── Launcher.cs │ │ └── Patch │ │ │ ├── Acquisition │ │ │ ├── AcquisitionMethod.cs │ │ │ ├── AcquisitionProgress.cs │ │ │ ├── AcquisitionResult.cs │ │ │ ├── Aria │ │ │ │ ├── AriaHttpPatchAcquisition.cs │ │ │ │ ├── AriaManager.cs │ │ │ │ ├── Attributes │ │ │ │ │ ├── AriaFile.cs │ │ │ │ │ ├── AriaGlobalStatus.cs │ │ │ │ │ ├── AriaOption.cs │ │ │ │ │ ├── AriaServer.cs │ │ │ │ │ ├── AriaSession.cs │ │ │ │ │ ├── AriaStatus.cs │ │ │ │ │ ├── AriaTorrent.cs │ │ │ │ │ ├── AriaUri.cs │ │ │ │ │ └── AriaVersionInfo.cs │ │ │ │ └── JsonRpc │ │ │ │ │ ├── JsonRpcHttpClient.cs │ │ │ │ │ └── JsonRpcResponse.cs │ │ │ └── PatchAcquisition.cs │ │ │ ├── GamePatchType.cs │ │ │ ├── NotEnoughSpaceException.cs │ │ │ ├── PatchInstaller.cs │ │ │ ├── PatchInstallerException.cs │ │ │ ├── PatchList │ │ │ ├── PatchListEntry.cs │ │ │ ├── PatchListParseException.cs │ │ │ └── PatchListParser.cs │ │ │ ├── PatchManager.cs │ │ │ └── PatchVerifier.cs │ ├── Http │ │ ├── HttpServer.cs │ │ └── OtpListener.cs │ ├── Patching │ │ ├── IndexedZiPatch │ │ │ ├── IIndexedZiPatchIndexInstaller.cs │ │ │ ├── IndexedZiPatchIndex.cs │ │ │ ├── IndexedZiPatchIndexLocalInstaller.cs │ │ │ ├── IndexedZiPatchIndexRemoteInstaller.cs │ │ │ ├── IndexedZiPatchInstaller.cs │ │ │ ├── IndexedZiPatchOperations.cs │ │ │ ├── IndexedZiPatchPartLocator.cs │ │ │ ├── IndexedZiPatchTargetFile.cs │ │ │ └── IndexedZiPatchTargetViewStream.cs │ │ ├── RemotePatchInstaller.cs │ │ ├── Rpc │ │ │ ├── IRpc.cs │ │ │ ├── Implementations │ │ │ │ ├── InProcessRpc.cs │ │ │ │ └── SharedMemoryRpc.cs │ │ │ ├── IpcHelpers.cs │ │ │ ├── PatcherIpcEnvelope.cs │ │ │ ├── PatcherIpcOpCode.cs │ │ │ └── PatcherIpcStartInstall.cs │ │ ├── Util │ │ │ ├── BinaryReaderHelpers.cs │ │ │ ├── ChecksumBinaryReader.cs │ │ │ ├── CircularMemoryStream.cs │ │ │ ├── Crc32.cs │ │ │ ├── FullDeflateStreamReader.cs │ │ │ ├── MultipartResponseHandler.cs │ │ │ └── ReusableByteBufferManager.cs │ │ └── ZiPatch │ │ │ ├── Chunk │ │ │ ├── AddDirectoryChunk.cs │ │ │ ├── ApplyFreeSpaceChunk.cs │ │ │ ├── ApplyOptionChunk.cs │ │ │ ├── DeleteDirectoryChunk.cs │ │ │ ├── EndOfFileChunk.cs │ │ │ ├── FileHeaderChunk.cs │ │ │ ├── SqpkChunk.cs │ │ │ ├── SqpkCommand │ │ │ │ ├── SqpkAddData.cs │ │ │ │ ├── SqpkDeleteData.cs │ │ │ │ ├── SqpkExpandData.cs │ │ │ │ ├── SqpkFile.cs │ │ │ │ ├── SqpkHeader.cs │ │ │ │ ├── SqpkIndex.cs │ │ │ │ ├── SqpkPatchInfo.cs │ │ │ │ └── SqpkTargetInfo.cs │ │ │ ├── XXXXChunk.cs │ │ │ └── ZiPatchChunk.cs │ │ │ ├── Util │ │ │ ├── AdvanceOnDispose.cs │ │ │ ├── SqexFile.cs │ │ │ ├── SqexFileStream.cs │ │ │ ├── SqexFileStreamStore.cs │ │ │ ├── SqpackDatFile.cs │ │ │ ├── SqpackFile.cs │ │ │ ├── SqpackIndexFile.cs │ │ │ └── SqpkCompressedBlock.cs │ │ │ ├── ZiPatchConfig.cs │ │ │ ├── ZiPatchException.cs │ │ │ └── ZiPatchFile.cs │ ├── Paths.cs │ ├── Platform.cs │ ├── PlatformAbstractions │ │ ├── IDalamudCompatibilityCheck.cs │ │ ├── IDalamudLoadingOverlay.cs │ │ ├── IDalamudRunner.cs │ │ ├── IGameRunner.cs │ │ ├── ISettings.cs │ │ ├── ISteam.cs │ │ └── IUniqueIdCache.cs │ ├── Repository.cs │ ├── SeVersion.cs │ ├── SettingsAnnotation.cs │ ├── Storage.cs │ ├── Support │ │ ├── LogInit.cs │ │ └── SerilogEventSink.cs │ ├── Util │ │ ├── ApiHelpers.cs │ │ ├── DebugHelpers.cs │ │ ├── GameHelpers.cs │ │ ├── HttpClientWithProgress.cs │ │ ├── MathHelpers.cs │ │ └── PlatformHelpers.cs │ └── XIVLauncher.Common.csproj ├── XIVLauncher.PatchInstaller │ ├── Commands │ │ ├── CheckIntegrityCommand.cs │ │ ├── IndexCreateCommand.cs │ │ ├── IndexCreateIntegrityCommand.cs │ │ ├── IndexRepairCommand.cs │ │ ├── IndexRpcCommand.cs │ │ ├── IndexRpcTestCommand.cs │ │ ├── IndexUpdateCommand.cs │ │ ├── IndexVerifyCommand.cs │ │ ├── InstallCommand.cs │ │ └── RpcCommand.cs │ ├── Program.cs │ ├── Resources │ │ └── icon.ico │ ├── Utilities │ │ └── FileDownloader.cs │ └── XIVLauncher.PatchInstaller.csproj ├── XIVLauncher.nuspec ├── XIVLauncher.sln ├── XIVLauncher.sln.DotSettings ├── XIVLauncher │ ├── Accounts │ │ ├── AccountManager.cs │ │ ├── AccountSwitcherEntry.cs │ │ └── XivAccount.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppUtil.cs │ ├── Game │ │ └── ProblemCheck.cs │ ├── PlatformAbstractions │ │ └── CommonSettings.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Resources │ │ ├── CHANGELOG.txt │ │ ├── COPYING.aria2 │ │ ├── LICENSE.txt │ │ ├── Loc │ │ │ ├── XIVLauncher_Localizable.json │ │ │ └── xl │ │ │ │ ├── xl_de.json │ │ │ │ ├── xl_es.json │ │ │ │ ├── xl_fr.json │ │ │ │ ├── xl_it.json │ │ │ │ ├── xl_ja.json │ │ │ │ ├── xl_ko.json │ │ │ │ ├── xl_nl.json │ │ │ │ ├── xl_no.json │ │ │ │ ├── xl_pt.json │ │ │ │ ├── xl_ru.json │ │ │ │ ├── xl_si.json │ │ │ │ ├── xl_sv.json │ │ │ │ ├── xl_tw.json │ │ │ │ ├── xl_ur.json │ │ │ │ └── xl_zh.json │ │ ├── actlaunch.png │ │ ├── aria2c-xl.exe │ │ ├── dalamud_icon.ico │ │ ├── defaultprofile.png │ │ ├── logo.png │ │ ├── olddalamud_icon.ico │ │ ├── oldlogo.png │ │ ├── placeholder-news.png │ │ └── richpresence.png │ ├── Settings │ │ ├── ILauncherSettingsV3.cs │ │ ├── LauncherLanguage.cs │ │ └── Parsers │ │ │ ├── AddonListParser.cs │ │ │ ├── CommonJsonParser.cs │ │ │ └── DirectoryInfoParser.cs │ ├── Support │ │ ├── PackGenerator.cs │ │ ├── SupportLinks.cs │ │ └── Troubleshooting.cs │ ├── Updates.cs │ ├── Windows │ │ ├── AccountSwitcher.xaml │ │ ├── AccountSwitcher.xaml.cs │ │ ├── AdvancedSettingsWindow.xaml │ │ ├── AdvancedSettingsWindow.xaml.cs │ │ ├── BetaKeyDialog.xaml │ │ ├── BetaKeyDialog.xaml.cs │ │ ├── ChangelogWindow.xaml │ │ ├── ChangelogWindow.xaml.cs │ │ ├── CustomMessageBox.xaml │ │ ├── CustomMessageBox.xaml.cs │ │ ├── DalamudBranchSwitcherWindow.xaml │ │ ├── DalamudBranchSwitcherWindow.xaml.cs │ │ ├── DalamudLoadingOverlay.xaml │ │ ├── DalamudLoadingOverlay.xaml.cs │ │ ├── FirstTimeSetupWindow.xaml │ │ ├── FirstTimeSetupWindow.xaml.cs │ │ ├── GameRepairProgressWindow.xaml │ │ ├── GameRepairProgressWindow.xaml.cs │ │ ├── GenericAddonSetupWindow.xaml │ │ ├── GenericAddonSetupWindow.xaml.cs │ │ ├── IntegrityCheckProgressWindow.xaml │ │ ├── IntegrityCheckProgressWindow.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── OtpInputDialog.xaml │ │ ├── OtpInputDialog.xaml.cs │ │ ├── PatchDownloadDialog.xaml │ │ ├── PatchDownloadDialog.xaml.cs │ │ ├── ProfilePictureInputWindow.xaml │ │ ├── ProfilePictureInputWindow.xaml.cs │ │ ├── SettingsControl.xaml │ │ ├── SettingsControl.xaml.cs │ │ ├── UpdateLoadingDialog.xaml │ │ ├── UpdateLoadingDialog.xaml.cs │ │ └── ViewModel │ │ │ ├── AccountSwitcherViewModel.cs │ │ │ ├── AdvancedSettingsViewModel.cs │ │ │ ├── ChangeLogWindowViewModel.cs │ │ │ ├── ChatChannelSetupViewModel.cs │ │ │ ├── CustomMessageBoxViewModel.cs │ │ │ ├── DalamudBranchSwitcherViewModel.cs │ │ │ ├── DalamudLoadingOverlayViewModel.cs │ │ │ ├── FirstTimeSetupViewModel.cs │ │ │ ├── GameRepairProgressWindowViewModel.cs │ │ │ ├── GenericAddonSetupWindowViewModel.cs │ │ │ ├── IntegrityCheckProgressWindowViewModel.cs │ │ │ ├── MainWindowViewModel.cs │ │ │ ├── OtpInputDialogViewModel.cs │ │ │ ├── PatchDownloadDialogViewModel.cs │ │ │ ├── ProfilePictureInputWindowViewModel.cs │ │ │ ├── SettingsControlViewModel.cs │ │ │ └── UpdateLoadingDialogViewModel.cs │ ├── XIVLauncher.csproj │ └── Xaml │ │ ├── Components │ │ ├── FileEntry.xaml │ │ ├── FileEntry.xaml.cs │ │ ├── FolderEntry.xaml │ │ ├── FolderEntry.xaml.cs │ │ └── MaterialDesignOverrides.xaml │ │ ├── HideFromWindowSwitcher.cs │ │ ├── PreserveWindowPosition.cs │ │ ├── SpeedSpinBox.xaml │ │ ├── SpeedSpinBox.xaml.cs │ │ └── SyncCommand.cs └── global.json └── xivlauncher.appdata.xml /.github/ISSUE_TEMPLATE/bugreport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/.github/ISSUE_TEMPLATE/bugreport.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/.github/crowdin.yml -------------------------------------------------------------------------------- /.github/workflows/ci-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/.github/workflows/ci-workflow.yml -------------------------------------------------------------------------------- /.github/workflows/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/.github/workflows/crowdin.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/RELEASE.md -------------------------------------------------------------------------------- /misc/1password-cli-otp/1password-hello-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/1password-cli-otp/1password-hello-prompt.png -------------------------------------------------------------------------------- /misc/1password-cli-otp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/1password-cli-otp/README.md -------------------------------------------------------------------------------- /misc/1password-cli-otp/automatic-login.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/1password-cli-otp/automatic-login.ps1 -------------------------------------------------------------------------------- /misc/1password-cli-otp/manual-login.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/1password-cli-otp/manual-login.ps1 -------------------------------------------------------------------------------- /misc/FFXIV Login.shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/FFXIV Login.shortcut -------------------------------------------------------------------------------- /misc/FFXIV_OTP.macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/FFXIV_OTP.macro -------------------------------------------------------------------------------- /misc/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/header.png -------------------------------------------------------------------------------- /misc/linux_distrib/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/linux_distrib/512.png -------------------------------------------------------------------------------- /misc/linux_distrib/XIVLauncher.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/linux_distrib/XIVLauncher.desktop -------------------------------------------------------------------------------- /misc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/screenshot.png -------------------------------------------------------------------------------- /misc/xlcore_screenshot_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/misc/xlcore_screenshot_v2.png -------------------------------------------------------------------------------- /release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/release.ps1 -------------------------------------------------------------------------------- /scripts/CreateHashList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/scripts/CreateHashList.ps1 -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.idea/.idea.XIVLauncher/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/.idea/.idea.XIVLauncher/.idea/vcs.xml -------------------------------------------------------------------------------- /src/CodeAnalysis/BannedSymbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/CodeAnalysis/BannedSymbols.txt -------------------------------------------------------------------------------- /src/CodeAnalysis/xl.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/CodeAnalysis/xl.ruleset -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Tests/PatchAcquisitionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Tests/PatchAcquisitionTests.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Tests/XIVLauncher.Common.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Tests/XIVLauncher.Common.Tests.csproj -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/Compatibility/CompatibilityTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/Compatibility/CompatibilityTools.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/Compatibility/Dxvk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/Compatibility/Dxvk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/Compatibility/GameFixes/GameFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/Compatibility/GameFixes/GameFix.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/Compatibility/GameFixes/GameFixApply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/Compatibility/GameFixes/GameFixApply.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/Compatibility/WineSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/Compatibility/WineSettings.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/UnixDalamudCompatibilityCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/UnixDalamudCompatibilityCheck.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/UnixDalamudRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/UnixDalamudRunner.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/UnixGameRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/UnixGameRunner.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/UnixSteam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/UnixSteam.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/XIVLauncher.Common.Unix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/XIVLauncher.Common.Unix.csproj -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/libsteam_api64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/libsteam_api64.dylib -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Unix/libsteam_api64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Unix/libsteam_api64.so -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/NativeAclFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/NativeAclFix.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/ShellLink.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/WindowsDalamudCompatibilityCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/WindowsDalamudCompatibilityCheck.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/WindowsDalamudRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/WindowsDalamudRunner.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/WindowsGameRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/WindowsGameRunner.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/WindowsRestartManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/WindowsRestartManager.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/WindowsSteam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/WindowsSteam.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/XIVLauncher.Common.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/XIVLauncher.Common.Windows.csproj -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/steam_api.dll -------------------------------------------------------------------------------- /src/XIVLauncher.Common.Windows/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common.Windows/steam_api64.dll -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Addon/AddonEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Addon/AddonEntry.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Addon/AddonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Addon/AddonManager.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Addon/IAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Addon/IAddon.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Addon/INotifyAddonAfterClose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Addon/INotifyAddonAfterClose.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Addon/IPersistentAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Addon/IPersistentAddon.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Addon/IRunnableAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Addon/IRunnableAddon.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Addon/Implementations/GenericAddon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Addon/Implementations/GenericAddon.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/ClientLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/ClientLanguage.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/CommonUniqueIdCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/CommonUniqueIdCache.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Constants.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/AssetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/AssetManager.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudBranchMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudBranchMeta.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudConsoleOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudConsoleOutput.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudInjectorArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudInjectorArgs.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudLauncher.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudLoadMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudLoadMethod.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudRunnerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudRunnerException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudStartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudStartInfo.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudUpdater.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Dalamud/DalamudVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Dalamud/DalamudVersionInfo.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/DpiAwareness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/DpiAwareness.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/ArgumentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/ArgumentBuilder.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/BlockCipher/Blowfish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/BlockCipher/Blowfish.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/BlockCipher/BlowfishState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/BlockCipher/BlowfishState.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/BlockCipher/Ecb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/BlockCipher/Ecb.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/BlockCipher/IBlockCipher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/BlockCipher/IBlockCipher.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/BlockCipher/IBlockMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/BlockCipher/IBlockMode.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/CrtRand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/CrtRand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/LegacyBlowfish.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/LegacyBlowfish.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Encryption/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Encryption/Ticket.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/EnvironmentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/EnvironmentSettings.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/ExistingProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/ExistingProcess.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/BinaryNotPresentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/BinaryNotPresentException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/GameExitedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/GameExitedException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/InvalidResponseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/InvalidResponseException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/InvalidVersionFilesException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/InvalidVersionFilesException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/NoVersionReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/NoVersionReferenceException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/OauthLoginException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/OauthLoginException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/SteamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/SteamException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/SteamLinkNeededException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/SteamLinkNeededException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Exceptions/SteamWrongAccountException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Exceptions/SteamWrongAccountException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/GateStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/GateStatus.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Headlines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Headlines.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/IntegrityCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/IntegrityCheck.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Launcher.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/AcquisitionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/AcquisitionMethod.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/AcquisitionProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/AcquisitionProgress.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/AcquisitionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/AcquisitionResult.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/AriaHttpPatchAcquisition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/AriaHttpPatchAcquisition.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/AriaManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/AriaManager.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaFile.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaGlobalStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaGlobalStatus.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaOption.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaServer.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaSession.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaStatus.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaTorrent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaTorrent.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaUri.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaUri.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/Attributes/AriaVersionInfo.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/JsonRpc/JsonRpcHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/JsonRpc/JsonRpcHttpClient.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/JsonRpc/JsonRpcResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/Aria/JsonRpc/JsonRpcResponse.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/Acquisition/PatchAcquisition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/Acquisition/PatchAcquisition.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/GamePatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/GamePatchType.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/NotEnoughSpaceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/NotEnoughSpaceException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/PatchInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/PatchInstaller.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/PatchInstallerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/PatchInstallerException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/PatchList/PatchListEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/PatchList/PatchListEntry.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/PatchList/PatchListParseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/PatchList/PatchListParseException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/PatchList/PatchListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/PatchList/PatchListParser.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/PatchManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/PatchManager.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Game/Patch/PatchVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Game/Patch/PatchVerifier.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Http/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Http/HttpServer.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Http/OtpListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Http/OtpListener.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IIndexedZiPatchIndexInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IIndexedZiPatchIndexInstaller.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndex.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndexLocalInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndexLocalInstaller.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndexRemoteInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchIndexRemoteInstaller.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchInstaller.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchOperations.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchPartLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchPartLocator.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchTargetFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchTargetFile.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchTargetViewStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/IndexedZiPatch/IndexedZiPatchTargetViewStream.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/RemotePatchInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/RemotePatchInstaller.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Rpc/IRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Rpc/IRpc.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Rpc/Implementations/InProcessRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Rpc/Implementations/InProcessRpc.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Rpc/Implementations/SharedMemoryRpc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Rpc/Implementations/SharedMemoryRpc.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Rpc/IpcHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Rpc/IpcHelpers.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Rpc/PatcherIpcEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Rpc/PatcherIpcEnvelope.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Rpc/PatcherIpcOpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Rpc/PatcherIpcOpCode.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Rpc/PatcherIpcStartInstall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Rpc/PatcherIpcStartInstall.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Util/BinaryReaderHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Util/BinaryReaderHelpers.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Util/ChecksumBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Util/ChecksumBinaryReader.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Util/CircularMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Util/CircularMemoryStream.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Util/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Util/Crc32.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Util/FullDeflateStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Util/FullDeflateStreamReader.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Util/MultipartResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Util/MultipartResponseHandler.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/Util/ReusableByteBufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/Util/ReusableByteBufferManager.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/AddDirectoryChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/AddDirectoryChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ApplyFreeSpaceChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ApplyFreeSpaceChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ApplyOptionChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ApplyOptionChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/DeleteDirectoryChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/DeleteDirectoryChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/EndOfFileChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/EndOfFileChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/FileHeaderChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/FileHeaderChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkAddData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkAddData.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkDeleteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkDeleteData.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkExpandData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkExpandData.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkFile.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkHeader.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkIndex.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkPatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkPatchInfo.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkTargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/SqpkCommand/SqpkTargetInfo.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/XXXXChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/XXXXChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ZiPatchChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Chunk/ZiPatchChunk.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Util/AdvanceOnDispose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Util/AdvanceOnDispose.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Util/SqexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Util/SqexFile.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Util/SqexFileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Util/SqexFileStream.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Util/SqexFileStreamStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Util/SqexFileStreamStore.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpackDatFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpackDatFile.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpackFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpackFile.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpackIndexFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpackIndexFile.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpkCompressedBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/Util/SqpkCompressedBlock.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/ZiPatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/ZiPatchConfig.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/ZiPatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/ZiPatchException.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Patching/ZiPatch/ZiPatchFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Patching/ZiPatch/ZiPatchFile.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Paths.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Platform.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/PlatformAbstractions/IDalamudCompatibilityCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/PlatformAbstractions/IDalamudCompatibilityCheck.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/PlatformAbstractions/IDalamudLoadingOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/PlatformAbstractions/IDalamudLoadingOverlay.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/PlatformAbstractions/IDalamudRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/PlatformAbstractions/IDalamudRunner.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/PlatformAbstractions/IGameRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/PlatformAbstractions/IGameRunner.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/PlatformAbstractions/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/PlatformAbstractions/ISettings.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/PlatformAbstractions/ISteam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/PlatformAbstractions/ISteam.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/PlatformAbstractions/IUniqueIdCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/PlatformAbstractions/IUniqueIdCache.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Repository.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/SeVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/SeVersion.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/SettingsAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/SettingsAnnotation.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Storage.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Support/LogInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Support/LogInit.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Support/SerilogEventSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Support/SerilogEventSink.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Util/ApiHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Util/ApiHelpers.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Util/DebugHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Util/DebugHelpers.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Util/GameHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Util/GameHelpers.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Util/HttpClientWithProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Util/HttpClientWithProgress.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Util/MathHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Util/MathHelpers.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/Util/PlatformHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/Util/PlatformHelpers.cs -------------------------------------------------------------------------------- /src/XIVLauncher.Common/XIVLauncher.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.Common/XIVLauncher.Common.csproj -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/CheckIntegrityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/CheckIntegrityCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/IndexCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/IndexCreateCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/IndexCreateIntegrityCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/IndexCreateIntegrityCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/IndexRepairCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/IndexRepairCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/IndexRpcCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/IndexRpcCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/IndexRpcTestCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/IndexRpcTestCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/IndexUpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/IndexUpdateCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/IndexVerifyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/IndexVerifyCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/InstallCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/InstallCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Commands/RpcCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Commands/RpcCommand.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Program.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Resources/icon.ico -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/Utilities/FileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/Utilities/FileDownloader.cs -------------------------------------------------------------------------------- /src/XIVLauncher.PatchInstaller/XIVLauncher.PatchInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.PatchInstaller/XIVLauncher.PatchInstaller.csproj -------------------------------------------------------------------------------- /src/XIVLauncher.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.nuspec -------------------------------------------------------------------------------- /src/XIVLauncher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.sln -------------------------------------------------------------------------------- /src/XIVLauncher.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher.sln.DotSettings -------------------------------------------------------------------------------- /src/XIVLauncher/Accounts/AccountManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Accounts/AccountManager.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Accounts/AccountSwitcherEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Accounts/AccountSwitcherEntry.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Accounts/XivAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Accounts/XivAccount.cs -------------------------------------------------------------------------------- /src/XIVLauncher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/App.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/App.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/AppUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/AppUtil.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Game/ProblemCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Game/ProblemCheck.cs -------------------------------------------------------------------------------- /src/XIVLauncher/PlatformAbstractions/CommonSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/PlatformAbstractions/CommonSettings.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Program.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/CHANGELOG.txt -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/COPYING.aria2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/COPYING.aria2 -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/LICENSE.txt -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/XIVLauncher_Localizable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/XIVLauncher_Localizable.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_de.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_es.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_fr.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_it.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_ja.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_ko.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_nl.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_no.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_pt.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_ru.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_si.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_sv.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_tw.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_ur.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/Loc/xl/xl_zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/Loc/xl/xl_zh.json -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/actlaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/actlaunch.png -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/aria2c-xl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/aria2c-xl.exe -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/dalamud_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/dalamud_icon.ico -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/defaultprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/defaultprofile.png -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/logo.png -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/olddalamud_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/olddalamud_icon.ico -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/oldlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/oldlogo.png -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/placeholder-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/placeholder-news.png -------------------------------------------------------------------------------- /src/XIVLauncher/Resources/richpresence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Resources/richpresence.png -------------------------------------------------------------------------------- /src/XIVLauncher/Settings/ILauncherSettingsV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Settings/ILauncherSettingsV3.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Settings/LauncherLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Settings/LauncherLanguage.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Settings/Parsers/AddonListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Settings/Parsers/AddonListParser.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Settings/Parsers/CommonJsonParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Settings/Parsers/CommonJsonParser.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Settings/Parsers/DirectoryInfoParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Settings/Parsers/DirectoryInfoParser.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Support/PackGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Support/PackGenerator.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Support/SupportLinks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Support/SupportLinks.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Support/Troubleshooting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Support/Troubleshooting.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Updates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Updates.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/AccountSwitcher.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/AccountSwitcher.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/AccountSwitcher.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/AccountSwitcher.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/AdvancedSettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/AdvancedSettingsWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/AdvancedSettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/AdvancedSettingsWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/BetaKeyDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/BetaKeyDialog.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/BetaKeyDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/BetaKeyDialog.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ChangelogWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ChangelogWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ChangelogWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ChangelogWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/CustomMessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/CustomMessageBox.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/CustomMessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/CustomMessageBox.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/DalamudBranchSwitcherWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/DalamudBranchSwitcherWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/DalamudBranchSwitcherWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/DalamudBranchSwitcherWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/DalamudLoadingOverlay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/DalamudLoadingOverlay.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/DalamudLoadingOverlay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/DalamudLoadingOverlay.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/FirstTimeSetupWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/FirstTimeSetupWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/FirstTimeSetupWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/FirstTimeSetupWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/GameRepairProgressWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/GameRepairProgressWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/GameRepairProgressWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/GameRepairProgressWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/GenericAddonSetupWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/GenericAddonSetupWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/GenericAddonSetupWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/GenericAddonSetupWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/IntegrityCheckProgressWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/IntegrityCheckProgressWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/IntegrityCheckProgressWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/IntegrityCheckProgressWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/OtpInputDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/OtpInputDialog.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/OtpInputDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/OtpInputDialog.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/PatchDownloadDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/PatchDownloadDialog.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/PatchDownloadDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/PatchDownloadDialog.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ProfilePictureInputWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ProfilePictureInputWindow.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ProfilePictureInputWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ProfilePictureInputWindow.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/SettingsControl.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/SettingsControl.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/UpdateLoadingDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/UpdateLoadingDialog.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/UpdateLoadingDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/UpdateLoadingDialog.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/AccountSwitcherViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/AccountSwitcherViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/AdvancedSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/AdvancedSettingsViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/ChangeLogWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/ChangeLogWindowViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/ChatChannelSetupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/ChatChannelSetupViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/CustomMessageBoxViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/CustomMessageBoxViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/DalamudBranchSwitcherViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/DalamudBranchSwitcherViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/DalamudLoadingOverlayViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/DalamudLoadingOverlayViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/FirstTimeSetupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/FirstTimeSetupViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/GameRepairProgressWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/GameRepairProgressWindowViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/GenericAddonSetupWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/GenericAddonSetupWindowViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/IntegrityCheckProgressWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/IntegrityCheckProgressWindowViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/OtpInputDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/OtpInputDialogViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/PatchDownloadDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/PatchDownloadDialogViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/ProfilePictureInputWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/ProfilePictureInputWindowViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/SettingsControlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/SettingsControlViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Windows/ViewModel/UpdateLoadingDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Windows/ViewModel/UpdateLoadingDialogViewModel.cs -------------------------------------------------------------------------------- /src/XIVLauncher/XIVLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/XIVLauncher.csproj -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/Components/FileEntry.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/Components/FileEntry.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/Components/FileEntry.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/Components/FileEntry.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/Components/FolderEntry.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/Components/FolderEntry.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/Components/FolderEntry.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/Components/FolderEntry.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/Components/MaterialDesignOverrides.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/Components/MaterialDesignOverrides.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/HideFromWindowSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/HideFromWindowSwitcher.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/PreserveWindowPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/PreserveWindowPosition.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/SpeedSpinBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/SpeedSpinBox.xaml -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/SpeedSpinBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/SpeedSpinBox.xaml.cs -------------------------------------------------------------------------------- /src/XIVLauncher/Xaml/SyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/XIVLauncher/Xaml/SyncCommand.cs -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/src/global.json -------------------------------------------------------------------------------- /xivlauncher.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatcorp/FFXIVQuickLauncher/HEAD/xivlauncher.appdata.xml --------------------------------------------------------------------------------