├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── XIV on Mac.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ ├── WorkspaceSettings.xcsettings │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── marc_aurel.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── XIV on Mac.xcscheme ├── XIV on Mac ├── AddOns │ ├── AddOn.swift │ └── BunnyHUD.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Benchmark │ ├── Benchmark.swift │ ├── BenchmarkView.swift │ ├── CharacterAppearanceData.swift │ ├── CharacterDataImportView.swift │ ├── CharacterSlotView.swift │ ├── INIReadWrite.swift │ └── KwehView.swift ├── Credits.html ├── Encryption.swift ├── FFXIV-MacDefault.cfg ├── FirstAid │ ├── FFXIVCFGCheckup.swift │ ├── FFXIVCFGEncoder.swift │ ├── FirstAidModel.swift │ └── FirstAidView.swift ├── GraphicsUtils │ ├── Dxmt.swift │ ├── Dxvk.swift │ ├── DxvkError.swift │ ├── DxvkStateCache.swift │ └── GraphicsInstaller.swift ├── InstallerController.swift ├── Launcher │ ├── Dalamud.swift │ ├── FFXIVApp.swift │ ├── FFXIVEnums.swift │ ├── Frontier.swift │ ├── LaunchController.swift │ ├── LaunchWindowController.swift │ ├── LoginCredentials.swift │ ├── LoginResult.swift │ ├── OTP.swift │ └── Settings.swift ├── Log.swift ├── LoginSheetController.swift ├── Networking.swift ├── Notifications.swift ├── Patcher │ ├── FFXIVRepo.swift │ ├── Patch.swift │ ├── PatchController.swift │ └── RepairController.swift ├── PrefixMigrator.swift ├── Resources │ ├── Cameos │ │ ├── DISCORD_TEAM_FLEET_03.dat │ │ ├── DISCORD_TEAM_MODEST_05.dat │ │ ├── DISCORD_TEAM_SEATHASKY_02.dat │ │ ├── DISCORD_TEAM_USAGI_01.dat │ │ └── DISCORD_TEAM_WYLDFIRE_04.dat │ ├── CfgCheckAdvFailed.tiff │ ├── CfgCheckAdvFixed.tiff │ ├── CfgCheckGood.tiff │ ├── CfgCheckProbFailed.tiff │ ├── CfgCheckProbFixed.tiff │ ├── CfgCheckProblems.tiff │ ├── ChocoboWalk1.tiff │ ├── ChocoboWalk2.tiff │ ├── PrefsGeneral.tiff │ ├── PrefsGraphics.tiff │ └── snowflake_x2.png ├── ScreenCapture.swift ├── ScreenCaptureEngine.swift ├── Settings │ ├── SettingsAdvancedTabView.swift │ ├── SettingsCaptureView.swift │ ├── SettingsGeneralTabView.swift │ ├── SettingsGraphicsTabView.swift │ ├── SettingsPluginsTabView.swift │ └── SettingsView.swift ├── SocialIntegration.swift ├── Util.swift ├── Wine.swift ├── XIVLauncher.NativeAOT │ ├── CompatibilityTools.h │ ├── Serilog.h │ ├── XIVLauncher.h │ └── module.modulemap ├── XIV_on_Mac.entitlements ├── d3dcompiler │ └── d3dcompiler_47.dll ├── de.lproj │ ├── Localizable.strings │ └── Main.strings ├── discord_bridge.exe ├── dxmt │ ├── d3d11.dll │ └── dxgi.dll ├── dxvk │ ├── d3d11.dll │ └── ffxiv_dx11.dxvk-cache-base ├── en.lproj │ ├── Localizable.strings │ └── Main.strings ├── ffxivbenchmarklauncher-Default.ini ├── fr.lproj │ ├── Localizable.strings │ └── Main.strings ├── ja.lproj │ ├── Localizable.strings │ └── Main.strings ├── wine-builder │ ├── build.sh │ ├── default.nix │ ├── gnutls.nix │ ├── nix-build.sh │ ├── overrides │ │ └── lib │ │ │ ├── libMoltenVK.dylib │ │ │ └── wine │ │ │ ├── x86_64-unix │ │ │ └── winemetal.so │ │ │ └── x86_64-windows │ │ │ └── winemetal.dll │ ├── package-runtime.sh │ └── setup-hook-darwin.sh └── zh-tw.lproj │ ├── Localizable.strings │ └── Main.strings ├── XIV-on-Mac-Info.plist ├── XOM.icon ├── Assets │ ├── background.png │ └── font.png └── icon.json ├── xom_animated.gif └── xom_logo.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/README.md -------------------------------------------------------------------------------- /XIV on Mac.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XIV on Mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XIV on Mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /XIV on Mac.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /XIV on Mac.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /XIV on Mac.xcodeproj/project.xcworkspace/xcuserdata/marc_aurel.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac.xcodeproj/project.xcworkspace/xcuserdata/marc_aurel.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /XIV on Mac.xcodeproj/xcshareddata/xcschemes/XIV on Mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac.xcodeproj/xcshareddata/xcschemes/XIV on Mac.xcscheme -------------------------------------------------------------------------------- /XIV on Mac/AddOns/AddOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/AddOns/AddOn.swift -------------------------------------------------------------------------------- /XIV on Mac/AddOns/BunnyHUD.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/AddOns/BunnyHUD.swift -------------------------------------------------------------------------------- /XIV on Mac/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/AppDelegate.swift -------------------------------------------------------------------------------- /XIV on Mac/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /XIV on Mac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /XIV on Mac/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /XIV on Mac/Benchmark/Benchmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Benchmark/Benchmark.swift -------------------------------------------------------------------------------- /XIV on Mac/Benchmark/BenchmarkView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Benchmark/BenchmarkView.swift -------------------------------------------------------------------------------- /XIV on Mac/Benchmark/CharacterAppearanceData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Benchmark/CharacterAppearanceData.swift -------------------------------------------------------------------------------- /XIV on Mac/Benchmark/CharacterDataImportView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Benchmark/CharacterDataImportView.swift -------------------------------------------------------------------------------- /XIV on Mac/Benchmark/CharacterSlotView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Benchmark/CharacterSlotView.swift -------------------------------------------------------------------------------- /XIV on Mac/Benchmark/INIReadWrite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Benchmark/INIReadWrite.swift -------------------------------------------------------------------------------- /XIV on Mac/Benchmark/KwehView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Benchmark/KwehView.swift -------------------------------------------------------------------------------- /XIV on Mac/Credits.html: -------------------------------------------------------------------------------- 1 | ../LICENSE -------------------------------------------------------------------------------- /XIV on Mac/Encryption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Encryption.swift -------------------------------------------------------------------------------- /XIV on Mac/FFXIV-MacDefault.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/FFXIV-MacDefault.cfg -------------------------------------------------------------------------------- /XIV on Mac/FirstAid/FFXIVCFGCheckup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/FirstAid/FFXIVCFGCheckup.swift -------------------------------------------------------------------------------- /XIV on Mac/FirstAid/FFXIVCFGEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/FirstAid/FFXIVCFGEncoder.swift -------------------------------------------------------------------------------- /XIV on Mac/FirstAid/FirstAidModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/FirstAid/FirstAidModel.swift -------------------------------------------------------------------------------- /XIV on Mac/FirstAid/FirstAidView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/FirstAid/FirstAidView.swift -------------------------------------------------------------------------------- /XIV on Mac/GraphicsUtils/Dxmt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/GraphicsUtils/Dxmt.swift -------------------------------------------------------------------------------- /XIV on Mac/GraphicsUtils/Dxvk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/GraphicsUtils/Dxvk.swift -------------------------------------------------------------------------------- /XIV on Mac/GraphicsUtils/DxvkError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/GraphicsUtils/DxvkError.swift -------------------------------------------------------------------------------- /XIV on Mac/GraphicsUtils/DxvkStateCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/GraphicsUtils/DxvkStateCache.swift -------------------------------------------------------------------------------- /XIV on Mac/GraphicsUtils/GraphicsInstaller.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/GraphicsUtils/GraphicsInstaller.swift -------------------------------------------------------------------------------- /XIV on Mac/InstallerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/InstallerController.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/Dalamud.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/Dalamud.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/FFXIVApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/FFXIVApp.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/FFXIVEnums.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/FFXIVEnums.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/Frontier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/Frontier.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/LaunchController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/LaunchController.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/LaunchWindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/LaunchWindowController.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/LoginCredentials.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/LoginCredentials.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/LoginResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/LoginResult.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/OTP.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/OTP.swift -------------------------------------------------------------------------------- /XIV on Mac/Launcher/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Launcher/Settings.swift -------------------------------------------------------------------------------- /XIV on Mac/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Log.swift -------------------------------------------------------------------------------- /XIV on Mac/LoginSheetController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/LoginSheetController.swift -------------------------------------------------------------------------------- /XIV on Mac/Networking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Networking.swift -------------------------------------------------------------------------------- /XIV on Mac/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Notifications.swift -------------------------------------------------------------------------------- /XIV on Mac/Patcher/FFXIVRepo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Patcher/FFXIVRepo.swift -------------------------------------------------------------------------------- /XIV on Mac/Patcher/Patch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Patcher/Patch.swift -------------------------------------------------------------------------------- /XIV on Mac/Patcher/PatchController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Patcher/PatchController.swift -------------------------------------------------------------------------------- /XIV on Mac/Patcher/RepairController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Patcher/RepairController.swift -------------------------------------------------------------------------------- /XIV on Mac/PrefixMigrator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/PrefixMigrator.swift -------------------------------------------------------------------------------- /XIV on Mac/Resources/Cameos/DISCORD_TEAM_FLEET_03.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/Cameos/DISCORD_TEAM_FLEET_03.dat -------------------------------------------------------------------------------- /XIV on Mac/Resources/Cameos/DISCORD_TEAM_MODEST_05.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/Cameos/DISCORD_TEAM_MODEST_05.dat -------------------------------------------------------------------------------- /XIV on Mac/Resources/Cameos/DISCORD_TEAM_SEATHASKY_02.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/Cameos/DISCORD_TEAM_SEATHASKY_02.dat -------------------------------------------------------------------------------- /XIV on Mac/Resources/Cameos/DISCORD_TEAM_USAGI_01.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/Cameos/DISCORD_TEAM_USAGI_01.dat -------------------------------------------------------------------------------- /XIV on Mac/Resources/Cameos/DISCORD_TEAM_WYLDFIRE_04.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/Cameos/DISCORD_TEAM_WYLDFIRE_04.dat -------------------------------------------------------------------------------- /XIV on Mac/Resources/CfgCheckAdvFailed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/CfgCheckAdvFailed.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/CfgCheckAdvFixed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/CfgCheckAdvFixed.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/CfgCheckGood.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/CfgCheckGood.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/CfgCheckProbFailed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/CfgCheckProbFailed.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/CfgCheckProbFixed.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/CfgCheckProbFixed.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/CfgCheckProblems.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/CfgCheckProblems.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/ChocoboWalk1.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/ChocoboWalk1.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/ChocoboWalk2.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/ChocoboWalk2.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/PrefsGeneral.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/PrefsGeneral.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/PrefsGraphics.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/PrefsGraphics.tiff -------------------------------------------------------------------------------- /XIV on Mac/Resources/snowflake_x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Resources/snowflake_x2.png -------------------------------------------------------------------------------- /XIV on Mac/ScreenCapture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/ScreenCapture.swift -------------------------------------------------------------------------------- /XIV on Mac/ScreenCaptureEngine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/ScreenCaptureEngine.swift -------------------------------------------------------------------------------- /XIV on Mac/Settings/SettingsAdvancedTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Settings/SettingsAdvancedTabView.swift -------------------------------------------------------------------------------- /XIV on Mac/Settings/SettingsCaptureView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Settings/SettingsCaptureView.swift -------------------------------------------------------------------------------- /XIV on Mac/Settings/SettingsGeneralTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Settings/SettingsGeneralTabView.swift -------------------------------------------------------------------------------- /XIV on Mac/Settings/SettingsGraphicsTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Settings/SettingsGraphicsTabView.swift -------------------------------------------------------------------------------- /XIV on Mac/Settings/SettingsPluginsTabView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Settings/SettingsPluginsTabView.swift -------------------------------------------------------------------------------- /XIV on Mac/Settings/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Settings/SettingsView.swift -------------------------------------------------------------------------------- /XIV on Mac/SocialIntegration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/SocialIntegration.swift -------------------------------------------------------------------------------- /XIV on Mac/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Util.swift -------------------------------------------------------------------------------- /XIV on Mac/Wine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/Wine.swift -------------------------------------------------------------------------------- /XIV on Mac/XIVLauncher.NativeAOT/CompatibilityTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/XIVLauncher.NativeAOT/CompatibilityTools.h -------------------------------------------------------------------------------- /XIV on Mac/XIVLauncher.NativeAOT/Serilog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/XIVLauncher.NativeAOT/Serilog.h -------------------------------------------------------------------------------- /XIV on Mac/XIVLauncher.NativeAOT/XIVLauncher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/XIVLauncher.NativeAOT/XIVLauncher.h -------------------------------------------------------------------------------- /XIV on Mac/XIVLauncher.NativeAOT/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/XIVLauncher.NativeAOT/module.modulemap -------------------------------------------------------------------------------- /XIV on Mac/XIV_on_Mac.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/XIV_on_Mac.entitlements -------------------------------------------------------------------------------- /XIV on Mac/d3dcompiler/d3dcompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/d3dcompiler/d3dcompiler_47.dll -------------------------------------------------------------------------------- /XIV on Mac/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /XIV on Mac/de.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/de.lproj/Main.strings -------------------------------------------------------------------------------- /XIV on Mac/discord_bridge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/discord_bridge.exe -------------------------------------------------------------------------------- /XIV on Mac/dxmt/d3d11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/dxmt/d3d11.dll -------------------------------------------------------------------------------- /XIV on Mac/dxmt/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/dxmt/dxgi.dll -------------------------------------------------------------------------------- /XIV on Mac/dxvk/d3d11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/dxvk/d3d11.dll -------------------------------------------------------------------------------- /XIV on Mac/dxvk/ffxiv_dx11.dxvk-cache-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/dxvk/ffxiv_dx11.dxvk-cache-base -------------------------------------------------------------------------------- /XIV on Mac/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /XIV on Mac/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/en.lproj/Main.strings -------------------------------------------------------------------------------- /XIV on Mac/ffxivbenchmarklauncher-Default.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/ffxivbenchmarklauncher-Default.ini -------------------------------------------------------------------------------- /XIV on Mac/fr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/fr.lproj/Localizable.strings -------------------------------------------------------------------------------- /XIV on Mac/fr.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/fr.lproj/Main.strings -------------------------------------------------------------------------------- /XIV on Mac/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /XIV on Mac/ja.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/ja.lproj/Main.strings -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/build.sh -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/default.nix -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/gnutls.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/gnutls.nix -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/nix-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/nix-build.sh -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/overrides/lib/libMoltenVK.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/overrides/lib/libMoltenVK.dylib -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/overrides/lib/wine/x86_64-unix/winemetal.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/overrides/lib/wine/x86_64-unix/winemetal.so -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/overrides/lib/wine/x86_64-windows/winemetal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/overrides/lib/wine/x86_64-windows/winemetal.dll -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/package-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/package-runtime.sh -------------------------------------------------------------------------------- /XIV on Mac/wine-builder/setup-hook-darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/wine-builder/setup-hook-darwin.sh -------------------------------------------------------------------------------- /XIV on Mac/zh-tw.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/zh-tw.lproj/Localizable.strings -------------------------------------------------------------------------------- /XIV on Mac/zh-tw.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV on Mac/zh-tw.lproj/Main.strings -------------------------------------------------------------------------------- /XIV-on-Mac-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XIV-on-Mac-Info.plist -------------------------------------------------------------------------------- /XOM.icon/Assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XOM.icon/Assets/background.png -------------------------------------------------------------------------------- /XOM.icon/Assets/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XOM.icon/Assets/font.png -------------------------------------------------------------------------------- /XOM.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/XOM.icon/icon.json -------------------------------------------------------------------------------- /xom_animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/xom_animated.gif -------------------------------------------------------------------------------- /xom_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marzent/XIV-on-Mac/HEAD/xom_logo.png --------------------------------------------------------------------------------