├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── suggestion.yml ├── .gitignore ├── .gitmodules ├── BUILD.md ├── CMakeLists.txt ├── COPYING.md ├── README.md ├── branding ├── MultiMC.icns ├── MultiMC.ico ├── MultiMC.manifest ├── genicons.sh ├── logo-discord.svg ├── logo-macos.svg ├── logo.qrc ├── logo.svg └── multimc.rc ├── changelog.md ├── cmake ├── BundleUtilities.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── GetPrerequisites.cmake ├── GitFunctions.cmake ├── MacOSXBundleInfo.plist.in ├── QMakeQuery.cmake ├── UnitTest.cmake ├── UnitTest │ ├── TestUtil.h │ ├── generate_test_data.cmake │ ├── test.manifest │ └── test.rc ├── UseJava.cmake ├── UseJavaClassFilelist.cmake └── UseJavaSymlinks.cmake ├── doc └── multimc.1.txt ├── launcher ├── Application.cpp ├── Application.h ├── ApplicationMessage.cpp ├── ApplicationMessage.h ├── BaseInstaller.cpp ├── BaseInstaller.h ├── BaseInstance.cpp ├── BaseInstance.h ├── BaseVersion.h ├── BaseVersionList.cpp ├── BaseVersionList.h ├── CMakeLists.txt ├── Commandline.cpp ├── Commandline.h ├── DefaultVariable.h ├── DesktopServices.cpp ├── DesktopServices.h ├── Exception.h ├── ExponentialSeries.h ├── FileSystem.cpp ├── FileSystem.h ├── FileSystem_test.cpp ├── Filter.cpp ├── Filter.h ├── GZip.cpp ├── GZip.h ├── GZip_test.cpp ├── HoeDown.h ├── InstanceCopyTask.cpp ├── InstanceCopyTask.h ├── InstanceCreationTask.cpp ├── InstanceCreationTask.h ├── InstanceImportTask.cpp ├── InstanceImportTask.h ├── InstanceList.cpp ├── InstanceList.h ├── InstancePageProvider.h ├── InstanceTask.cpp ├── InstanceTask.h ├── JavaCommon.cpp ├── JavaCommon.h ├── Json.cpp ├── Json.h ├── KonamiCode.cpp ├── KonamiCode.h ├── LaunchController.cpp ├── LaunchController.h ├── Launcher.in ├── LoggedProcess.cpp ├── LoggedProcess.h ├── MMCStrings.cpp ├── MMCStrings.h ├── MMCTime.cpp ├── MMCTime.h ├── MMCZip.cpp ├── MMCZip.h ├── MessageLevel.cpp ├── MessageLevel.h ├── NullInstance.h ├── ProblemProvider.h ├── QObjectPtr.h ├── RWStorage.h ├── RecursiveFileSystemWatcher.cpp ├── RecursiveFileSystemWatcher.h ├── SeparatorPrefixTree.h ├── UpdateController.cpp ├── UpdateController.h ├── Usable.h ├── Version.cpp ├── Version.h ├── VersionProxyModel.cpp ├── VersionProxyModel.h ├── Version_test.cpp ├── WatchLock.h ├── icons │ ├── IconList.cpp │ ├── IconList.h │ ├── IconUtils.cpp │ ├── IconUtils.h │ ├── MMCIcon.cpp │ └── MMCIcon.h ├── install_prereqs.cmake.in ├── java │ ├── JavaChecker.cpp │ ├── JavaChecker.h │ ├── JavaCheckerJob.cpp │ ├── JavaCheckerJob.h │ ├── JavaInstall.cpp │ ├── JavaInstall.h │ ├── JavaInstallList.cpp │ ├── JavaInstallList.h │ ├── JavaUtils.cpp │ ├── JavaUtils.h │ ├── JavaVersion.cpp │ ├── JavaVersion.h │ └── JavaVersion_test.cpp ├── launch │ ├── LaunchStep.cpp │ ├── LaunchStep.h │ ├── LaunchTask.cpp │ ├── LaunchTask.h │ ├── LogModel.cpp │ ├── LogModel.h │ └── steps │ │ ├── CheckJava.cpp │ │ ├── CheckJava.h │ │ ├── LookupServerAddress.cpp │ │ ├── LookupServerAddress.h │ │ ├── PostLaunchCommand.cpp │ │ ├── PostLaunchCommand.h │ │ ├── PreLaunchCommand.cpp │ │ ├── PreLaunchCommand.h │ │ ├── TextPrint.cpp │ │ ├── TextPrint.h │ │ ├── Update.cpp │ │ └── Update.h ├── main.cpp ├── meta │ ├── BaseEntity.cpp │ ├── BaseEntity.h │ ├── Index.cpp │ ├── Index.h │ ├── Index_test.cpp │ ├── JsonFormat.cpp │ ├── JsonFormat.h │ ├── Version.cpp │ ├── Version.h │ ├── VersionList.cpp │ └── VersionList.h ├── minecraft │ ├── AssetsUtils.cpp │ ├── AssetsUtils.h │ ├── Component.cpp │ ├── Component.h │ ├── ComponentUpdateTask.cpp │ ├── ComponentUpdateTask.h │ ├── ComponentUpdateTask_p.h │ ├── GradleSpecifier.h │ ├── GradleSpecifier_test.cpp │ ├── LaunchProfile.cpp │ ├── LaunchProfile.h │ ├── Library.cpp │ ├── Library.h │ ├── Library_test.cpp │ ├── MinecraftInstance.cpp │ ├── MinecraftInstance.h │ ├── MinecraftLoadAndCheck.cpp │ ├── MinecraftLoadAndCheck.h │ ├── MinecraftUpdate.cpp │ ├── MinecraftUpdate.h │ ├── MojangDownloadInfo.h │ ├── MojangVersionFormat.cpp │ ├── MojangVersionFormat.h │ ├── MojangVersionFormat_test.cpp │ ├── OneSixVersionFormat.cpp │ ├── OneSixVersionFormat.h │ ├── OpSys.cpp │ ├── OpSys.h │ ├── PackProfile.cpp │ ├── PackProfile.h │ ├── PackProfile_p.h │ ├── ParseUtils.cpp │ ├── ParseUtils.h │ ├── ParseUtils_test.cpp │ ├── ProfileUtils.cpp │ ├── ProfileUtils.h │ ├── Rule.cpp │ ├── Rule.h │ ├── VersionFile.cpp │ ├── VersionFile.h │ ├── VersionFilterData.cpp │ ├── VersionFilterData.h │ ├── World.cpp │ ├── World.h │ ├── WorldList.cpp │ ├── WorldList.h │ ├── auth │ │ ├── AccountData.cpp │ │ ├── AccountData.h │ │ ├── AccountList.cpp │ │ ├── AccountList.h │ │ ├── AccountTask.cpp │ │ ├── AccountTask.h │ │ ├── AuthRequest.cpp │ │ ├── AuthRequest.h │ │ ├── AuthSession.cpp │ │ ├── AuthSession.h │ │ ├── AuthStep.cpp │ │ ├── AuthStep.h │ │ ├── MinecraftAccount.cpp │ │ ├── MinecraftAccount.h │ │ ├── Parsers.cpp │ │ ├── Parsers.h │ │ ├── flows │ │ │ ├── AuthFlow.cpp │ │ │ ├── AuthFlow.h │ │ │ ├── MSA.cpp │ │ │ └── MSA.h │ │ └── steps │ │ │ ├── EntitlementsStep.cpp │ │ │ ├── EntitlementsStep.h │ │ │ ├── GetSkinStep.cpp │ │ │ ├── GetSkinStep.h │ │ │ ├── LauncherLoginStep.cpp │ │ │ ├── LauncherLoginStep.h │ │ │ ├── MSAStep.cpp │ │ │ ├── MSAStep.h │ │ │ ├── MinecraftProfileCreateStep.cpp │ │ │ ├── MinecraftProfileCreateStep.h │ │ │ ├── MinecraftProfileStep.cpp │ │ │ ├── MinecraftProfileStep.h │ │ │ ├── SetCapeStep.cpp │ │ │ ├── SetCapeStep.h │ │ │ ├── SetSkinStep.cpp │ │ │ ├── SetSkinStep.h │ │ │ ├── XboxAuthorizationStep.cpp │ │ │ ├── XboxAuthorizationStep.h │ │ │ ├── XboxProfileStep.cpp │ │ │ ├── XboxProfileStep.h │ │ │ ├── XboxUserStep.cpp │ │ │ └── XboxUserStep.h │ ├── gameoptions │ │ ├── GameOptions.cpp │ │ └── GameOptions.h │ ├── launch │ │ ├── ClaimAccount.cpp │ │ ├── ClaimAccount.h │ │ ├── CreateGameFolders.cpp │ │ ├── CreateGameFolders.h │ │ ├── DirectJavaLaunch.cpp │ │ ├── DirectJavaLaunch.h │ │ ├── ExtractNatives.cpp │ │ ├── ExtractNatives.h │ │ ├── LauncherPartLaunch.cpp │ │ ├── LauncherPartLaunch.h │ │ ├── ModMinecraftJar.cpp │ │ ├── ModMinecraftJar.h │ │ ├── PrintInstanceInfo.cpp │ │ ├── PrintInstanceInfo.h │ │ ├── QuickPlayTarget.cpp │ │ ├── QuickPlayTarget.h │ │ ├── ReconstructAssets.cpp │ │ ├── ReconstructAssets.h │ │ ├── ScanModFolders.cpp │ │ ├── ScanModFolders.h │ │ ├── VerifyJavaInstall.cpp │ │ └── VerifyJavaInstall.h │ ├── legacy │ │ ├── LegacyInstance.cpp │ │ ├── LegacyInstance.h │ │ ├── LegacyModList.cpp │ │ ├── LegacyModList.h │ │ ├── LegacyUpgradeTask.cpp │ │ └── LegacyUpgradeTask.h │ ├── mod │ │ ├── LocalModParseTask.cpp │ │ ├── LocalModParseTask.h │ │ ├── Mod.cpp │ │ ├── Mod.h │ │ ├── ModDetails.h │ │ ├── ModFolderLoadTask.cpp │ │ ├── ModFolderLoadTask.h │ │ ├── ModFolderModel.cpp │ │ ├── ModFolderModel.h │ │ ├── ModFolderModel_test.cpp │ │ ├── ResourcePackFolderModel.cpp │ │ ├── ResourcePackFolderModel.h │ │ ├── TexturePackFolderModel.cpp │ │ └── TexturePackFolderModel.h │ ├── testdata │ │ ├── 1.9-simple.json │ │ ├── 1.9.json │ │ ├── codecwav-20101023.jar │ │ ├── lib-native-arch.json │ │ ├── lib-native.json │ │ ├── lib-simple.json │ │ └── testname-testversion-linux-32.jar │ └── update │ │ ├── AssetUpdateTask.cpp │ │ ├── AssetUpdateTask.h │ │ ├── FMLLibrariesTask.cpp │ │ ├── FMLLibrariesTask.h │ │ ├── FoldersTask.cpp │ │ ├── FoldersTask.h │ │ ├── LibrariesTask.cpp │ │ └── LibrariesTask.h ├── modplatform │ ├── atlauncher │ │ ├── ATLPackIndex.cpp │ │ ├── ATLPackIndex.h │ │ ├── ATLPackInstallTask.cpp │ │ ├── ATLPackInstallTask.h │ │ ├── ATLPackManifest.cpp │ │ └── ATLPackManifest.h │ ├── legacy_ftb │ │ ├── PackFetchTask.cpp │ │ ├── PackFetchTask.h │ │ ├── PackHelpers.h │ │ ├── PackInstallTask.cpp │ │ ├── PackInstallTask.h │ │ ├── PrivatePackManager.cpp │ │ └── PrivatePackManager.h │ ├── modrinth │ │ ├── ModrinthHashLookupRequest.cpp │ │ ├── ModrinthHashLookupRequest.h │ │ ├── ModrinthInstanceExportTask.cpp │ │ ├── ModrinthInstanceExportTask.h │ │ ├── ModrinthPackManifest.cpp │ │ └── ModrinthPackManifest.h │ └── technic │ │ ├── SingleZipPackInstallTask.cpp │ │ ├── SingleZipPackInstallTask.h │ │ ├── SolderPackInstallTask.cpp │ │ ├── SolderPackInstallTask.h │ │ ├── SolderPackManifest.cpp │ │ ├── SolderPackManifest.h │ │ ├── TechnicPackProcessor.cpp │ │ └── TechnicPackProcessor.h ├── mojang │ ├── PackageManifest.cpp │ ├── PackageManifest.h │ ├── PackageManifest_test.cpp │ └── testdata │ │ ├── 1.8.0_202-x64.json │ │ ├── inspect │ │ └── a │ │ │ ├── b.txt │ │ │ └── b │ │ │ └── b.txt │ │ └── inspect_win │ │ └── a │ │ ├── b.txt │ │ └── b │ │ └── b.txt ├── net │ ├── ByteArraySink.h │ ├── ChecksumValidator.h │ ├── Download.cpp │ ├── Download.h │ ├── FileSink.cpp │ ├── FileSink.h │ ├── HttpMetaCache.cpp │ ├── HttpMetaCache.h │ ├── MetaCacheSink.cpp │ ├── MetaCacheSink.h │ ├── Mode.h │ ├── NetAction.h │ ├── NetJob.cpp │ ├── NetJob.h │ ├── PasteUpload.cpp │ ├── PasteUpload.h │ ├── Sink.h │ └── Validator.h ├── news │ ├── NewsChecker.cpp │ ├── NewsChecker.h │ ├── NewsEntry.cpp │ └── NewsEntry.h ├── notifications │ ├── NotificationChecker.cpp │ └── NotificationChecker.h ├── package │ ├── rpm │ │ ├── MultiMC5.spec │ │ └── README.md │ └── ubuntu │ │ ├── README.md │ │ └── multimc │ │ ├── DEBIAN │ │ ├── control │ │ └── postrm │ │ ├── opt │ │ └── multimc │ │ │ ├── icon.svg │ │ │ └── run.sh │ │ └── usr │ │ └── share │ │ ├── applications │ │ └── multimc.desktop │ │ ├── man │ │ └── man1 │ │ │ └── multimc.1 │ │ └── metainfo │ │ └── multimc.metainfo.xml ├── pathmatcher │ ├── FSTreeMatcher.h │ ├── IPathMatcher.h │ ├── MultiMatcher.h │ └── RegexpMatcher.h ├── resources │ ├── OSX │ │ ├── OSX.qrc │ │ ├── index.theme │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── assets │ │ └── underconstruction.png │ ├── backgrounds │ │ ├── backgrounds.qrc │ │ ├── catbgrnd2.png │ │ ├── catmas.png │ │ └── cattiversary.png │ ├── documents │ │ └── documents.qrc │ ├── flat │ │ ├── flat.qrc │ │ ├── index.theme │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── cat.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── discord.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── multimc.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── packages.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── quickmods.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── refresh.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshot-placeholder.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── star.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-running.svg │ │ │ ├── status-yellow.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── iOS │ │ ├── iOS.qrc │ │ ├── index.theme │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── multimc.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── multimc │ │ ├── 128x128 │ │ │ ├── instances │ │ │ │ ├── chicken.png │ │ │ │ ├── creeper.png │ │ │ │ ├── enderpearl.png │ │ │ │ ├── flame.png │ │ │ │ ├── ftb_glow.png │ │ │ │ ├── ftb_logo.png │ │ │ │ ├── gear.png │ │ │ │ ├── herobrine.png │ │ │ │ ├── infinity.png │ │ │ │ ├── magitech.png │ │ │ │ ├── meat.png │ │ │ │ ├── netherstar.png │ │ │ │ ├── skeleton.png │ │ │ │ ├── squarecreeper.png │ │ │ │ └── steve.png │ │ │ ├── shaderpacks.png │ │ │ └── unknown_server.png │ │ ├── 16x16 │ │ │ ├── about.png │ │ │ ├── bug.png │ │ │ ├── cat.png │ │ │ ├── centralmods.png │ │ │ ├── checkupdate.png │ │ │ ├── copy.png │ │ │ ├── coremods.png │ │ │ ├── help.png │ │ │ ├── instance-settings.png │ │ │ ├── jarmods.png │ │ │ ├── loadermods.png │ │ │ ├── log.png │ │ │ ├── minecraft.png │ │ │ ├── new.png │ │ │ ├── news.png │ │ │ ├── noaccount.png │ │ │ ├── patreon.png │ │ │ ├── refresh.png │ │ │ ├── resourcepacks.png │ │ │ ├── screenshots.png │ │ │ ├── settings.png │ │ │ ├── star.png │ │ │ ├── status-bad.png │ │ │ ├── status-good.png │ │ │ ├── status-running.png │ │ │ ├── status-yellow.png │ │ │ ├── viewfolder.png │ │ │ └── worlds.png │ │ ├── 22x22 │ │ │ ├── about.png │ │ │ ├── bug.png │ │ │ ├── cat.png │ │ │ ├── centralmods.png │ │ │ ├── checkupdate.png │ │ │ ├── copy.png │ │ │ ├── help.png │ │ │ ├── instance-settings.png │ │ │ ├── new.png │ │ │ ├── news.png │ │ │ ├── patreon.png │ │ │ ├── refresh.png │ │ │ ├── screenshots.png │ │ │ ├── settings.png │ │ │ ├── status-bad.png │ │ │ ├── status-good.png │ │ │ ├── status-running.png │ │ │ ├── status-yellow.png │ │ │ ├── viewfolder.png │ │ │ └── worlds.png │ │ ├── 24x24 │ │ │ ├── cat.png │ │ │ ├── coremods.png │ │ │ ├── jarmods.png │ │ │ ├── loadermods.png │ │ │ ├── log.png │ │ │ ├── minecraft.png │ │ │ ├── noaccount.png │ │ │ ├── patreon.png │ │ │ ├── resourcepacks.png │ │ │ ├── star.png │ │ │ ├── status-bad.png │ │ │ ├── status-good.png │ │ │ ├── status-running.png │ │ │ └── status-yellow.png │ │ ├── 256x256 │ │ │ └── minecraft.png │ │ ├── 32x32 │ │ │ ├── about.png │ │ │ ├── bug.png │ │ │ ├── cat.png │ │ │ ├── centralmods.png │ │ │ ├── checkupdate.png │ │ │ ├── copy.png │ │ │ ├── coremods.png │ │ │ ├── help.png │ │ │ ├── instance-settings.png │ │ │ ├── instances │ │ │ │ ├── brick.png │ │ │ │ ├── chicken.png │ │ │ │ ├── creeper.png │ │ │ │ ├── diamond.png │ │ │ │ ├── dirt.png │ │ │ │ ├── enderpearl.png │ │ │ │ ├── flame.png │ │ │ │ ├── ftb_glow.png │ │ │ │ ├── ftb_logo.png │ │ │ │ ├── gear.png │ │ │ │ ├── gold.png │ │ │ │ ├── grass.png │ │ │ │ ├── herobrine.png │ │ │ │ ├── infinity.png │ │ │ │ ├── iron.png │ │ │ │ ├── magitech.png │ │ │ │ ├── meat.png │ │ │ │ ├── netherstar.png │ │ │ │ ├── planks.png │ │ │ │ ├── skeleton.png │ │ │ │ ├── squarecreeper.png │ │ │ │ ├── steve.png │ │ │ │ ├── stone.png │ │ │ │ └── tnt.png │ │ │ ├── jarmods.png │ │ │ ├── loadermods.png │ │ │ ├── log.png │ │ │ ├── minecraft.png │ │ │ ├── new.png │ │ │ ├── news.png │ │ │ ├── noaccount.png │ │ │ ├── patreon.png │ │ │ ├── refresh.png │ │ │ ├── resourcepacks.png │ │ │ ├── screenshots.png │ │ │ ├── settings.png │ │ │ ├── star.png │ │ │ ├── status-bad.png │ │ │ ├── status-good.png │ │ │ ├── status-running.png │ │ │ ├── status-yellow.png │ │ │ ├── viewfolder.png │ │ │ └── worlds.png │ │ ├── 48x48 │ │ │ ├── about.png │ │ │ ├── bug.png │ │ │ ├── cat.png │ │ │ ├── centralmods.png │ │ │ ├── checkupdate.png │ │ │ ├── copy.png │ │ │ ├── help.png │ │ │ ├── instance-settings.png │ │ │ ├── log.png │ │ │ ├── minecraft.png │ │ │ ├── new.png │ │ │ ├── news.png │ │ │ ├── noaccount.png │ │ │ ├── patreon.png │ │ │ ├── refresh.png │ │ │ ├── screenshots.png │ │ │ ├── settings.png │ │ │ ├── star.png │ │ │ ├── status-bad.png │ │ │ ├── status-good.png │ │ │ ├── status-running.png │ │ │ ├── status-yellow.png │ │ │ ├── viewfolder.png │ │ │ └── worlds.png │ │ ├── 50x50 │ │ │ └── instances │ │ │ │ └── enderman.png │ │ ├── 64x64 │ │ │ ├── about.png │ │ │ ├── bug.png │ │ │ ├── cat.png │ │ │ ├── centralmods.png │ │ │ ├── checkupdate.png │ │ │ ├── copy.png │ │ │ ├── coremods.png │ │ │ ├── help.png │ │ │ ├── instance-settings.png │ │ │ ├── jarmods.png │ │ │ ├── loadermods.png │ │ │ ├── log.png │ │ │ ├── new.png │ │ │ ├── news.png │ │ │ ├── patreon.png │ │ │ ├── refresh.png │ │ │ ├── resourcepacks.png │ │ │ ├── screenshots.png │ │ │ ├── settings.png │ │ │ ├── star.png │ │ │ ├── status-bad.png │ │ │ ├── status-good.png │ │ │ ├── status-running.png │ │ │ ├── status-yellow.png │ │ │ ├── viewfolder.png │ │ │ └── worlds.png │ │ ├── 8x8 │ │ │ └── noaccount.png │ │ ├── index.theme │ │ ├── multimc.qrc │ │ └── scalable │ │ │ ├── atlauncher-placeholder.png │ │ │ ├── atlauncher.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── custom-commands.svg │ │ │ ├── discord.svg │ │ │ ├── instances │ │ │ ├── bee.svg │ │ │ └── fox.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── modrinth.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── proxy.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── screenshot-placeholder.svg │ │ │ ├── screenshots.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-running.svg │ │ │ ├── status-yellow.svg │ │ │ ├── technic.svg │ │ │ └── viewfolder.svg │ ├── pe_blue │ │ ├── index.theme │ │ ├── pe_blue.qrc │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── pe_colored │ │ ├── index.theme │ │ ├── pe_colored.qrc │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── pe_dark │ │ ├── index.theme │ │ ├── pe_dark.qrc │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── pe_light │ │ ├── index.theme │ │ ├── pe_light.qrc │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── skins │ │ ├── shaders │ │ │ ├── bg.frag │ │ │ ├── bg.vert │ │ │ ├── skin.frag │ │ │ └── skin.vert │ │ ├── skins.qrc │ │ └── textures │ │ │ ├── Alex_Classic.png │ │ │ ├── Alex_Slim.png │ │ │ ├── Ari_Classic.png │ │ │ ├── Ari_Slim.png │ │ │ ├── Efe_Classic.png │ │ │ ├── Efe_Slim.png │ │ │ ├── Kai_Classic.png │ │ │ ├── Kai_Slim.png │ │ │ ├── Makena_Classic.png │ │ │ ├── Makena_Slim.png │ │ │ ├── Noor_Classic.png │ │ │ ├── Noor_Slim.png │ │ │ ├── Steve_Classic.png │ │ │ ├── Steve_Slim.png │ │ │ ├── Sunny_Classic.png │ │ │ ├── Sunny_Slim.png │ │ │ ├── Zuri_Classic.png │ │ │ ├── Zuri_Slim.png │ │ │ ├── no_cape.png │ │ │ ├── placeholder_cape.png │ │ │ └── placeholder_skin.png │ └── sources │ │ ├── burfcat_hat.png │ │ ├── cattiversary.xcf │ │ ├── clucker.svg │ │ ├── creeper.svg │ │ ├── enderpearl.svg │ │ ├── flame.svg │ │ ├── ftb-glow.svg │ │ ├── ftb-logo.svg │ │ ├── gear.svg │ │ ├── herobrine.svg │ │ ├── magitech.svg │ │ ├── meat.svg │ │ ├── netherstar.svg │ │ ├── pskeleton.svg │ │ ├── skeleton.svg │ │ ├── squarecreeper.svg │ │ └── steve.svg ├── screenshots │ ├── ImgurAlbumCreation.cpp │ ├── ImgurAlbumCreation.h │ ├── ImgurUpload.cpp │ ├── ImgurUpload.h │ └── Screenshot.h ├── settings │ ├── INIFile.cpp │ ├── INIFile.h │ ├── INIFile_test.cpp │ ├── INISettingsObject.cpp │ ├── INISettingsObject.h │ ├── OverrideSetting.cpp │ ├── OverrideSetting.h │ ├── PassthroughSetting.cpp │ ├── PassthroughSetting.h │ ├── Setting.cpp │ ├── Setting.h │ ├── SettingsObject.cpp │ └── SettingsObject.h ├── skins │ ├── CapeCache.cpp │ ├── CapeCache.h │ ├── CapesModel.cpp │ ├── CapesModel.h │ ├── SkinRenderer.cpp │ ├── SkinRenderer.h │ ├── SkinTypes.cpp │ ├── SkinTypes.h │ ├── SkinUtils.cpp │ ├── SkinUtils.h │ ├── SkinWidget.cpp │ ├── SkinWidget.h │ ├── SkinsModel.cpp │ ├── SkinsModel.h │ ├── TextureMappings.cpp │ └── TextureMappings.h ├── tasks │ ├── SequentialTask.cpp │ ├── SequentialTask.h │ ├── Task.cpp │ └── Task.h ├── testdata │ ├── FileSystem-test_createShortcut-unix │ └── test_folder │ │ ├── assets │ │ └── minecraft │ │ │ └── textures │ │ │ └── blah.txt │ │ ├── pack.mcmeta │ │ └── pack.nfo ├── tools │ ├── BaseExternalTool.cpp │ ├── BaseExternalTool.h │ ├── BaseProfiler.cpp │ ├── BaseProfiler.h │ ├── JProfiler.cpp │ ├── JProfiler.h │ ├── JVisualVM.cpp │ ├── JVisualVM.h │ ├── MCEditTool.cpp │ └── MCEditTool.h ├── translations │ ├── POTranslator.cpp │ ├── POTranslator.h │ ├── TranslationsModel.cpp │ └── TranslationsModel.h ├── ui │ ├── ColorCache.cpp │ ├── ColorCache.h │ ├── GuiUtil.cpp │ ├── GuiUtil.h │ ├── InstanceWindow.cpp │ ├── InstanceWindow.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── dialogs │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.h │ │ ├── AboutDialog.ui │ │ ├── AccountsDialog.cpp │ │ ├── AccountsDialog.h │ │ ├── AccountsDialog.ui │ │ ├── CopyInstanceDialog.cpp │ │ ├── CopyInstanceDialog.h │ │ ├── CopyInstanceDialog.ui │ │ ├── CreateShortcutDialog.cpp │ │ ├── CreateShortcutDialog.h │ │ ├── CreateShortcutDialog.ui │ │ ├── CustomMessageBox.cpp │ │ ├── CustomMessageBox.h │ │ ├── ExportInstanceDialog.cpp │ │ ├── ExportInstanceDialog.h │ │ ├── ExportInstanceDialog.ui │ │ ├── IconPickerDialog.cpp │ │ ├── IconPickerDialog.h │ │ ├── IconPickerDialog.ui │ │ ├── ModrinthExportDialog.cpp │ │ ├── ModrinthExportDialog.h │ │ ├── ModrinthExportDialog.ui │ │ ├── NewComponentDialog.cpp │ │ ├── NewComponentDialog.h │ │ ├── NewComponentDialog.ui │ │ ├── NewInstanceDialog.cpp │ │ ├── NewInstanceDialog.h │ │ ├── NewInstanceDialog.ui │ │ ├── NotificationDialog.cpp │ │ ├── NotificationDialog.h │ │ ├── NotificationDialog.ui │ │ ├── OfflineNameDialog.cpp │ │ ├── OfflineNameDialog.h │ │ ├── ProfileSelectDialog.cpp │ │ ├── ProfileSelectDialog.h │ │ ├── ProfileSelectDialog.ui │ │ ├── ProgressDialog.cpp │ │ ├── ProgressDialog.h │ │ ├── ProgressDialog.ui │ │ ├── UpdateDialog.cpp │ │ ├── UpdateDialog.h │ │ ├── UpdateDialog.ui │ │ ├── VersionSelectDialog.cpp │ │ └── VersionSelectDialog.h │ ├── instanceview │ │ ├── AccessibleInstanceView.cpp │ │ ├── AccessibleInstanceView.h │ │ ├── AccessibleInstanceView_p.h │ │ ├── InstanceDelegate.cpp │ │ ├── InstanceDelegate.h │ │ ├── InstanceProxyModel.cpp │ │ ├── InstanceProxyModel.h │ │ ├── InstanceView.cpp │ │ ├── InstanceView.h │ │ ├── VisualGroup.cpp │ │ └── VisualGroup.h │ ├── pagedialog │ │ ├── PageDialog.cpp │ │ └── PageDialog.h │ ├── pages │ │ ├── BasePage.h │ │ ├── BasePageContainer.h │ │ ├── BasePageProvider.h │ │ ├── global │ │ │ ├── CustomCommandsPage.cpp │ │ │ ├── CustomCommandsPage.h │ │ │ ├── ExternalToolsPage.cpp │ │ │ ├── ExternalToolsPage.h │ │ │ ├── ExternalToolsPage.ui │ │ │ ├── JavaPage.cpp │ │ │ ├── JavaPage.h │ │ │ ├── JavaPage.ui │ │ │ ├── LanguagePage.cpp │ │ │ ├── LanguagePage.h │ │ │ ├── LauncherPage.cpp │ │ │ ├── LauncherPage.h │ │ │ ├── LauncherPage.ui │ │ │ ├── MinecraftPage.cpp │ │ │ ├── MinecraftPage.h │ │ │ ├── MinecraftPage.ui │ │ │ ├── PasteEEPage.cpp │ │ │ ├── PasteEEPage.h │ │ │ ├── PasteEEPage.ui │ │ │ ├── ProxyPage.cpp │ │ │ ├── ProxyPage.h │ │ │ └── ProxyPage.ui │ │ ├── instance │ │ │ ├── GameOptionsPage.cpp │ │ │ ├── GameOptionsPage.h │ │ │ ├── GameOptionsPage.ui │ │ │ ├── InstanceSettingsPage.cpp │ │ │ ├── InstanceSettingsPage.h │ │ │ ├── InstanceSettingsPage.ui │ │ │ ├── LegacyUpgradePage.cpp │ │ │ ├── LegacyUpgradePage.h │ │ │ ├── LegacyUpgradePage.ui │ │ │ ├── LogPage.cpp │ │ │ ├── LogPage.h │ │ │ ├── LogPage.ui │ │ │ ├── ModFolderPage.cpp │ │ │ ├── ModFolderPage.h │ │ │ ├── ModFolderPage.ui │ │ │ ├── NotesPage.cpp │ │ │ ├── NotesPage.h │ │ │ ├── NotesPage.ui │ │ │ ├── OtherLogsPage.cpp │ │ │ ├── OtherLogsPage.h │ │ │ ├── OtherLogsPage.ui │ │ │ ├── ResourcePackPage.h │ │ │ ├── ScreenshotsPage.cpp │ │ │ ├── ScreenshotsPage.h │ │ │ ├── ScreenshotsPage.ui │ │ │ ├── ServersPage.cpp │ │ │ ├── ServersPage.h │ │ │ ├── ServersPage.ui │ │ │ ├── ShaderPackPage.h │ │ │ ├── TexturePackPage.h │ │ │ ├── VersionPage.cpp │ │ │ ├── VersionPage.h │ │ │ ├── VersionPage.ui │ │ │ ├── WorldListPage.cpp │ │ │ ├── WorldListPage.h │ │ │ └── WorldListPage.ui │ │ └── modplatform │ │ │ ├── ImportPage.cpp │ │ │ ├── ImportPage.h │ │ │ ├── ImportPage.ui │ │ │ ├── VanillaPage.cpp │ │ │ ├── VanillaPage.h │ │ │ ├── VanillaPage.ui │ │ │ ├── atlauncher │ │ │ ├── AtlFilterModel.cpp │ │ │ ├── AtlFilterModel.h │ │ │ ├── AtlListModel.cpp │ │ │ ├── AtlListModel.h │ │ │ ├── AtlOptionalModDialog.cpp │ │ │ ├── AtlOptionalModDialog.h │ │ │ ├── AtlOptionalModDialog.ui │ │ │ ├── AtlPage.cpp │ │ │ ├── AtlPage.h │ │ │ └── AtlPage.ui │ │ │ ├── import_ftb │ │ │ ├── FTBAPage.cpp │ │ │ ├── FTBAPage.h │ │ │ ├── FTBAPage.ui │ │ │ ├── Model.cpp │ │ │ ├── Model.h │ │ │ ├── PackInstallTask.cpp │ │ │ └── PackInstallTask.h │ │ │ ├── legacy_ftb │ │ │ ├── ListModel.cpp │ │ │ ├── ListModel.h │ │ │ ├── Page.cpp │ │ │ ├── Page.h │ │ │ └── Page.ui │ │ │ ├── modrinth │ │ │ ├── ModrinthData.h │ │ │ ├── ModrinthDocument.cpp │ │ │ ├── ModrinthDocument.h │ │ │ ├── ModrinthModel.cpp │ │ │ ├── ModrinthModel.h │ │ │ ├── ModrinthPage.cpp │ │ │ ├── ModrinthPage.h │ │ │ └── ModrinthPage.ui │ │ │ └── technic │ │ │ ├── TechnicData.h │ │ │ ├── TechnicModel.cpp │ │ │ ├── TechnicModel.h │ │ │ ├── TechnicPage.cpp │ │ │ ├── TechnicPage.h │ │ │ └── TechnicPage.ui │ ├── setupwizard │ │ ├── BaseWizardPage.h │ │ ├── JavaWizardPage.cpp │ │ ├── JavaWizardPage.h │ │ ├── LanguageWizardPage.cpp │ │ ├── LanguageWizardPage.h │ │ ├── SetupWizard.cpp │ │ └── SetupWizard.h │ ├── themes │ │ ├── BrightTheme.cpp │ │ ├── BrightTheme.h │ │ ├── CustomTheme.cpp │ │ ├── CustomTheme.h │ │ ├── DarkTheme.cpp │ │ ├── DarkTheme.h │ │ ├── FusionTheme.cpp │ │ ├── FusionTheme.h │ │ ├── ITheme.cpp │ │ ├── ITheme.h │ │ ├── SystemTheme.cpp │ │ └── SystemTheme.h │ └── widgets │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── CustomCommands.cpp │ │ ├── CustomCommands.h │ │ ├── CustomCommands.ui │ │ ├── DropLabel.cpp │ │ ├── DropLabel.h │ │ ├── ErrorFrame.cpp │ │ ├── ErrorFrame.h │ │ ├── ErrorFrame.ui │ │ ├── FocusLineEdit.cpp │ │ ├── FocusLineEdit.h │ │ ├── IconLabel.cpp │ │ ├── IconLabel.h │ │ ├── InstanceCardWidget.ui │ │ ├── JavaSettingsWidget.cpp │ │ ├── JavaSettingsWidget.h │ │ ├── LabeledToolButton.cpp │ │ ├── LabeledToolButton.h │ │ ├── LanguageSelectionWidget.cpp │ │ ├── LanguageSelectionWidget.h │ │ ├── LineSeparator.cpp │ │ ├── LineSeparator.h │ │ ├── LogView.cpp │ │ ├── LogView.h │ │ ├── MCModInfoFrame.cpp │ │ ├── MCModInfoFrame.h │ │ ├── MCModInfoFrame.ui │ │ ├── ModListView.cpp │ │ ├── ModListView.h │ │ ├── PageContainer.cpp │ │ ├── PageContainer.h │ │ ├── PageContainer_p.h │ │ ├── ProgressWidget.cpp │ │ ├── ProgressWidget.h │ │ ├── VersionListView.cpp │ │ ├── VersionListView.h │ │ ├── VersionSelectWidget.cpp │ │ ├── VersionSelectWidget.h │ │ ├── WideBar.cpp │ │ ├── WideBar.h │ │ ├── WrapLabel.cpp │ │ └── WrapLabel.h └── updater │ ├── DownloadTask.cpp │ ├── DownloadTask.h │ ├── DownloadTask_test.cpp │ ├── GoUpdate.cpp │ ├── GoUpdate.h │ ├── UpdateChecker.cpp │ ├── UpdateChecker.h │ ├── UpdateChecker_test.cpp │ └── testdata │ ├── 1.json │ ├── 2.json │ ├── channels.json │ ├── errorChannels.json │ ├── fileOneA │ ├── fileOneB │ ├── fileThree │ ├── fileTwo │ ├── garbageChannels.json │ ├── index.json │ ├── noChannels.json │ ├── oneChannel.json │ └── tst_DownloadTask-test_writeInstallScript.xml └── libraries ├── LocalPeer ├── CMakeLists.txt ├── include │ └── LocalPeer.h └── src │ ├── LocalPeer.cpp │ ├── LockedFile.cpp │ ├── LockedFile.h │ ├── LockedFile_unix.cpp │ └── LockedFile_win.cpp ├── README.md ├── classparser ├── CMakeLists.txt ├── include │ ├── classparser.h │ └── classparser_config.h └── src │ ├── annotations.cpp │ ├── annotations.h │ ├── classfile.h │ ├── classparser.cpp │ ├── constants.h │ ├── errors.h │ ├── javaendian.h │ └── membuffer.h ├── hoedown ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include │ └── hoedown │ │ ├── autolink.h │ │ ├── buffer.h │ │ ├── document.h │ │ ├── escape.h │ │ ├── html.h │ │ ├── stack.h │ │ └── version.h └── src │ ├── autolink.c │ ├── buffer.c │ ├── document.c │ ├── escape.c │ ├── html.c │ ├── html_blocks.c │ ├── html_smartypants.c │ ├── stack.c │ └── version.c ├── iconfix ├── CMakeLists.txt ├── internal │ ├── qhexstring_p.h │ ├── qiconloader.cpp │ └── qiconloader_p.h ├── xdgicon.cpp └── xdgicon.h ├── javacheck ├── .gitignore ├── CMakeLists.txt └── JavaCheck.java ├── katabasis ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── acknowledgements.md ├── include │ └── katabasis │ │ ├── Bits.h │ │ ├── DeviceFlow.h │ │ ├── Globals.h │ │ ├── PollServer.h │ │ ├── Reply.h │ │ └── RequestParameter.h └── src │ ├── DeviceFlow.cpp │ ├── JsonResponse.cpp │ ├── JsonResponse.h │ ├── PollServer.cpp │ └── Reply.cpp ├── launcher ├── .gitignore ├── CMakeLists.txt ├── net │ └── minecraft │ │ └── Launcher.java └── org │ └── multimc │ ├── EntryPoint.java │ ├── Launcher.java │ ├── LegacyFrame.java │ ├── NotFoundException.java │ ├── ParamBucket.java │ ├── ParseException.java │ ├── Utils.java │ └── onesix │ └── OneSixLauncher.java ├── optional-bare ├── CMakeLists.txt ├── LICENSE.txt ├── README.md └── include │ └── nonstd │ └── optional ├── qrcode ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include │ └── qrcode │ │ └── QrCodeGenerator.h └── src │ ├── QrCodeGenerator.cpp │ ├── qrcodegen.cpp │ └── qrcodegen.h ├── rainbow ├── CMakeLists.txt ├── COPYING.LIB ├── include │ ├── rainbow.h │ └── rainbow_config.h └── src │ └── rainbow.cpp ├── systeminfo ├── CMakeLists.txt ├── include │ ├── distroutils.h │ ├── ntstatus │ │ ├── NtStatusNames.hpp │ │ └── README.md │ └── sys.h └── src │ ├── distroutils.cpp │ ├── ntstatus │ ├── NtStatusNames.cpp │ └── README.md │ ├── sys_apple.cpp │ ├── sys_test.cpp │ ├── sys_unix.cpp │ └── sys_win32.cpp ├── tomlc99 ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include │ └── toml.h └── src │ └── toml.c └── xz-embedded ├── CMakeLists.txt ├── include └── xz.h ├── src ├── xz_config.h ├── xz_crc32.c ├── xz_crc64.c ├── xz_dec_bcj.c ├── xz_dec_lzma2.c ├── xz_dec_stream.c ├── xz_lzma2.h ├── xz_private.h └── xz_stream.h └── xzminidec.c /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pem -crlf 2 | **/testdata/** -text -diff 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/.github/ISSUE_TEMPLATE/suggestion.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/BUILD.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/COPYING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/README.md -------------------------------------------------------------------------------- /branding/MultiMC.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/MultiMC.icns -------------------------------------------------------------------------------- /branding/MultiMC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/MultiMC.ico -------------------------------------------------------------------------------- /branding/MultiMC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/MultiMC.manifest -------------------------------------------------------------------------------- /branding/genicons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/genicons.sh -------------------------------------------------------------------------------- /branding/logo-discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/logo-discord.svg -------------------------------------------------------------------------------- /branding/logo-macos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/logo-macos.svg -------------------------------------------------------------------------------- /branding/logo.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/logo.qrc -------------------------------------------------------------------------------- /branding/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/logo.svg -------------------------------------------------------------------------------- /branding/multimc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/branding/multimc.rc -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/changelog.md -------------------------------------------------------------------------------- /cmake/BundleUtilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/BundleUtilities.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake/GetPrerequisites.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/GetPrerequisites.cmake -------------------------------------------------------------------------------- /cmake/GitFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/GitFunctions.cmake -------------------------------------------------------------------------------- /cmake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /cmake/QMakeQuery.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/QMakeQuery.cmake -------------------------------------------------------------------------------- /cmake/UnitTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/UnitTest.cmake -------------------------------------------------------------------------------- /cmake/UnitTest/TestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/UnitTest/TestUtil.h -------------------------------------------------------------------------------- /cmake/UnitTest/generate_test_data.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/UnitTest/generate_test_data.cmake -------------------------------------------------------------------------------- /cmake/UnitTest/test.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/UnitTest/test.manifest -------------------------------------------------------------------------------- /cmake/UnitTest/test.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/UnitTest/test.rc -------------------------------------------------------------------------------- /cmake/UseJava.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/UseJava.cmake -------------------------------------------------------------------------------- /cmake/UseJavaClassFilelist.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/UseJavaClassFilelist.cmake -------------------------------------------------------------------------------- /cmake/UseJavaSymlinks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/cmake/UseJavaSymlinks.cmake -------------------------------------------------------------------------------- /doc/multimc.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/doc/multimc.1.txt -------------------------------------------------------------------------------- /launcher/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Application.cpp -------------------------------------------------------------------------------- /launcher/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Application.h -------------------------------------------------------------------------------- /launcher/ApplicationMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ApplicationMessage.cpp -------------------------------------------------------------------------------- /launcher/ApplicationMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ApplicationMessage.h -------------------------------------------------------------------------------- /launcher/BaseInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/BaseInstaller.cpp -------------------------------------------------------------------------------- /launcher/BaseInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/BaseInstaller.h -------------------------------------------------------------------------------- /launcher/BaseInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/BaseInstance.cpp -------------------------------------------------------------------------------- /launcher/BaseInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/BaseInstance.h -------------------------------------------------------------------------------- /launcher/BaseVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/BaseVersion.h -------------------------------------------------------------------------------- /launcher/BaseVersionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/BaseVersionList.cpp -------------------------------------------------------------------------------- /launcher/BaseVersionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/BaseVersionList.h -------------------------------------------------------------------------------- /launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /launcher/Commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Commandline.cpp -------------------------------------------------------------------------------- /launcher/Commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Commandline.h -------------------------------------------------------------------------------- /launcher/DefaultVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/DefaultVariable.h -------------------------------------------------------------------------------- /launcher/DesktopServices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/DesktopServices.cpp -------------------------------------------------------------------------------- /launcher/DesktopServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/DesktopServices.h -------------------------------------------------------------------------------- /launcher/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Exception.h -------------------------------------------------------------------------------- /launcher/ExponentialSeries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ExponentialSeries.h -------------------------------------------------------------------------------- /launcher/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/FileSystem.cpp -------------------------------------------------------------------------------- /launcher/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/FileSystem.h -------------------------------------------------------------------------------- /launcher/FileSystem_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/FileSystem_test.cpp -------------------------------------------------------------------------------- /launcher/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Filter.cpp -------------------------------------------------------------------------------- /launcher/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Filter.h -------------------------------------------------------------------------------- /launcher/GZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/GZip.cpp -------------------------------------------------------------------------------- /launcher/GZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/GZip.h -------------------------------------------------------------------------------- /launcher/GZip_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/GZip_test.cpp -------------------------------------------------------------------------------- /launcher/HoeDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/HoeDown.h -------------------------------------------------------------------------------- /launcher/InstanceCopyTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceCopyTask.cpp -------------------------------------------------------------------------------- /launcher/InstanceCopyTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceCopyTask.h -------------------------------------------------------------------------------- /launcher/InstanceCreationTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceCreationTask.cpp -------------------------------------------------------------------------------- /launcher/InstanceCreationTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceCreationTask.h -------------------------------------------------------------------------------- /launcher/InstanceImportTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceImportTask.cpp -------------------------------------------------------------------------------- /launcher/InstanceImportTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceImportTask.h -------------------------------------------------------------------------------- /launcher/InstanceList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceList.cpp -------------------------------------------------------------------------------- /launcher/InstanceList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceList.h -------------------------------------------------------------------------------- /launcher/InstancePageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstancePageProvider.h -------------------------------------------------------------------------------- /launcher/InstanceTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceTask.cpp -------------------------------------------------------------------------------- /launcher/InstanceTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/InstanceTask.h -------------------------------------------------------------------------------- /launcher/JavaCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/JavaCommon.cpp -------------------------------------------------------------------------------- /launcher/JavaCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/JavaCommon.h -------------------------------------------------------------------------------- /launcher/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Json.cpp -------------------------------------------------------------------------------- /launcher/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Json.h -------------------------------------------------------------------------------- /launcher/KonamiCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/KonamiCode.cpp -------------------------------------------------------------------------------- /launcher/KonamiCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/KonamiCode.h -------------------------------------------------------------------------------- /launcher/LaunchController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/LaunchController.cpp -------------------------------------------------------------------------------- /launcher/LaunchController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/LaunchController.h -------------------------------------------------------------------------------- /launcher/Launcher.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Launcher.in -------------------------------------------------------------------------------- /launcher/LoggedProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/LoggedProcess.cpp -------------------------------------------------------------------------------- /launcher/LoggedProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/LoggedProcess.h -------------------------------------------------------------------------------- /launcher/MMCStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/MMCStrings.cpp -------------------------------------------------------------------------------- /launcher/MMCStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/MMCStrings.h -------------------------------------------------------------------------------- /launcher/MMCTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/MMCTime.cpp -------------------------------------------------------------------------------- /launcher/MMCTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/MMCTime.h -------------------------------------------------------------------------------- /launcher/MMCZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/MMCZip.cpp -------------------------------------------------------------------------------- /launcher/MMCZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/MMCZip.h -------------------------------------------------------------------------------- /launcher/MessageLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/MessageLevel.cpp -------------------------------------------------------------------------------- /launcher/MessageLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/MessageLevel.h -------------------------------------------------------------------------------- /launcher/NullInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/NullInstance.h -------------------------------------------------------------------------------- /launcher/ProblemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ProblemProvider.h -------------------------------------------------------------------------------- /launcher/QObjectPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/QObjectPtr.h -------------------------------------------------------------------------------- /launcher/RWStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/RWStorage.h -------------------------------------------------------------------------------- /launcher/RecursiveFileSystemWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/RecursiveFileSystemWatcher.cpp -------------------------------------------------------------------------------- /launcher/RecursiveFileSystemWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/RecursiveFileSystemWatcher.h -------------------------------------------------------------------------------- /launcher/SeparatorPrefixTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/SeparatorPrefixTree.h -------------------------------------------------------------------------------- /launcher/UpdateController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/UpdateController.cpp -------------------------------------------------------------------------------- /launcher/UpdateController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/UpdateController.h -------------------------------------------------------------------------------- /launcher/Usable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Usable.h -------------------------------------------------------------------------------- /launcher/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Version.cpp -------------------------------------------------------------------------------- /launcher/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Version.h -------------------------------------------------------------------------------- /launcher/VersionProxyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/VersionProxyModel.cpp -------------------------------------------------------------------------------- /launcher/VersionProxyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/VersionProxyModel.h -------------------------------------------------------------------------------- /launcher/Version_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/Version_test.cpp -------------------------------------------------------------------------------- /launcher/WatchLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/WatchLock.h -------------------------------------------------------------------------------- /launcher/icons/IconList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/icons/IconList.cpp -------------------------------------------------------------------------------- /launcher/icons/IconList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/icons/IconList.h -------------------------------------------------------------------------------- /launcher/icons/IconUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/icons/IconUtils.cpp -------------------------------------------------------------------------------- /launcher/icons/IconUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/icons/IconUtils.h -------------------------------------------------------------------------------- /launcher/icons/MMCIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/icons/MMCIcon.cpp -------------------------------------------------------------------------------- /launcher/icons/MMCIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/icons/MMCIcon.h -------------------------------------------------------------------------------- /launcher/install_prereqs.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/install_prereqs.cmake.in -------------------------------------------------------------------------------- /launcher/java/JavaChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaChecker.cpp -------------------------------------------------------------------------------- /launcher/java/JavaChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaChecker.h -------------------------------------------------------------------------------- /launcher/java/JavaCheckerJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaCheckerJob.cpp -------------------------------------------------------------------------------- /launcher/java/JavaCheckerJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaCheckerJob.h -------------------------------------------------------------------------------- /launcher/java/JavaInstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaInstall.cpp -------------------------------------------------------------------------------- /launcher/java/JavaInstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaInstall.h -------------------------------------------------------------------------------- /launcher/java/JavaInstallList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaInstallList.cpp -------------------------------------------------------------------------------- /launcher/java/JavaInstallList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaInstallList.h -------------------------------------------------------------------------------- /launcher/java/JavaUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaUtils.cpp -------------------------------------------------------------------------------- /launcher/java/JavaUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaUtils.h -------------------------------------------------------------------------------- /launcher/java/JavaVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaVersion.cpp -------------------------------------------------------------------------------- /launcher/java/JavaVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaVersion.h -------------------------------------------------------------------------------- /launcher/java/JavaVersion_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/java/JavaVersion_test.cpp -------------------------------------------------------------------------------- /launcher/launch/LaunchStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/LaunchStep.cpp -------------------------------------------------------------------------------- /launcher/launch/LaunchStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/LaunchStep.h -------------------------------------------------------------------------------- /launcher/launch/LaunchTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/LaunchTask.cpp -------------------------------------------------------------------------------- /launcher/launch/LaunchTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/LaunchTask.h -------------------------------------------------------------------------------- /launcher/launch/LogModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/LogModel.cpp -------------------------------------------------------------------------------- /launcher/launch/LogModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/LogModel.h -------------------------------------------------------------------------------- /launcher/launch/steps/CheckJava.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/CheckJava.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/CheckJava.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/CheckJava.h -------------------------------------------------------------------------------- /launcher/launch/steps/LookupServerAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/LookupServerAddress.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/LookupServerAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/LookupServerAddress.h -------------------------------------------------------------------------------- /launcher/launch/steps/PostLaunchCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/PostLaunchCommand.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/PostLaunchCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/PostLaunchCommand.h -------------------------------------------------------------------------------- /launcher/launch/steps/PreLaunchCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/PreLaunchCommand.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/PreLaunchCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/PreLaunchCommand.h -------------------------------------------------------------------------------- /launcher/launch/steps/TextPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/TextPrint.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/TextPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/TextPrint.h -------------------------------------------------------------------------------- /launcher/launch/steps/Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/Update.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/launch/steps/Update.h -------------------------------------------------------------------------------- /launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/main.cpp -------------------------------------------------------------------------------- /launcher/meta/BaseEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/BaseEntity.cpp -------------------------------------------------------------------------------- /launcher/meta/BaseEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/BaseEntity.h -------------------------------------------------------------------------------- /launcher/meta/Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/Index.cpp -------------------------------------------------------------------------------- /launcher/meta/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/Index.h -------------------------------------------------------------------------------- /launcher/meta/Index_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/Index_test.cpp -------------------------------------------------------------------------------- /launcher/meta/JsonFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/JsonFormat.cpp -------------------------------------------------------------------------------- /launcher/meta/JsonFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/JsonFormat.h -------------------------------------------------------------------------------- /launcher/meta/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/Version.cpp -------------------------------------------------------------------------------- /launcher/meta/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/Version.h -------------------------------------------------------------------------------- /launcher/meta/VersionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/VersionList.cpp -------------------------------------------------------------------------------- /launcher/meta/VersionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/meta/VersionList.h -------------------------------------------------------------------------------- /launcher/minecraft/AssetsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/AssetsUtils.cpp -------------------------------------------------------------------------------- /launcher/minecraft/AssetsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/AssetsUtils.h -------------------------------------------------------------------------------- /launcher/minecraft/Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/Component.cpp -------------------------------------------------------------------------------- /launcher/minecraft/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/Component.h -------------------------------------------------------------------------------- /launcher/minecraft/ComponentUpdateTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/ComponentUpdateTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/ComponentUpdateTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/ComponentUpdateTask.h -------------------------------------------------------------------------------- /launcher/minecraft/ComponentUpdateTask_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/ComponentUpdateTask_p.h -------------------------------------------------------------------------------- /launcher/minecraft/GradleSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/GradleSpecifier.h -------------------------------------------------------------------------------- /launcher/minecraft/GradleSpecifier_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/GradleSpecifier_test.cpp -------------------------------------------------------------------------------- /launcher/minecraft/LaunchProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/LaunchProfile.cpp -------------------------------------------------------------------------------- /launcher/minecraft/LaunchProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/LaunchProfile.h -------------------------------------------------------------------------------- /launcher/minecraft/Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/Library.cpp -------------------------------------------------------------------------------- /launcher/minecraft/Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/Library.h -------------------------------------------------------------------------------- /launcher/minecraft/Library_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/Library_test.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MinecraftInstance.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MinecraftInstance.h -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftLoadAndCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MinecraftLoadAndCheck.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftLoadAndCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MinecraftLoadAndCheck.h -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MinecraftUpdate.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MinecraftUpdate.h -------------------------------------------------------------------------------- /launcher/minecraft/MojangDownloadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MojangDownloadInfo.h -------------------------------------------------------------------------------- /launcher/minecraft/MojangVersionFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MojangVersionFormat.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MojangVersionFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/MojangVersionFormat.h -------------------------------------------------------------------------------- /launcher/minecraft/OneSixVersionFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/OneSixVersionFormat.cpp -------------------------------------------------------------------------------- /launcher/minecraft/OneSixVersionFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/OneSixVersionFormat.h -------------------------------------------------------------------------------- /launcher/minecraft/OpSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/OpSys.cpp -------------------------------------------------------------------------------- /launcher/minecraft/OpSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/OpSys.h -------------------------------------------------------------------------------- /launcher/minecraft/PackProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/PackProfile.cpp -------------------------------------------------------------------------------- /launcher/minecraft/PackProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/PackProfile.h -------------------------------------------------------------------------------- /launcher/minecraft/PackProfile_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/PackProfile_p.h -------------------------------------------------------------------------------- /launcher/minecraft/ParseUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/ParseUtils.cpp -------------------------------------------------------------------------------- /launcher/minecraft/ParseUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/ParseUtils.h -------------------------------------------------------------------------------- /launcher/minecraft/ParseUtils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/ParseUtils_test.cpp -------------------------------------------------------------------------------- /launcher/minecraft/ProfileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/ProfileUtils.cpp -------------------------------------------------------------------------------- /launcher/minecraft/ProfileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/ProfileUtils.h -------------------------------------------------------------------------------- /launcher/minecraft/Rule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/Rule.cpp -------------------------------------------------------------------------------- /launcher/minecraft/Rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/Rule.h -------------------------------------------------------------------------------- /launcher/minecraft/VersionFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/VersionFile.cpp -------------------------------------------------------------------------------- /launcher/minecraft/VersionFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/VersionFile.h -------------------------------------------------------------------------------- /launcher/minecraft/VersionFilterData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/VersionFilterData.cpp -------------------------------------------------------------------------------- /launcher/minecraft/VersionFilterData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/VersionFilterData.h -------------------------------------------------------------------------------- /launcher/minecraft/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/World.cpp -------------------------------------------------------------------------------- /launcher/minecraft/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/World.h -------------------------------------------------------------------------------- /launcher/minecraft/WorldList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/WorldList.cpp -------------------------------------------------------------------------------- /launcher/minecraft/WorldList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/WorldList.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AccountData.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AccountData.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AccountList.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AccountList.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AccountTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AccountTask.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AuthRequest.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AuthRequest.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AuthSession.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AuthSession.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AuthStep.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/AuthStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/MinecraftAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/MinecraftAccount.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/MinecraftAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/MinecraftAccount.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/Parsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/Parsers.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/Parsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/Parsers.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/AuthFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/flows/AuthFlow.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/AuthFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/flows/AuthFlow.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/MSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/flows/MSA.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/MSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/flows/MSA.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/GetSkinStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/GetSkinStep.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/GetSkinStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/GetSkinStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/MSAStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/MSAStep.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/MSAStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/MSAStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/SetCapeStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/SetCapeStep.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/SetCapeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/SetCapeStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/SetSkinStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/SetSkinStep.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/SetSkinStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/SetSkinStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/XboxUserStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/auth/steps/XboxUserStep.h -------------------------------------------------------------------------------- /launcher/minecraft/gameoptions/GameOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/gameoptions/GameOptions.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ClaimAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ClaimAccount.cpp -------------------------------------------------------------------------------- /launcher/minecraft/launch/ClaimAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ClaimAccount.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/CreateGameFolders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/CreateGameFolders.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/DirectJavaLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/DirectJavaLaunch.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ExtractNatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ExtractNatives.cpp -------------------------------------------------------------------------------- /launcher/minecraft/launch/ExtractNatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ExtractNatives.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ModMinecraftJar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ModMinecraftJar.cpp -------------------------------------------------------------------------------- /launcher/minecraft/launch/ModMinecraftJar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ModMinecraftJar.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/PrintInstanceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/PrintInstanceInfo.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/QuickPlayTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/QuickPlayTarget.cpp -------------------------------------------------------------------------------- /launcher/minecraft/launch/QuickPlayTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/QuickPlayTarget.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ReconstructAssets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ReconstructAssets.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ScanModFolders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ScanModFolders.cpp -------------------------------------------------------------------------------- /launcher/minecraft/launch/ScanModFolders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/ScanModFolders.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/VerifyJavaInstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/launch/VerifyJavaInstall.h -------------------------------------------------------------------------------- /launcher/minecraft/legacy/LegacyInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/legacy/LegacyInstance.cpp -------------------------------------------------------------------------------- /launcher/minecraft/legacy/LegacyInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/legacy/LegacyInstance.h -------------------------------------------------------------------------------- /launcher/minecraft/legacy/LegacyModList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/legacy/LegacyModList.cpp -------------------------------------------------------------------------------- /launcher/minecraft/legacy/LegacyModList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/legacy/LegacyModList.h -------------------------------------------------------------------------------- /launcher/minecraft/legacy/LegacyUpgradeTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/legacy/LegacyUpgradeTask.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/LocalModParseTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/LocalModParseTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/mod/LocalModParseTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/LocalModParseTask.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/Mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/Mod.cpp -------------------------------------------------------------------------------- /launcher/minecraft/mod/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/Mod.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/ModDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/ModDetails.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/ModFolderLoadTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/ModFolderLoadTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/mod/ModFolderLoadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/ModFolderLoadTask.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/ModFolderModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/ModFolderModel.cpp -------------------------------------------------------------------------------- /launcher/minecraft/mod/ModFolderModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/mod/ModFolderModel.h -------------------------------------------------------------------------------- /launcher/minecraft/testdata/1.9-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/testdata/1.9-simple.json -------------------------------------------------------------------------------- /launcher/minecraft/testdata/1.9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/testdata/1.9.json -------------------------------------------------------------------------------- /launcher/minecraft/testdata/codecwav-20101023.jar: -------------------------------------------------------------------------------- 1 | dummy test file. 2 | -------------------------------------------------------------------------------- /launcher/minecraft/testdata/lib-native.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/testdata/lib-native.json -------------------------------------------------------------------------------- /launcher/minecraft/testdata/lib-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/testdata/lib-simple.json -------------------------------------------------------------------------------- /launcher/minecraft/testdata/testname-testversion-linux-32.jar: -------------------------------------------------------------------------------- 1 | dummy test file. 2 | -------------------------------------------------------------------------------- /launcher/minecraft/update/AssetUpdateTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/update/AssetUpdateTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/update/AssetUpdateTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/update/AssetUpdateTask.h -------------------------------------------------------------------------------- /launcher/minecraft/update/FMLLibrariesTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/update/FMLLibrariesTask.h -------------------------------------------------------------------------------- /launcher/minecraft/update/FoldersTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/update/FoldersTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/update/FoldersTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/update/FoldersTask.h -------------------------------------------------------------------------------- /launcher/minecraft/update/LibrariesTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/update/LibrariesTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/update/LibrariesTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/minecraft/update/LibrariesTask.h -------------------------------------------------------------------------------- /launcher/modplatform/legacy_ftb/PackHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/modplatform/legacy_ftb/PackHelpers.h -------------------------------------------------------------------------------- /launcher/mojang/PackageManifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/mojang/PackageManifest.cpp -------------------------------------------------------------------------------- /launcher/mojang/PackageManifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/mojang/PackageManifest.h -------------------------------------------------------------------------------- /launcher/mojang/PackageManifest_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/mojang/PackageManifest_test.cpp -------------------------------------------------------------------------------- /launcher/mojang/testdata/1.8.0_202-x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/mojang/testdata/1.8.0_202-x64.json -------------------------------------------------------------------------------- /launcher/mojang/testdata/inspect/a/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/mojang/testdata/inspect/a/b/b.txt: -------------------------------------------------------------------------------- 1 | ../b.txt -------------------------------------------------------------------------------- /launcher/mojang/testdata/inspect_win/a/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/mojang/testdata/inspect_win/a/b/b.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/net/ByteArraySink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/ByteArraySink.h -------------------------------------------------------------------------------- /launcher/net/ChecksumValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/ChecksumValidator.h -------------------------------------------------------------------------------- /launcher/net/Download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/Download.cpp -------------------------------------------------------------------------------- /launcher/net/Download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/Download.h -------------------------------------------------------------------------------- /launcher/net/FileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/FileSink.cpp -------------------------------------------------------------------------------- /launcher/net/FileSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/FileSink.h -------------------------------------------------------------------------------- /launcher/net/HttpMetaCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/HttpMetaCache.cpp -------------------------------------------------------------------------------- /launcher/net/HttpMetaCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/HttpMetaCache.h -------------------------------------------------------------------------------- /launcher/net/MetaCacheSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/MetaCacheSink.cpp -------------------------------------------------------------------------------- /launcher/net/MetaCacheSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/MetaCacheSink.h -------------------------------------------------------------------------------- /launcher/net/Mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/Mode.h -------------------------------------------------------------------------------- /launcher/net/NetAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/NetAction.h -------------------------------------------------------------------------------- /launcher/net/NetJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/NetJob.cpp -------------------------------------------------------------------------------- /launcher/net/NetJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/NetJob.h -------------------------------------------------------------------------------- /launcher/net/PasteUpload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/PasteUpload.cpp -------------------------------------------------------------------------------- /launcher/net/PasteUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/PasteUpload.h -------------------------------------------------------------------------------- /launcher/net/Sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/Sink.h -------------------------------------------------------------------------------- /launcher/net/Validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/net/Validator.h -------------------------------------------------------------------------------- /launcher/news/NewsChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/news/NewsChecker.cpp -------------------------------------------------------------------------------- /launcher/news/NewsChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/news/NewsChecker.h -------------------------------------------------------------------------------- /launcher/news/NewsEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/news/NewsEntry.cpp -------------------------------------------------------------------------------- /launcher/news/NewsEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/news/NewsEntry.h -------------------------------------------------------------------------------- /launcher/notifications/NotificationChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/notifications/NotificationChecker.h -------------------------------------------------------------------------------- /launcher/package/rpm/MultiMC5.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/package/rpm/MultiMC5.spec -------------------------------------------------------------------------------- /launcher/package/rpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/package/rpm/README.md -------------------------------------------------------------------------------- /launcher/package/ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/package/ubuntu/README.md -------------------------------------------------------------------------------- /launcher/package/ubuntu/multimc/DEBIAN/postrm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | update-desktop-database 4 | -------------------------------------------------------------------------------- /launcher/pathmatcher/FSTreeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/pathmatcher/FSTreeMatcher.h -------------------------------------------------------------------------------- /launcher/pathmatcher/IPathMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/pathmatcher/IPathMatcher.h -------------------------------------------------------------------------------- /launcher/pathmatcher/MultiMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/pathmatcher/MultiMatcher.h -------------------------------------------------------------------------------- /launcher/pathmatcher/RegexpMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/pathmatcher/RegexpMatcher.h -------------------------------------------------------------------------------- /launcher/resources/OSX/OSX.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/OSX.qrc -------------------------------------------------------------------------------- /launcher/resources/OSX/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/index.theme -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/about.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/accounts.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/coremods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/coremods.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/jarmods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/jarmods.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/language.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/launcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/launcher.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/minecraft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/minecraft.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/notes.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/patreon.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/proxy.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/refresh.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/settings.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/worlds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/OSX/scalable/worlds.svg -------------------------------------------------------------------------------- /launcher/resources/backgrounds/catbgrnd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/backgrounds/catbgrnd2.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/catmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/backgrounds/catmas.png -------------------------------------------------------------------------------- /launcher/resources/documents/documents.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/documents/documents.qrc -------------------------------------------------------------------------------- /launcher/resources/flat/flat.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/flat.qrc -------------------------------------------------------------------------------- /launcher/resources/flat/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/index.theme -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/about.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/accounts.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/cat.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/coremods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/coremods.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/discord.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/jarmods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/jarmods.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/language.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/launcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/launcher.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/multimc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/multimc.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/notes.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/packages.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/packages.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/patreon.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/proxy.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/refresh.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/settings.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/star.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/worlds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/flat/scalable/worlds.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/iOS.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/iOS.qrc -------------------------------------------------------------------------------- /launcher/resources/iOS/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/index.theme -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/about.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/accounts.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/coremods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/coremods.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/jarmods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/jarmods.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/language.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/launcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/launcher.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/minecraft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/minecraft.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/multimc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/multimc.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/notes.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/patreon.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/proxy.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/refresh.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/settings.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/worlds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/iOS/scalable/worlds.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/coremods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/coremods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/16x16/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/22x22/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/24x24/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/coremods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/24x24/coremods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/24x24/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/24x24/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/24x24/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/24x24/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/coremods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/coremods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/32x32/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/48x48/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/coremods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/coremods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/64x64/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/8x8/noaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/8x8/noaccount.png -------------------------------------------------------------------------------- /launcher/resources/multimc/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/index.theme -------------------------------------------------------------------------------- /launcher/resources/multimc/multimc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/multimc.qrc -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/multimc/scalable/proxy.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/index.theme -------------------------------------------------------------------------------- /launcher/resources/pe_blue/pe_blue.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/pe_blue.qrc -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/about.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/notes.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_blue/scalable/proxy.svg -------------------------------------------------------------------------------- /launcher/resources/pe_colored/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_colored/index.theme -------------------------------------------------------------------------------- /launcher/resources/pe_colored/pe_colored.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_colored/pe_colored.qrc -------------------------------------------------------------------------------- /launcher/resources/pe_dark/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_dark/index.theme -------------------------------------------------------------------------------- /launcher/resources/pe_dark/pe_dark.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_dark/pe_dark.qrc -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_dark/scalable/about.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_dark/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_dark/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_dark/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_dark/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_dark/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/pe_light/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_light/index.theme -------------------------------------------------------------------------------- /launcher/resources/pe_light/pe_light.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/pe_light/pe_light.qrc -------------------------------------------------------------------------------- /launcher/resources/skins/shaders/bg.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/skins/shaders/bg.frag -------------------------------------------------------------------------------- /launcher/resources/skins/shaders/bg.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/skins/shaders/bg.vert -------------------------------------------------------------------------------- /launcher/resources/skins/shaders/skin.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/skins/shaders/skin.frag -------------------------------------------------------------------------------- /launcher/resources/skins/shaders/skin.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/skins/shaders/skin.vert -------------------------------------------------------------------------------- /launcher/resources/skins/skins.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/skins/skins.qrc -------------------------------------------------------------------------------- /launcher/resources/sources/burfcat_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/burfcat_hat.png -------------------------------------------------------------------------------- /launcher/resources/sources/cattiversary.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/cattiversary.xcf -------------------------------------------------------------------------------- /launcher/resources/sources/clucker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/clucker.svg -------------------------------------------------------------------------------- /launcher/resources/sources/creeper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/creeper.svg -------------------------------------------------------------------------------- /launcher/resources/sources/enderpearl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/enderpearl.svg -------------------------------------------------------------------------------- /launcher/resources/sources/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/flame.svg -------------------------------------------------------------------------------- /launcher/resources/sources/ftb-glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/ftb-glow.svg -------------------------------------------------------------------------------- /launcher/resources/sources/ftb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/ftb-logo.svg -------------------------------------------------------------------------------- /launcher/resources/sources/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/gear.svg -------------------------------------------------------------------------------- /launcher/resources/sources/herobrine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/herobrine.svg -------------------------------------------------------------------------------- /launcher/resources/sources/magitech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/magitech.svg -------------------------------------------------------------------------------- /launcher/resources/sources/meat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/meat.svg -------------------------------------------------------------------------------- /launcher/resources/sources/netherstar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/netherstar.svg -------------------------------------------------------------------------------- /launcher/resources/sources/pskeleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/pskeleton.svg -------------------------------------------------------------------------------- /launcher/resources/sources/skeleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/skeleton.svg -------------------------------------------------------------------------------- /launcher/resources/sources/steve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/resources/sources/steve.svg -------------------------------------------------------------------------------- /launcher/screenshots/ImgurAlbumCreation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/screenshots/ImgurAlbumCreation.cpp -------------------------------------------------------------------------------- /launcher/screenshots/ImgurAlbumCreation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/screenshots/ImgurAlbumCreation.h -------------------------------------------------------------------------------- /launcher/screenshots/ImgurUpload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/screenshots/ImgurUpload.cpp -------------------------------------------------------------------------------- /launcher/screenshots/ImgurUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/screenshots/ImgurUpload.h -------------------------------------------------------------------------------- /launcher/screenshots/Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/screenshots/Screenshot.h -------------------------------------------------------------------------------- /launcher/settings/INIFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/INIFile.cpp -------------------------------------------------------------------------------- /launcher/settings/INIFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/INIFile.h -------------------------------------------------------------------------------- /launcher/settings/INIFile_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/INIFile_test.cpp -------------------------------------------------------------------------------- /launcher/settings/INISettingsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/INISettingsObject.cpp -------------------------------------------------------------------------------- /launcher/settings/INISettingsObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/INISettingsObject.h -------------------------------------------------------------------------------- /launcher/settings/OverrideSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/OverrideSetting.cpp -------------------------------------------------------------------------------- /launcher/settings/OverrideSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/OverrideSetting.h -------------------------------------------------------------------------------- /launcher/settings/PassthroughSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/PassthroughSetting.cpp -------------------------------------------------------------------------------- /launcher/settings/PassthroughSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/PassthroughSetting.h -------------------------------------------------------------------------------- /launcher/settings/Setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/Setting.cpp -------------------------------------------------------------------------------- /launcher/settings/Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/Setting.h -------------------------------------------------------------------------------- /launcher/settings/SettingsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/SettingsObject.cpp -------------------------------------------------------------------------------- /launcher/settings/SettingsObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/settings/SettingsObject.h -------------------------------------------------------------------------------- /launcher/skins/CapeCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/CapeCache.cpp -------------------------------------------------------------------------------- /launcher/skins/CapeCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/CapeCache.h -------------------------------------------------------------------------------- /launcher/skins/CapesModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/CapesModel.cpp -------------------------------------------------------------------------------- /launcher/skins/CapesModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/CapesModel.h -------------------------------------------------------------------------------- /launcher/skins/SkinRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinRenderer.cpp -------------------------------------------------------------------------------- /launcher/skins/SkinRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinRenderer.h -------------------------------------------------------------------------------- /launcher/skins/SkinTypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinTypes.cpp -------------------------------------------------------------------------------- /launcher/skins/SkinTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinTypes.h -------------------------------------------------------------------------------- /launcher/skins/SkinUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinUtils.cpp -------------------------------------------------------------------------------- /launcher/skins/SkinUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinUtils.h -------------------------------------------------------------------------------- /launcher/skins/SkinWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinWidget.cpp -------------------------------------------------------------------------------- /launcher/skins/SkinWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinWidget.h -------------------------------------------------------------------------------- /launcher/skins/SkinsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinsModel.cpp -------------------------------------------------------------------------------- /launcher/skins/SkinsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/SkinsModel.h -------------------------------------------------------------------------------- /launcher/skins/TextureMappings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/TextureMappings.cpp -------------------------------------------------------------------------------- /launcher/skins/TextureMappings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/skins/TextureMappings.h -------------------------------------------------------------------------------- /launcher/tasks/SequentialTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tasks/SequentialTask.cpp -------------------------------------------------------------------------------- /launcher/tasks/SequentialTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tasks/SequentialTask.h -------------------------------------------------------------------------------- /launcher/tasks/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tasks/Task.cpp -------------------------------------------------------------------------------- /launcher/tasks/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tasks/Task.h -------------------------------------------------------------------------------- /launcher/testdata/test_folder/assets/minecraft/textures/blah.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/testdata/test_folder/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/testdata/test_folder/pack.mcmeta -------------------------------------------------------------------------------- /launcher/testdata/test_folder/pack.nfo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/tools/BaseExternalTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/BaseExternalTool.cpp -------------------------------------------------------------------------------- /launcher/tools/BaseExternalTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/BaseExternalTool.h -------------------------------------------------------------------------------- /launcher/tools/BaseProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/BaseProfiler.cpp -------------------------------------------------------------------------------- /launcher/tools/BaseProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/BaseProfiler.h -------------------------------------------------------------------------------- /launcher/tools/JProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/JProfiler.cpp -------------------------------------------------------------------------------- /launcher/tools/JProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/JProfiler.h -------------------------------------------------------------------------------- /launcher/tools/JVisualVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/JVisualVM.cpp -------------------------------------------------------------------------------- /launcher/tools/JVisualVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/JVisualVM.h -------------------------------------------------------------------------------- /launcher/tools/MCEditTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/MCEditTool.cpp -------------------------------------------------------------------------------- /launcher/tools/MCEditTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/tools/MCEditTool.h -------------------------------------------------------------------------------- /launcher/translations/POTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/translations/POTranslator.cpp -------------------------------------------------------------------------------- /launcher/translations/POTranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/translations/POTranslator.h -------------------------------------------------------------------------------- /launcher/translations/TranslationsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/translations/TranslationsModel.cpp -------------------------------------------------------------------------------- /launcher/translations/TranslationsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/translations/TranslationsModel.h -------------------------------------------------------------------------------- /launcher/ui/ColorCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/ColorCache.cpp -------------------------------------------------------------------------------- /launcher/ui/ColorCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/ColorCache.h -------------------------------------------------------------------------------- /launcher/ui/GuiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/GuiUtil.cpp -------------------------------------------------------------------------------- /launcher/ui/GuiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/GuiUtil.h -------------------------------------------------------------------------------- /launcher/ui/InstanceWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/InstanceWindow.cpp -------------------------------------------------------------------------------- /launcher/ui/InstanceWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/InstanceWindow.h -------------------------------------------------------------------------------- /launcher/ui/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/MainWindow.cpp -------------------------------------------------------------------------------- /launcher/ui/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/MainWindow.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/AboutDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/AboutDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/AboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/AboutDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/AccountsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/AccountsDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/AccountsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/AccountsDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/AccountsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/AccountsDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/CopyInstanceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/CopyInstanceDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/CopyInstanceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/CopyInstanceDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/CopyInstanceDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/CopyInstanceDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/CreateShortcutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/CreateShortcutDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/CreateShortcutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/CreateShortcutDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/CustomMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/CustomMessageBox.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/CustomMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/CustomMessageBox.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ExportInstanceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ExportInstanceDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ExportInstanceDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ExportInstanceDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/IconPickerDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/IconPickerDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/IconPickerDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/IconPickerDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/IconPickerDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/IconPickerDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ModrinthExportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ModrinthExportDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ModrinthExportDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ModrinthExportDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewComponentDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NewComponentDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewComponentDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NewComponentDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewComponentDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NewComponentDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewInstanceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NewInstanceDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewInstanceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NewInstanceDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewInstanceDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NewInstanceDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/NotificationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NotificationDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/NotificationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NotificationDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/NotificationDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/NotificationDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/OfflineNameDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/OfflineNameDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/OfflineNameDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/OfflineNameDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSelectDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ProfileSelectDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSelectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ProfileSelectDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSelectDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ProfileSelectDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProgressDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ProgressDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProgressDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ProgressDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProgressDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/ProgressDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/UpdateDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/UpdateDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/UpdateDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/UpdateDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/UpdateDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/UpdateDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/VersionSelectDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/VersionSelectDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/VersionSelectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/dialogs/VersionSelectDialog.h -------------------------------------------------------------------------------- /launcher/ui/instanceview/InstanceDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/instanceview/InstanceDelegate.h -------------------------------------------------------------------------------- /launcher/ui/instanceview/InstanceView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/instanceview/InstanceView.cpp -------------------------------------------------------------------------------- /launcher/ui/instanceview/InstanceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/instanceview/InstanceView.h -------------------------------------------------------------------------------- /launcher/ui/instanceview/VisualGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/instanceview/VisualGroup.cpp -------------------------------------------------------------------------------- /launcher/ui/instanceview/VisualGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/instanceview/VisualGroup.h -------------------------------------------------------------------------------- /launcher/ui/pagedialog/PageDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pagedialog/PageDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/pagedialog/PageDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pagedialog/PageDialog.h -------------------------------------------------------------------------------- /launcher/ui/pages/BasePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/BasePage.h -------------------------------------------------------------------------------- /launcher/ui/pages/BasePageContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/BasePageContainer.h -------------------------------------------------------------------------------- /launcher/ui/pages/BasePageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/BasePageProvider.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/JavaPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/JavaPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/JavaPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/JavaPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/JavaPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/JavaPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/LanguagePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/LanguagePage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/LanguagePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/LanguagePage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/LauncherPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/LauncherPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/LauncherPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/LauncherPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/LauncherPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/LauncherPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/MinecraftPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/MinecraftPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/MinecraftPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/MinecraftPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/MinecraftPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/MinecraftPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/PasteEEPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/PasteEEPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/PasteEEPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/PasteEEPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/PasteEEPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/PasteEEPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/ProxyPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/ProxyPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/ProxyPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/ProxyPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/ProxyPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/global/ProxyPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/LogPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/LogPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/LogPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/LogPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/LogPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/LogPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ModFolderPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/ModFolderPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ModFolderPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/ModFolderPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/NotesPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/NotesPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/NotesPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/NotesPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/NotesPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/NotesPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/OtherLogsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/OtherLogsPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/OtherLogsPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/OtherLogsPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ServersPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/ServersPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ServersPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/ServersPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ServersPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/ServersPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ShaderPackPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/ShaderPackPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/VersionPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/VersionPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/VersionPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/VersionPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/VersionPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/VersionPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/WorldListPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/WorldListPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/WorldListPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/instance/WorldListPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/ImportPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/modplatform/ImportPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/ImportPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/modplatform/ImportPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/VanillaPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/pages/modplatform/VanillaPage.h -------------------------------------------------------------------------------- /launcher/ui/setupwizard/BaseWizardPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/setupwizard/BaseWizardPage.h -------------------------------------------------------------------------------- /launcher/ui/setupwizard/JavaWizardPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/setupwizard/JavaWizardPage.cpp -------------------------------------------------------------------------------- /launcher/ui/setupwizard/JavaWizardPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/setupwizard/JavaWizardPage.h -------------------------------------------------------------------------------- /launcher/ui/setupwizard/SetupWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/setupwizard/SetupWizard.cpp -------------------------------------------------------------------------------- /launcher/ui/setupwizard/SetupWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/setupwizard/SetupWizard.h -------------------------------------------------------------------------------- /launcher/ui/themes/BrightTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/BrightTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/BrightTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/BrightTheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/CustomTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/CustomTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/CustomTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/CustomTheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/DarkTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/DarkTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/DarkTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/DarkTheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/FusionTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/FusionTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/FusionTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/FusionTheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/ITheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/ITheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/ITheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/ITheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/SystemTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/SystemTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/SystemTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/themes/SystemTheme.h -------------------------------------------------------------------------------- /launcher/ui/widgets/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/Common.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/Common.h -------------------------------------------------------------------------------- /launcher/ui/widgets/CustomCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/CustomCommands.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/CustomCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/CustomCommands.h -------------------------------------------------------------------------------- /launcher/ui/widgets/CustomCommands.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/CustomCommands.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/DropLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/DropLabel.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/DropLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/DropLabel.h -------------------------------------------------------------------------------- /launcher/ui/widgets/ErrorFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/ErrorFrame.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/ErrorFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/ErrorFrame.h -------------------------------------------------------------------------------- /launcher/ui/widgets/ErrorFrame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/ErrorFrame.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/FocusLineEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/FocusLineEdit.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/FocusLineEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/FocusLineEdit.h -------------------------------------------------------------------------------- /launcher/ui/widgets/IconLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/IconLabel.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/IconLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/IconLabel.h -------------------------------------------------------------------------------- /launcher/ui/widgets/InstanceCardWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/InstanceCardWidget.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/JavaSettingsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/JavaSettingsWidget.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/JavaSettingsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/JavaSettingsWidget.h -------------------------------------------------------------------------------- /launcher/ui/widgets/LabeledToolButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/LabeledToolButton.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/LabeledToolButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/LabeledToolButton.h -------------------------------------------------------------------------------- /launcher/ui/widgets/LineSeparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/LineSeparator.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/LineSeparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/LineSeparator.h -------------------------------------------------------------------------------- /launcher/ui/widgets/LogView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/LogView.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/LogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/LogView.h -------------------------------------------------------------------------------- /launcher/ui/widgets/MCModInfoFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/MCModInfoFrame.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/MCModInfoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/MCModInfoFrame.h -------------------------------------------------------------------------------- /launcher/ui/widgets/MCModInfoFrame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/MCModInfoFrame.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/ModListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/ModListView.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/ModListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/ModListView.h -------------------------------------------------------------------------------- /launcher/ui/widgets/PageContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/PageContainer.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/PageContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/PageContainer.h -------------------------------------------------------------------------------- /launcher/ui/widgets/PageContainer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/PageContainer_p.h -------------------------------------------------------------------------------- /launcher/ui/widgets/ProgressWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/ProgressWidget.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/ProgressWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/ProgressWidget.h -------------------------------------------------------------------------------- /launcher/ui/widgets/VersionListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/VersionListView.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/VersionListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/VersionListView.h -------------------------------------------------------------------------------- /launcher/ui/widgets/VersionSelectWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/VersionSelectWidget.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/VersionSelectWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/VersionSelectWidget.h -------------------------------------------------------------------------------- /launcher/ui/widgets/WideBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/WideBar.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/WideBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/WideBar.h -------------------------------------------------------------------------------- /launcher/ui/widgets/WrapLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/WrapLabel.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/WrapLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/ui/widgets/WrapLabel.h -------------------------------------------------------------------------------- /launcher/updater/DownloadTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/DownloadTask.cpp -------------------------------------------------------------------------------- /launcher/updater/DownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/DownloadTask.h -------------------------------------------------------------------------------- /launcher/updater/DownloadTask_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/DownloadTask_test.cpp -------------------------------------------------------------------------------- /launcher/updater/GoUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/GoUpdate.cpp -------------------------------------------------------------------------------- /launcher/updater/GoUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/GoUpdate.h -------------------------------------------------------------------------------- /launcher/updater/UpdateChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/UpdateChecker.cpp -------------------------------------------------------------------------------- /launcher/updater/UpdateChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/UpdateChecker.h -------------------------------------------------------------------------------- /launcher/updater/UpdateChecker_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/UpdateChecker_test.cpp -------------------------------------------------------------------------------- /launcher/updater/testdata/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/testdata/1.json -------------------------------------------------------------------------------- /launcher/updater/testdata/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/testdata/2.json -------------------------------------------------------------------------------- /launcher/updater/testdata/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/testdata/channels.json -------------------------------------------------------------------------------- /launcher/updater/testdata/fileOneA: -------------------------------------------------------------------------------- 1 | stuff 2 | -------------------------------------------------------------------------------- /launcher/updater/testdata/fileOneB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/testdata/fileOneB -------------------------------------------------------------------------------- /launcher/updater/testdata/fileThree: -------------------------------------------------------------------------------- 1 | this is yet another file 2 | -------------------------------------------------------------------------------- /launcher/updater/testdata/fileTwo: -------------------------------------------------------------------------------- 1 | some other stuff 2 | -------------------------------------------------------------------------------- /launcher/updater/testdata/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/testdata/index.json -------------------------------------------------------------------------------- /launcher/updater/testdata/noChannels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/testdata/noChannels.json -------------------------------------------------------------------------------- /launcher/updater/testdata/oneChannel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/launcher/updater/testdata/oneChannel.json -------------------------------------------------------------------------------- /libraries/LocalPeer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/LocalPeer/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/LocalPeer/include/LocalPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/LocalPeer/include/LocalPeer.h -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LocalPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/LocalPeer/src/LocalPeer.cpp -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LockedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/LocalPeer/src/LockedFile.cpp -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LockedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/LocalPeer/src/LockedFile.h -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LockedFile_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/LocalPeer/src/LockedFile_unix.cpp -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LockedFile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/LocalPeer/src/LockedFile_win.cpp -------------------------------------------------------------------------------- /libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/README.md -------------------------------------------------------------------------------- /libraries/classparser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/classparser/include/classparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/include/classparser.h -------------------------------------------------------------------------------- /libraries/classparser/src/annotations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/src/annotations.cpp -------------------------------------------------------------------------------- /libraries/classparser/src/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/src/annotations.h -------------------------------------------------------------------------------- /libraries/classparser/src/classfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/src/classfile.h -------------------------------------------------------------------------------- /libraries/classparser/src/classparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/src/classparser.cpp -------------------------------------------------------------------------------- /libraries/classparser/src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/src/constants.h -------------------------------------------------------------------------------- /libraries/classparser/src/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/src/errors.h -------------------------------------------------------------------------------- /libraries/classparser/src/javaendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/src/javaendian.h -------------------------------------------------------------------------------- /libraries/classparser/src/membuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/classparser/src/membuffer.h -------------------------------------------------------------------------------- /libraries/hoedown/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/hoedown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/LICENSE -------------------------------------------------------------------------------- /libraries/hoedown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/README.md -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/include/hoedown/buffer.h -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/include/hoedown/escape.h -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/include/hoedown/html.h -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/include/hoedown/stack.h -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/include/hoedown/version.h -------------------------------------------------------------------------------- /libraries/hoedown/src/autolink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/autolink.c -------------------------------------------------------------------------------- /libraries/hoedown/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/buffer.c -------------------------------------------------------------------------------- /libraries/hoedown/src/document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/document.c -------------------------------------------------------------------------------- /libraries/hoedown/src/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/escape.c -------------------------------------------------------------------------------- /libraries/hoedown/src/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/html.c -------------------------------------------------------------------------------- /libraries/hoedown/src/html_blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/html_blocks.c -------------------------------------------------------------------------------- /libraries/hoedown/src/html_smartypants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/html_smartypants.c -------------------------------------------------------------------------------- /libraries/hoedown/src/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/stack.c -------------------------------------------------------------------------------- /libraries/hoedown/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/hoedown/src/version.c -------------------------------------------------------------------------------- /libraries/iconfix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/iconfix/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/iconfix/internal/qhexstring_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/iconfix/internal/qhexstring_p.h -------------------------------------------------------------------------------- /libraries/iconfix/internal/qiconloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/iconfix/internal/qiconloader.cpp -------------------------------------------------------------------------------- /libraries/iconfix/internal/qiconloader_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/iconfix/internal/qiconloader_p.h -------------------------------------------------------------------------------- /libraries/iconfix/xdgicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/iconfix/xdgicon.cpp -------------------------------------------------------------------------------- /libraries/iconfix/xdgicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/iconfix/xdgicon.h -------------------------------------------------------------------------------- /libraries/javacheck/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/javacheck/.gitignore -------------------------------------------------------------------------------- /libraries/javacheck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/javacheck/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/javacheck/JavaCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/javacheck/JavaCheck.java -------------------------------------------------------------------------------- /libraries/katabasis/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.kdev4 3 | -------------------------------------------------------------------------------- /libraries/katabasis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/katabasis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/LICENSE -------------------------------------------------------------------------------- /libraries/katabasis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/README.md -------------------------------------------------------------------------------- /libraries/katabasis/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/acknowledgements.md -------------------------------------------------------------------------------- /libraries/katabasis/src/DeviceFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/src/DeviceFlow.cpp -------------------------------------------------------------------------------- /libraries/katabasis/src/JsonResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/src/JsonResponse.cpp -------------------------------------------------------------------------------- /libraries/katabasis/src/JsonResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/src/JsonResponse.h -------------------------------------------------------------------------------- /libraries/katabasis/src/PollServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/src/PollServer.cpp -------------------------------------------------------------------------------- /libraries/katabasis/src/Reply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/katabasis/src/Reply.cpp -------------------------------------------------------------------------------- /libraries/launcher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/launcher/.gitignore -------------------------------------------------------------------------------- /libraries/launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/launcher/org/multimc/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/launcher/org/multimc/Utils.java -------------------------------------------------------------------------------- /libraries/optional-bare/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/optional-bare/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/optional-bare/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/optional-bare/LICENSE.txt -------------------------------------------------------------------------------- /libraries/optional-bare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/optional-bare/README.md -------------------------------------------------------------------------------- /libraries/qrcode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/qrcode/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/qrcode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/qrcode/LICENSE -------------------------------------------------------------------------------- /libraries/qrcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/qrcode/README.md -------------------------------------------------------------------------------- /libraries/qrcode/src/QrCodeGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/qrcode/src/QrCodeGenerator.cpp -------------------------------------------------------------------------------- /libraries/qrcode/src/qrcodegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/qrcode/src/qrcodegen.cpp -------------------------------------------------------------------------------- /libraries/qrcode/src/qrcodegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/qrcode/src/qrcodegen.h -------------------------------------------------------------------------------- /libraries/rainbow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/rainbow/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/rainbow/COPYING.LIB: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/rainbow/include/rainbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/rainbow/include/rainbow.h -------------------------------------------------------------------------------- /libraries/rainbow/include/rainbow_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/rainbow/include/rainbow_config.h -------------------------------------------------------------------------------- /libraries/rainbow/src/rainbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/rainbow/src/rainbow.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/systeminfo/include/distroutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/include/distroutils.h -------------------------------------------------------------------------------- /libraries/systeminfo/include/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/include/sys.h -------------------------------------------------------------------------------- /libraries/systeminfo/src/distroutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/src/distroutils.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/src/ntstatus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/src/ntstatus/README.md -------------------------------------------------------------------------------- /libraries/systeminfo/src/sys_apple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/src/sys_apple.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/src/sys_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/src/sys_test.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/src/sys_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/src/sys_unix.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/src/sys_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/systeminfo/src/sys_win32.cpp -------------------------------------------------------------------------------- /libraries/tomlc99/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/tomlc99/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/tomlc99/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/tomlc99/LICENSE -------------------------------------------------------------------------------- /libraries/tomlc99/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/tomlc99/README.md -------------------------------------------------------------------------------- /libraries/tomlc99/include/toml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/tomlc99/include/toml.h -------------------------------------------------------------------------------- /libraries/tomlc99/src/toml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/tomlc99/src/toml.c -------------------------------------------------------------------------------- /libraries/xz-embedded/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/xz-embedded/include/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/include/xz.h -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_config.h -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_crc32.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_crc64.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_dec_bcj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_dec_bcj.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_dec_lzma2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_dec_lzma2.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_dec_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_dec_stream.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_lzma2.h -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_private.h -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/src/xz_stream.h -------------------------------------------------------------------------------- /libraries/xz-embedded/xzminidec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MultiMC/Launcher/HEAD/libraries/xz-embedded/xzminidec.c --------------------------------------------------------------------------------