├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── build.yml │ └── swiftlint.yml ├── .gitignore ├── .swiftlint.yml ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── Mythic.xcodeproj ├── project.pbxproj ├── project.pbxproj.orig ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── blackxfiied.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── WorkspaceSettings.xcsettings ├── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ │ └── Mythic.xcscheme └── xcuserdata │ └── blackxfiied.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Mythic ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AlphaAppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_1024x1024.png │ │ ├── icon_128x128.png │ │ ├── icon_16x16.png │ │ ├── icon_256x256 1.png │ │ ├── icon_256x256.png │ │ ├── icon_32x32 1.png │ │ ├── icon_32x32.png │ │ ├── icon_512x512 1.png │ │ ├── icon_512x512.png │ │ └── icon_64x64.png │ ├── AppIcon.appiconset │ │ ├── 128x128.png │ │ ├── 128x128@2x.png │ │ ├── 16x16.png │ │ ├── 16x16@2x.png │ │ ├── 256x256.png │ │ ├── 256x256@2x.png │ │ ├── 32x32.png │ │ ├── 32x32@2x.png │ │ ├── 512x512.png │ │ ├── 512x512@2x.png │ │ └── Contents.json │ ├── BetaAppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_1024.png │ │ ├── icon_128.png │ │ ├── icon_16.png │ │ ├── icon_256 1.png │ │ ├── icon_256.png │ │ ├── icon_32 1.png │ │ ├── icon_32.png │ │ ├── icon_512 1.png │ │ ├── icon_512.png │ │ └── icon_64.png │ ├── BlankAppIcon.imageset │ │ ├── Contents.json │ │ └── blank_512x512@2x.png │ ├── Contents.json │ ├── EGFaceless.imageset │ │ ├── Contents.json │ │ └── epic_noface.png │ ├── EngineIcon.imageset │ │ ├── Contents.json │ │ ├── Engine-GPTKv2.png │ │ ├── Engine-GPTKv2@2x.png │ │ └── Engine-GPTKv2@3x.png │ ├── Externals │ │ ├── Contents.json │ │ ├── CrossOver.imageset │ │ │ ├── Contents.json │ │ │ └── CrossOver.png │ │ └── Whisky.imageset │ │ │ ├── 128@2x.png │ │ │ ├── 256@2x.png │ │ │ ├── 512@2x.png │ │ │ └── Contents.json │ ├── Harmony+AppIcon.imageset │ │ ├── Contents.json │ │ ├── Mythic + Harmony.png │ │ ├── Mythic + Harmony@2x.png │ │ └── Mythic + Harmony@3x.png │ ├── HarmonyIcon.imageset │ │ ├── Contents.json │ │ ├── Harmony Logo.png │ │ ├── Harmony Logo@2x.png │ │ └── Harmony Logo@3x.png │ ├── MythicIcon.imageset │ │ ├── Contents.json │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── Default@3x.png │ ├── MythicIconFlat.imageset │ │ ├── Contents.json │ │ ├── Property 1=Flat.png │ │ ├── Property 1=Flat@2x.png │ │ └── Property 1=Flat@3x.png │ └── Steam.imageset │ │ ├── Contents.json │ │ ├── steam.png │ │ ├── steam@2x.png │ │ └── steam@3x.png ├── Credits.rtf ├── GoogleService-Info.plist ├── Info.plist ├── Localizable.xcstrings ├── Models │ ├── AppLoggerModel.swift │ ├── AppSettingsModel.swift │ ├── BackgroundEventServiceModel.swift │ └── SparkleUpdateControllerModel.swift ├── Mythic.entitlements ├── Mythic.icon │ ├── Assets │ │ ├── Rectangles 1.svg │ │ ├── Rectangles 2.svg │ │ └── Rectangles 3.svg │ └── icon.json ├── MythicApp.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Utilities │ ├── Engine │ │ ├── Engine+Extensions.swift │ │ ├── Engine+UpdateCatalog.swift │ │ └── Engine.swift │ ├── Extensions │ │ ├── Built-in │ │ │ ├── Bool.swift │ │ │ ├── Bundle.swift │ │ │ ├── Color.swift │ │ │ ├── CustomTransform.swift │ │ │ ├── Data.swift │ │ │ ├── FileManager.swift │ │ │ ├── Logger.swift │ │ │ ├── NSApplication.swift │ │ │ ├── NSWindow.swift │ │ │ ├── Process.swift │ │ │ ├── String.swift │ │ │ ├── Task.swift │ │ │ ├── URL.swift │ │ │ ├── UserDefaults.swift │ │ │ ├── View.swift │ │ │ └── Workspace.swift │ │ ├── SemanticVersion+Codable(PropertyList).swift │ │ ├── SemanticVersion+Extensions.swift │ │ └── SwordRPC.swift │ ├── FileLocations.swift │ ├── Game.swift │ ├── Global.swift │ ├── Legendary │ │ ├── LegendaryInterface+Extensions.swift │ │ └── LegendaryInterface.swift │ ├── Local │ │ ├── LocalGames+Extensions.swift │ │ └── LocalGames.swift │ ├── Migrator.swift │ ├── NetworkMonitor.swift │ ├── Rosetta.swift │ ├── Steam │ │ └── Steam.swift │ ├── VariableManager.swift │ └── Wine │ │ ├── WineInterface+Extensions.swift │ │ └── WineInterface.swift ├── Views │ ├── Components │ │ ├── BundleIconView.swift │ │ ├── RichAlertView.swift │ │ └── WindowBlurView.swift │ ├── Navigation │ │ ├── AccountsView.swift │ │ ├── ContainersView.swift │ │ ├── ContentView.swift │ │ ├── DownloadsViewEvo.swift │ │ ├── HomeView.swift │ │ ├── LibraryView.swift │ │ ├── StoreView.swift │ │ └── SupportView.swift │ ├── Onboarding │ │ ├── OnboardingView.swift │ │ └── OnboardingViewModel.swift │ ├── SparkleUpdater │ │ ├── SparkleUpdaterCheckingView.swift │ │ ├── SparkleUpdaterDownloadingView.swift │ │ ├── SparkleUpdaterExtractingView.swift │ │ ├── SparkleUpdaterFinishView.swift │ │ ├── SparkleUpdaterPreviewView.swift │ │ └── SparkleUpdaterSheetViewModifier.swift │ └── Unified │ │ ├── ContainerListView.swift │ │ ├── GameListViewEvo.swift │ │ ├── Models │ │ ├── GameCardVM.swift │ │ └── GameListEvoVM.swift │ │ ├── Modules │ │ ├── DownloadCard.swift │ │ ├── EngineInstallationView.swift │ │ ├── GameCard.swift │ │ ├── GameInstallProgressView.swift │ │ ├── GameList.swift │ │ ├── HeroGameCard.swift │ │ ├── ListGameCard.swift │ │ ├── RosettaInstallationView.swift │ │ ├── StarRatingView.swift │ │ ├── SubscriptedTextView.swift │ │ └── WebView.swift │ │ ├── Sheets │ │ ├── ContainerCreationView.swift │ │ ├── ContainerSettingsView.swift │ │ ├── GameImport │ │ │ ├── EpicImport.swift │ │ │ ├── GameImport.swift │ │ │ └── LocalImport.swift │ │ ├── GameSettingsView.swift │ │ ├── HarmonyRatingView.swift │ │ ├── InstallGameView.swift │ │ ├── InstallStatusView.swift │ │ ├── StopDownloadAlert.swift │ │ └── UninstallGameView.swift │ │ └── Windows │ │ ├── AboutView.swift │ │ ├── EpicWebAuthView.swift │ │ ├── SettingsView.swift │ │ └── SettingsViewEvo.swift ├── WhatsNewCollection.swift ├── exeIcon.icns └── legendary │ ├── _internal │ ├── Python │ ├── Python.framework │ │ ├── Python │ │ ├── Resources │ │ └── Versions │ │ │ ├── 3.13 │ │ │ ├── Python │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ ├── base_library.zip │ ├── certifi │ │ ├── cacert.pem │ │ └── py.typed │ ├── charset_normalizer │ │ ├── md.cpython-313-darwin.so │ │ └── md__mypyc.cpython-313-darwin.so │ ├── lib-dynload │ │ ├── _asyncio.cpython-313-darwin.so │ │ ├── _bisect.cpython-313-darwin.so │ │ ├── _blake2.cpython-313-darwin.so │ │ ├── _bz2.cpython-313-darwin.so │ │ ├── _codecs_cn.cpython-313-darwin.so │ │ ├── _codecs_hk.cpython-313-darwin.so │ │ ├── _codecs_iso2022.cpython-313-darwin.so │ │ ├── _codecs_jp.cpython-313-darwin.so │ │ ├── _codecs_kr.cpython-313-darwin.so │ │ ├── _codecs_tw.cpython-313-darwin.so │ │ ├── _contextvars.cpython-313-darwin.so │ │ ├── _csv.cpython-313-darwin.so │ │ ├── _ctypes.cpython-313-darwin.so │ │ ├── _datetime.cpython-313-darwin.so │ │ ├── _decimal.cpython-313-darwin.so │ │ ├── _hashlib.cpython-313-darwin.so │ │ ├── _heapq.cpython-313-darwin.so │ │ ├── _json.cpython-313-darwin.so │ │ ├── _lzma.cpython-313-darwin.so │ │ ├── _md5.cpython-313-darwin.so │ │ ├── _multibytecodec.cpython-313-darwin.so │ │ ├── _multiprocessing.cpython-313-darwin.so │ │ ├── _opcode.cpython-313-darwin.so │ │ ├── _pickle.cpython-313-darwin.so │ │ ├── _posixshmem.cpython-313-darwin.so │ │ ├── _posixsubprocess.cpython-313-darwin.so │ │ ├── _queue.cpython-313-darwin.so │ │ ├── _random.cpython-313-darwin.so │ │ ├── _scproxy.cpython-313-darwin.so │ │ ├── _sha1.cpython-313-darwin.so │ │ ├── _sha2.cpython-313-darwin.so │ │ ├── _sha3.cpython-313-darwin.so │ │ ├── _socket.cpython-313-darwin.so │ │ ├── _ssl.cpython-313-darwin.so │ │ ├── _statistics.cpython-313-darwin.so │ │ ├── _struct.cpython-313-darwin.so │ │ ├── _uuid.cpython-313-darwin.so │ │ ├── array.cpython-313-darwin.so │ │ ├── binascii.cpython-313-darwin.so │ │ ├── fcntl.cpython-313-darwin.so │ │ ├── grp.cpython-313-darwin.so │ │ ├── math.cpython-313-darwin.so │ │ ├── mmap.cpython-313-darwin.so │ │ ├── pyexpat.cpython-313-darwin.so │ │ ├── resource.cpython-313-darwin.so │ │ ├── select.cpython-313-darwin.so │ │ ├── termios.cpython-313-darwin.so │ │ ├── unicodedata.cpython-313-darwin.so │ │ └── zlib.cpython-313-darwin.so │ ├── libcrypto.3.dylib │ └── libssl.3.dylib │ └── cli ├── README.md ├── crowdin.yml └── temp.go /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: MythicApp 2 | ko_fi: vapidinfinity 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Mythic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Mythic.xcodeproj/project.pbxproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/project.pbxproj.orig -------------------------------------------------------------------------------- /Mythic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Mythic.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Mythic.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Mythic.xcodeproj/project.xcworkspace/xcuserdata/blackxfiied.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/project.xcworkspace/xcuserdata/blackxfiied.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /Mythic.xcodeproj/project.xcworkspace/xcuserdata/blackxfiied.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/project.xcworkspace/xcuserdata/blackxfiied.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Mythic.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /Mythic.xcodeproj/xcshareddata/xcschemes/Mythic.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/xcshareddata/xcschemes/Mythic.xcscheme -------------------------------------------------------------------------------- /Mythic.xcodeproj/xcuserdata/blackxfiied.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/xcuserdata/blackxfiied.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Mythic.xcodeproj/xcuserdata/blackxfiied.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic.xcodeproj/xcuserdata/blackxfiied.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Mythic/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/AppDelegate.swift -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_1024x1024.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_256x256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_256x256 1.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_32x32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_32x32 1.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_512x512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_512x512 1.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AlphaAppIcon.appiconset/icon_64x64.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/128x128.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/128x128@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/16x16.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/16x16@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/256x256.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/256x256@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/32x32.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/32x32@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/512x512.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/512x512@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_1024.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_128.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_16.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_256 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_256 1.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_256.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_32 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_32 1.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_32.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_512 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_512 1.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_512.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BetaAppIcon.appiconset/icon_64.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BlankAppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BlankAppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/BlankAppIcon.imageset/blank_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/BlankAppIcon.imageset/blank_512x512@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/EGFaceless.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/EGFaceless.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/EGFaceless.imageset/epic_noface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/EGFaceless.imageset/epic_noface.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/EngineIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/EngineIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/EngineIcon.imageset/Engine-GPTKv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/EngineIcon.imageset/Engine-GPTKv2.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/EngineIcon.imageset/Engine-GPTKv2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/EngineIcon.imageset/Engine-GPTKv2@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/EngineIcon.imageset/Engine-GPTKv2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/EngineIcon.imageset/Engine-GPTKv2@3x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Externals/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Externals/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Externals/CrossOver.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Externals/CrossOver.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Externals/CrossOver.imageset/CrossOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Externals/CrossOver.imageset/CrossOver.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Externals/Whisky.imageset/128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Externals/Whisky.imageset/128@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Externals/Whisky.imageset/256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Externals/Whisky.imageset/256@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Externals/Whisky.imageset/512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Externals/Whisky.imageset/512@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Externals/Whisky.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Externals/Whisky.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Harmony+AppIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Harmony+AppIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Harmony+AppIcon.imageset/Mythic + Harmony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Harmony+AppIcon.imageset/Mythic + Harmony.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Harmony+AppIcon.imageset/Mythic + Harmony@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Harmony+AppIcon.imageset/Mythic + Harmony@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Harmony+AppIcon.imageset/Mythic + Harmony@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Harmony+AppIcon.imageset/Mythic + Harmony@3x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/HarmonyIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/HarmonyIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/HarmonyIcon.imageset/Harmony Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/HarmonyIcon.imageset/Harmony Logo.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/HarmonyIcon.imageset/Harmony Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/HarmonyIcon.imageset/Harmony Logo@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/HarmonyIcon.imageset/Harmony Logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/HarmonyIcon.imageset/Harmony Logo@3x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/MythicIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/MythicIcon.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/MythicIcon.imageset/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/MythicIcon.imageset/Default.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/MythicIcon.imageset/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/MythicIcon.imageset/Default@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/MythicIcon.imageset/Default@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/MythicIcon.imageset/Default@3x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/MythicIconFlat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/MythicIconFlat.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/MythicIconFlat.imageset/Property 1=Flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/MythicIconFlat.imageset/Property 1=Flat.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/MythicIconFlat.imageset/Property 1=Flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/MythicIconFlat.imageset/Property 1=Flat@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/MythicIconFlat.imageset/Property 1=Flat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/MythicIconFlat.imageset/Property 1=Flat@3x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Steam.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Steam.imageset/Contents.json -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Steam.imageset/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Steam.imageset/steam.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Steam.imageset/steam@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Steam.imageset/steam@2x.png -------------------------------------------------------------------------------- /Mythic/Assets.xcassets/Steam.imageset/steam@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Assets.xcassets/Steam.imageset/steam@3x.png -------------------------------------------------------------------------------- /Mythic/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Credits.rtf -------------------------------------------------------------------------------- /Mythic/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/GoogleService-Info.plist -------------------------------------------------------------------------------- /Mythic/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Info.plist -------------------------------------------------------------------------------- /Mythic/Localizable.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Localizable.xcstrings -------------------------------------------------------------------------------- /Mythic/Models/AppLoggerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Models/AppLoggerModel.swift -------------------------------------------------------------------------------- /Mythic/Models/AppSettingsModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Models/AppSettingsModel.swift -------------------------------------------------------------------------------- /Mythic/Models/BackgroundEventServiceModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Models/BackgroundEventServiceModel.swift -------------------------------------------------------------------------------- /Mythic/Models/SparkleUpdateControllerModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Models/SparkleUpdateControllerModel.swift -------------------------------------------------------------------------------- /Mythic/Mythic.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Mythic.entitlements -------------------------------------------------------------------------------- /Mythic/Mythic.icon/Assets/Rectangles 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Mythic.icon/Assets/Rectangles 1.svg -------------------------------------------------------------------------------- /Mythic/Mythic.icon/Assets/Rectangles 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Mythic.icon/Assets/Rectangles 2.svg -------------------------------------------------------------------------------- /Mythic/Mythic.icon/Assets/Rectangles 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Mythic.icon/Assets/Rectangles 3.svg -------------------------------------------------------------------------------- /Mythic/Mythic.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Mythic.icon/icon.json -------------------------------------------------------------------------------- /Mythic/MythicApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/MythicApp.swift -------------------------------------------------------------------------------- /Mythic/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Mythic/Utilities/Engine/Engine+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Engine/Engine+Extensions.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Engine/Engine+UpdateCatalog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Engine/Engine+UpdateCatalog.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Engine/Engine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Engine/Engine.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/Bool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/Bool.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/Bundle.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/Color.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/CustomTransform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/CustomTransform.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/Data.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/FileManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/FileManager.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/Logger.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/NSApplication.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/NSApplication.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/NSWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/NSWindow.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/Process.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/Process.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/String.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/Task.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/Task.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/URL.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/UserDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/UserDefaults.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/View.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/Built-in/Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/Built-in/Workspace.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/SemanticVersion+Codable(PropertyList).swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/SemanticVersion+Codable(PropertyList).swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/SemanticVersion+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/SemanticVersion+Extensions.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Extensions/SwordRPC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Extensions/SwordRPC.swift -------------------------------------------------------------------------------- /Mythic/Utilities/FileLocations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/FileLocations.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Game.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Global.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Global.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Legendary/LegendaryInterface+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Legendary/LegendaryInterface+Extensions.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Legendary/LegendaryInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Legendary/LegendaryInterface.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Local/LocalGames+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Local/LocalGames+Extensions.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Local/LocalGames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Local/LocalGames.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Migrator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Migrator.swift -------------------------------------------------------------------------------- /Mythic/Utilities/NetworkMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/NetworkMonitor.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Rosetta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Rosetta.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Steam/Steam.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Steam/Steam.swift -------------------------------------------------------------------------------- /Mythic/Utilities/VariableManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/VariableManager.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Wine/WineInterface+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Wine/WineInterface+Extensions.swift -------------------------------------------------------------------------------- /Mythic/Utilities/Wine/WineInterface.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Utilities/Wine/WineInterface.swift -------------------------------------------------------------------------------- /Mythic/Views/Components/BundleIconView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Components/BundleIconView.swift -------------------------------------------------------------------------------- /Mythic/Views/Components/RichAlertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Components/RichAlertView.swift -------------------------------------------------------------------------------- /Mythic/Views/Components/WindowBlurView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Components/WindowBlurView.swift -------------------------------------------------------------------------------- /Mythic/Views/Navigation/AccountsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Navigation/AccountsView.swift -------------------------------------------------------------------------------- /Mythic/Views/Navigation/ContainersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Navigation/ContainersView.swift -------------------------------------------------------------------------------- /Mythic/Views/Navigation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Navigation/ContentView.swift -------------------------------------------------------------------------------- /Mythic/Views/Navigation/DownloadsViewEvo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Navigation/DownloadsViewEvo.swift -------------------------------------------------------------------------------- /Mythic/Views/Navigation/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Navigation/HomeView.swift -------------------------------------------------------------------------------- /Mythic/Views/Navigation/LibraryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Navigation/LibraryView.swift -------------------------------------------------------------------------------- /Mythic/Views/Navigation/StoreView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Navigation/StoreView.swift -------------------------------------------------------------------------------- /Mythic/Views/Navigation/SupportView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Navigation/SupportView.swift -------------------------------------------------------------------------------- /Mythic/Views/Onboarding/OnboardingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Onboarding/OnboardingView.swift -------------------------------------------------------------------------------- /Mythic/Views/Onboarding/OnboardingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Onboarding/OnboardingViewModel.swift -------------------------------------------------------------------------------- /Mythic/Views/SparkleUpdater/SparkleUpdaterCheckingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/SparkleUpdater/SparkleUpdaterCheckingView.swift -------------------------------------------------------------------------------- /Mythic/Views/SparkleUpdater/SparkleUpdaterDownloadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/SparkleUpdater/SparkleUpdaterDownloadingView.swift -------------------------------------------------------------------------------- /Mythic/Views/SparkleUpdater/SparkleUpdaterExtractingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/SparkleUpdater/SparkleUpdaterExtractingView.swift -------------------------------------------------------------------------------- /Mythic/Views/SparkleUpdater/SparkleUpdaterFinishView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/SparkleUpdater/SparkleUpdaterFinishView.swift -------------------------------------------------------------------------------- /Mythic/Views/SparkleUpdater/SparkleUpdaterPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/SparkleUpdater/SparkleUpdaterPreviewView.swift -------------------------------------------------------------------------------- /Mythic/Views/SparkleUpdater/SparkleUpdaterSheetViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/SparkleUpdater/SparkleUpdaterSheetViewModifier.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/ContainerListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/ContainerListView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/GameListViewEvo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/GameListViewEvo.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Models/GameCardVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Models/GameCardVM.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Models/GameListEvoVM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Models/GameListEvoVM.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/DownloadCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/DownloadCard.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/EngineInstallationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/EngineInstallationView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/GameCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/GameCard.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/GameInstallProgressView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/GameInstallProgressView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/GameList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/GameList.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/HeroGameCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/HeroGameCard.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/ListGameCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/ListGameCard.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/RosettaInstallationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/RosettaInstallationView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/StarRatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/StarRatingView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/SubscriptedTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/SubscriptedTextView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Modules/WebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Modules/WebView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/ContainerCreationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/ContainerCreationView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/ContainerSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/ContainerSettingsView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/GameImport/EpicImport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/GameImport/EpicImport.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/GameImport/GameImport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/GameImport/GameImport.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/GameImport/LocalImport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/GameImport/LocalImport.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/GameSettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/GameSettingsView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/HarmonyRatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/HarmonyRatingView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/InstallGameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/InstallGameView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/InstallStatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/InstallStatusView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/StopDownloadAlert.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/StopDownloadAlert.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Sheets/UninstallGameView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Sheets/UninstallGameView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Windows/AboutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Windows/AboutView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Windows/EpicWebAuthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Windows/EpicWebAuthView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Windows/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/Views/Unified/Windows/SettingsView.swift -------------------------------------------------------------------------------- /Mythic/Views/Unified/Windows/SettingsViewEvo.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mythic/WhatsNewCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/WhatsNewCollection.swift -------------------------------------------------------------------------------- /Mythic/exeIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/exeIcon.icns -------------------------------------------------------------------------------- /Mythic/legendary/_internal/Python: -------------------------------------------------------------------------------- 1 | Python.framework/Versions/3.13/Python -------------------------------------------------------------------------------- /Mythic/legendary/_internal/Python.framework/Python: -------------------------------------------------------------------------------- 1 | Versions/Current/Python -------------------------------------------------------------------------------- /Mythic/legendary/_internal/Python.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Mythic/legendary/_internal/Python.framework/Versions/3.13/Python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/Python.framework/Versions/3.13/Python -------------------------------------------------------------------------------- /Mythic/legendary/_internal/Python.framework/Versions/3.13/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/Python.framework/Versions/3.13/Resources/Info.plist -------------------------------------------------------------------------------- /Mythic/legendary/_internal/Python.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | 3.13 -------------------------------------------------------------------------------- /Mythic/legendary/_internal/base_library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/base_library.zip -------------------------------------------------------------------------------- /Mythic/legendary/_internal/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/certifi/cacert.pem -------------------------------------------------------------------------------- /Mythic/legendary/_internal/certifi/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mythic/legendary/_internal/charset_normalizer/md.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/charset_normalizer/md.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/charset_normalizer/md__mypyc.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/charset_normalizer/md__mypyc.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_asyncio.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_asyncio.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_bisect.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_bisect.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_blake2.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_blake2.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_bz2.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_bz2.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_codecs_cn.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_codecs_cn.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_codecs_hk.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_codecs_hk.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_codecs_iso2022.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_codecs_iso2022.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_codecs_jp.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_codecs_jp.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_codecs_kr.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_codecs_kr.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_codecs_tw.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_codecs_tw.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_contextvars.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_contextvars.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_csv.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_csv.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_ctypes.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_ctypes.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_datetime.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_datetime.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_decimal.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_decimal.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_hashlib.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_hashlib.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_heapq.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_heapq.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_json.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_json.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_lzma.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_lzma.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_md5.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_md5.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_multibytecodec.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_multibytecodec.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_multiprocessing.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_multiprocessing.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_opcode.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_opcode.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_pickle.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_pickle.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_posixshmem.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_posixshmem.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_posixsubprocess.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_posixsubprocess.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_queue.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_queue.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_random.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_random.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_scproxy.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_scproxy.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_sha1.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_sha1.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_sha2.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_sha2.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_sha3.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_sha3.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_socket.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_socket.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_ssl.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_ssl.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_statistics.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_statistics.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_struct.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_struct.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/_uuid.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/_uuid.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/array.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/array.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/binascii.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/binascii.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/fcntl.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/fcntl.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/grp.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/grp.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/math.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/math.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/mmap.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/mmap.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/pyexpat.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/pyexpat.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/resource.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/resource.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/select.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/select.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/termios.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/termios.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/unicodedata.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/unicodedata.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/lib-dynload/zlib.cpython-313-darwin.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/lib-dynload/zlib.cpython-313-darwin.so -------------------------------------------------------------------------------- /Mythic/legendary/_internal/libcrypto.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/libcrypto.3.dylib -------------------------------------------------------------------------------- /Mythic/legendary/_internal/libssl.3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/_internal/libssl.3.dylib -------------------------------------------------------------------------------- /Mythic/legendary/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/Mythic/legendary/cli -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MythicApp/Mythic/HEAD/crowdin.yml -------------------------------------------------------------------------------- /temp.go: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------