├── .clang-format ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .gitmodules ├── BUILD.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── COPYING.md ├── LICENSE ├── README.md ├── cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── GitFunctions.cmake ├── MacOSXBundleInfo.plist.in ├── QMakeQuery.cmake ├── UnitTest.cmake └── UnitTest │ ├── TestUtil.h │ ├── generate_test_data.cmake │ ├── test.manifest │ └── test.rc ├── default.nix ├── flake.lock ├── flake.nix ├── 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 ├── ModDownloadTask.cpp ├── ModDownloadTask.h ├── NullInstance.h ├── ProblemProvider.h ├── QObjectPtr.h ├── RWStorage.h ├── RecursiveFileSystemWatcher.cpp ├── RecursiveFileSystemWatcher.h ├── SeparatorPrefixTree.h ├── SkinUtils.cpp ├── SkinUtils.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 │ │ ├── QuitAfterGameStop.cpp │ │ ├── QuitAfterGameStop.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 │ ├── Agent.h │ ├── 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 │ │ ├── Yggdrasil.cpp │ │ ├── Yggdrasil.h │ │ ├── flows │ │ │ ├── AuthFlow.cpp │ │ │ ├── AuthFlow.h │ │ │ ├── MSA.cpp │ │ │ ├── MSA.h │ │ │ ├── Mojang.cpp │ │ │ ├── Mojang.h │ │ │ ├── Offline.cpp │ │ │ └── Offline.h │ │ └── steps │ │ │ ├── EntitlementsStep.cpp │ │ │ ├── EntitlementsStep.h │ │ │ ├── GetSkinStep.cpp │ │ │ ├── GetSkinStep.h │ │ │ ├── LauncherLoginStep.cpp │ │ │ ├── LauncherLoginStep.h │ │ │ ├── MSAStep.cpp │ │ │ ├── MSAStep.h │ │ │ ├── MigrationEligibilityStep.cpp │ │ │ ├── MigrationEligibilityStep.h │ │ │ ├── MinecraftProfileStep.cpp │ │ │ ├── MinecraftProfileStep.h │ │ │ ├── MinecraftProfileStepMojang.cpp │ │ │ ├── MinecraftProfileStepMojang.h │ │ │ ├── OfflineStep.cpp │ │ │ ├── OfflineStep.h │ │ │ ├── XboxAuthorizationStep.cpp │ │ │ ├── XboxAuthorizationStep.h │ │ │ ├── XboxProfileStep.cpp │ │ │ ├── XboxProfileStep.h │ │ │ ├── XboxUserStep.cpp │ │ │ ├── XboxUserStep.h │ │ │ ├── YggdrasilStep.cpp │ │ │ └── YggdrasilStep.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 │ │ ├── MinecraftServerTarget.cpp │ │ ├── MinecraftServerTarget.h │ │ ├── ModMinecraftJar.cpp │ │ ├── ModMinecraftJar.h │ │ ├── PrintInstanceInfo.cpp │ │ ├── PrintInstanceInfo.h │ │ ├── ReconstructAssets.cpp │ │ ├── ReconstructAssets.h │ │ ├── ScanModFolders.cpp │ │ ├── ScanModFolders.h │ │ ├── VerifyJavaInstall.cpp │ │ └── VerifyJavaInstall.h │ ├── mod │ │ ├── MetadataHandler.h │ │ ├── Mod.cpp │ │ ├── Mod.h │ │ ├── ModDetails.h │ │ ├── ModFolderModel.cpp │ │ ├── ModFolderModel.h │ │ ├── ModFolderModel_test.cpp │ │ ├── ResourcePackFolderModel.cpp │ │ ├── ResourcePackFolderModel.h │ │ ├── TexturePackFolderModel.cpp │ │ ├── TexturePackFolderModel.h │ │ └── tasks │ │ │ ├── LocalModParseTask.cpp │ │ │ ├── LocalModParseTask.h │ │ │ ├── LocalModUpdateTask.cpp │ │ │ ├── LocalModUpdateTask.h │ │ │ ├── ModFolderLoadTask.cpp │ │ │ └── ModFolderLoadTask.h │ ├── services │ │ ├── CapeChange.cpp │ │ ├── CapeChange.h │ │ ├── SkinDelete.cpp │ │ ├── SkinDelete.h │ │ ├── SkinUpload.cpp │ │ └── SkinUpload.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 │ ├── ModAPI.h │ ├── ModIndex.cpp │ ├── ModIndex.h │ ├── atlauncher │ │ ├── ATLPackIndex.cpp │ │ ├── ATLPackIndex.h │ │ ├── ATLPackInstallTask.cpp │ │ ├── ATLPackInstallTask.h │ │ ├── ATLPackManifest.cpp │ │ ├── ATLPackManifest.h │ │ ├── ATLShareCode.cpp │ │ └── ATLShareCode.h │ ├── flame │ │ ├── FileResolvingTask.cpp │ │ ├── FileResolvingTask.h │ │ ├── FlameAPI.h │ │ ├── FlameModIndex.cpp │ │ ├── FlameModIndex.h │ │ ├── FlamePackIndex.cpp │ │ ├── FlamePackIndex.h │ │ ├── PackManifest.cpp │ │ └── PackManifest.h │ ├── helpers │ │ ├── NetworkModAPI.cpp │ │ └── NetworkModAPI.h │ ├── legacy_ftb │ │ ├── PackFetchTask.cpp │ │ ├── PackFetchTask.h │ │ ├── PackHelpers.h │ │ ├── PackInstallTask.cpp │ │ ├── PackInstallTask.h │ │ ├── PrivatePackManager.cpp │ │ └── PrivatePackManager.h │ ├── modpacksch │ │ ├── FTBPackInstallTask.cpp │ │ ├── FTBPackInstallTask.h │ │ ├── FTBPackManifest.cpp │ │ └── FTBPackManifest.h │ ├── modrinth │ │ ├── ModrinthAPI.h │ │ ├── ModrinthPackIndex.cpp │ │ ├── ModrinthPackIndex.h │ │ ├── ModrinthPackManifest.cpp │ │ └── ModrinthPackManifest.h │ ├── packwiz │ │ ├── Packwiz.cpp │ │ ├── Packwiz.h │ │ ├── Packwiz_test.cpp │ │ └── testdata │ │ │ ├── borderless-mining.pw.toml │ │ │ └── screenshot-to-clipboard-fabric.pw.toml │ └── 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 │ ├── Upload.cpp │ ├── Upload.h │ └── Validator.h ├── news │ ├── NewsChecker.cpp │ ├── NewsChecker.h │ ├── NewsEntry.cpp │ └── NewsEntry.h ├── 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 │ │ │ │ ├── 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 │ │ │ ├── manymc.svg │ │ │ ├── modrinth.svg │ │ │ └── polymc.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── matrix.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 │ └── 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 ├── tasks │ ├── SequentialTask.cpp │ ├── SequentialTask.h │ ├── Task.cpp │ ├── Task.h │ └── Task_test.cpp ├── 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 │ │ ├── CopyInstanceDialog.cpp │ │ ├── CopyInstanceDialog.h │ │ ├── CopyInstanceDialog.ui │ │ ├── CustomMessageBox.cpp │ │ ├── CustomMessageBox.h │ │ ├── EditAccountDialog.cpp │ │ ├── EditAccountDialog.h │ │ ├── EditAccountDialog.ui │ │ ├── ExportInstanceDialog.cpp │ │ ├── ExportInstanceDialog.h │ │ ├── ExportInstanceDialog.ui │ │ ├── IconPickerDialog.cpp │ │ ├── IconPickerDialog.h │ │ ├── IconPickerDialog.ui │ │ ├── LoginDialog.cpp │ │ ├── LoginDialog.h │ │ ├── LoginDialog.ui │ │ ├── MSALoginDialog.cpp │ │ ├── MSALoginDialog.h │ │ ├── MSALoginDialog.ui │ │ ├── ModDownloadDialog.cpp │ │ ├── ModDownloadDialog.h │ │ ├── NewComponentDialog.cpp │ │ ├── NewComponentDialog.h │ │ ├── NewComponentDialog.ui │ │ ├── NewInstanceDialog.cpp │ │ ├── NewInstanceDialog.h │ │ ├── NewInstanceDialog.ui │ │ ├── OfflineLoginDialog.cpp │ │ ├── OfflineLoginDialog.h │ │ ├── OfflineLoginDialog.ui │ │ ├── ProfileSelectDialog.cpp │ │ ├── ProfileSelectDialog.h │ │ ├── ProfileSelectDialog.ui │ │ ├── ProfileSetupDialog.cpp │ │ ├── ProfileSetupDialog.h │ │ ├── ProfileSetupDialog.ui │ │ ├── ProgressDialog.cpp │ │ ├── ProgressDialog.h │ │ ├── ProgressDialog.ui │ │ ├── ReviewMessageBox.cpp │ │ ├── ReviewMessageBox.h │ │ ├── ReviewMessageBox.ui │ │ ├── ScrollMessageBox.cpp │ │ ├── ScrollMessageBox.h │ │ ├── ScrollMessageBox.ui │ │ ├── SkinUploadDialog.cpp │ │ ├── SkinUploadDialog.h │ │ ├── SkinUploadDialog.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 │ │ │ ├── APIPage.cpp │ │ │ ├── APIPage.h │ │ │ ├── APIPage.ui │ │ │ ├── AccountListPage.cpp │ │ │ ├── AccountListPage.h │ │ │ ├── AccountListPage.ui │ │ │ ├── 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 │ │ │ ├── ProxyPage.cpp │ │ │ ├── ProxyPage.h │ │ │ └── ProxyPage.ui │ │ ├── instance │ │ │ ├── GameOptionsPage.cpp │ │ │ ├── GameOptionsPage.h │ │ │ ├── GameOptionsPage.ui │ │ │ ├── InstanceSettingsPage.cpp │ │ │ ├── InstanceSettingsPage.h │ │ │ ├── InstanceSettingsPage.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 │ │ │ ├── ModModel.cpp │ │ │ ├── ModModel.h │ │ │ ├── ModPage.cpp │ │ │ ├── ModPage.h │ │ │ ├── ModPage.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 │ │ │ ├── flame │ │ │ ├── FlameModModel.cpp │ │ │ ├── FlameModModel.h │ │ │ ├── FlameModPage.cpp │ │ │ ├── FlameModPage.h │ │ │ ├── FlameModel.cpp │ │ │ ├── FlameModel.h │ │ │ ├── FlamePage.cpp │ │ │ ├── FlamePage.h │ │ │ └── FlamePage.ui │ │ │ ├── ftb │ │ │ ├── FtbFilterModel.cpp │ │ │ ├── FtbFilterModel.h │ │ │ ├── FtbListModel.cpp │ │ │ ├── FtbListModel.h │ │ │ ├── FtbPage.cpp │ │ │ ├── FtbPage.h │ │ │ └── FtbPage.ui │ │ │ ├── legacy_ftb │ │ │ ├── ListModel.cpp │ │ │ ├── ListModel.h │ │ │ ├── Page.cpp │ │ │ ├── Page.h │ │ │ └── Page.ui │ │ │ ├── modrinth │ │ │ ├── ModrinthModModel.cpp │ │ │ ├── ModrinthModModel.h │ │ │ ├── ModrinthModPage.cpp │ │ │ ├── ModrinthModPage.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 │ │ ├── PasteWizardPage.cpp │ │ ├── PasteWizardPage.h │ │ ├── PasteWizardPage.ui │ │ ├── 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 │ │ ├── ModFilterWidget.cpp │ │ ├── ModFilterWidget.h │ │ ├── ModFilterWidget.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 └── 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 │ │ ├── LauncherFactory.java │ │ ├── applet │ │ └── LegacyFrame.java │ │ ├── exception │ │ ├── ParameterNotFoundException.java │ │ └── ParseException.java │ │ ├── impl │ │ └── OneSixLauncher.java │ │ └── utils │ │ ├── Parameters.java │ │ └── Utils.java ├── optional-bare │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.md │ └── include │ │ └── nonstd │ │ └── optional ├── rainbow │ ├── CMakeLists.txt │ ├── COPYING.LIB │ ├── include │ │ └── rainbow.h │ └── src │ │ └── rainbow.cpp ├── systeminfo │ ├── CMakeLists.txt │ ├── include │ │ ├── distroutils.h │ │ └── sys.h │ └── src │ │ ├── distroutils.cpp │ │ ├── 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 ├── nix ├── NIX.md ├── default.nix └── flake-compat.nix ├── program_info ├── App.entitlements ├── CMakeLists.txt ├── logo.icns ├── logo.svg └── polymc.qrc └── wiki ├── logo.svg └── pic1.png /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pem -crlf 2 | **/testdata/** -text -diff 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/BUILD.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/COPYING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/README.md -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/GetGitRevisionDescription.cmake -------------------------------------------------------------------------------- /cmake/GetGitRevisionDescription.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/GetGitRevisionDescription.cmake.in -------------------------------------------------------------------------------- /cmake/GitFunctions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/GitFunctions.cmake -------------------------------------------------------------------------------- /cmake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /cmake/QMakeQuery.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/QMakeQuery.cmake -------------------------------------------------------------------------------- /cmake/UnitTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/UnitTest.cmake -------------------------------------------------------------------------------- /cmake/UnitTest/TestUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/UnitTest/TestUtil.h -------------------------------------------------------------------------------- /cmake/UnitTest/generate_test_data.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/UnitTest/generate_test_data.cmake -------------------------------------------------------------------------------- /cmake/UnitTest/test.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/UnitTest/test.manifest -------------------------------------------------------------------------------- /cmake/UnitTest/test.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/cmake/UnitTest/test.rc -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- 1 | (import nix/flake-compat.nix).defaultNix 2 | -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/flake.nix -------------------------------------------------------------------------------- /launcher/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Application.cpp -------------------------------------------------------------------------------- /launcher/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Application.h -------------------------------------------------------------------------------- /launcher/ApplicationMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ApplicationMessage.cpp -------------------------------------------------------------------------------- /launcher/ApplicationMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ApplicationMessage.h -------------------------------------------------------------------------------- /launcher/BaseInstaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/BaseInstaller.cpp -------------------------------------------------------------------------------- /launcher/BaseInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/BaseInstaller.h -------------------------------------------------------------------------------- /launcher/BaseInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/BaseInstance.cpp -------------------------------------------------------------------------------- /launcher/BaseInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/BaseInstance.h -------------------------------------------------------------------------------- /launcher/BaseVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/BaseVersion.h -------------------------------------------------------------------------------- /launcher/BaseVersionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/BaseVersionList.cpp -------------------------------------------------------------------------------- /launcher/BaseVersionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/BaseVersionList.h -------------------------------------------------------------------------------- /launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /launcher/Commandline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Commandline.cpp -------------------------------------------------------------------------------- /launcher/Commandline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Commandline.h -------------------------------------------------------------------------------- /launcher/DefaultVariable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/DefaultVariable.h -------------------------------------------------------------------------------- /launcher/DesktopServices.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/DesktopServices.cpp -------------------------------------------------------------------------------- /launcher/DesktopServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/DesktopServices.h -------------------------------------------------------------------------------- /launcher/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Exception.h -------------------------------------------------------------------------------- /launcher/ExponentialSeries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ExponentialSeries.h -------------------------------------------------------------------------------- /launcher/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/FileSystem.cpp -------------------------------------------------------------------------------- /launcher/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/FileSystem.h -------------------------------------------------------------------------------- /launcher/FileSystem_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/FileSystem_test.cpp -------------------------------------------------------------------------------- /launcher/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Filter.cpp -------------------------------------------------------------------------------- /launcher/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Filter.h -------------------------------------------------------------------------------- /launcher/GZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/GZip.cpp -------------------------------------------------------------------------------- /launcher/GZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/GZip.h -------------------------------------------------------------------------------- /launcher/GZip_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/GZip_test.cpp -------------------------------------------------------------------------------- /launcher/HoeDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/HoeDown.h -------------------------------------------------------------------------------- /launcher/InstanceCopyTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceCopyTask.cpp -------------------------------------------------------------------------------- /launcher/InstanceCopyTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceCopyTask.h -------------------------------------------------------------------------------- /launcher/InstanceCreationTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceCreationTask.cpp -------------------------------------------------------------------------------- /launcher/InstanceCreationTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceCreationTask.h -------------------------------------------------------------------------------- /launcher/InstanceImportTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceImportTask.cpp -------------------------------------------------------------------------------- /launcher/InstanceImportTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceImportTask.h -------------------------------------------------------------------------------- /launcher/InstanceList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceList.cpp -------------------------------------------------------------------------------- /launcher/InstanceList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceList.h -------------------------------------------------------------------------------- /launcher/InstancePageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstancePageProvider.h -------------------------------------------------------------------------------- /launcher/InstanceTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceTask.cpp -------------------------------------------------------------------------------- /launcher/InstanceTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/InstanceTask.h -------------------------------------------------------------------------------- /launcher/JavaCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/JavaCommon.cpp -------------------------------------------------------------------------------- /launcher/JavaCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/JavaCommon.h -------------------------------------------------------------------------------- /launcher/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Json.cpp -------------------------------------------------------------------------------- /launcher/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Json.h -------------------------------------------------------------------------------- /launcher/KonamiCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/KonamiCode.cpp -------------------------------------------------------------------------------- /launcher/KonamiCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/KonamiCode.h -------------------------------------------------------------------------------- /launcher/LaunchController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/LaunchController.cpp -------------------------------------------------------------------------------- /launcher/LaunchController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/LaunchController.h -------------------------------------------------------------------------------- /launcher/Launcher.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Launcher.in -------------------------------------------------------------------------------- /launcher/LoggedProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/LoggedProcess.cpp -------------------------------------------------------------------------------- /launcher/LoggedProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/LoggedProcess.h -------------------------------------------------------------------------------- /launcher/MMCStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/MMCStrings.cpp -------------------------------------------------------------------------------- /launcher/MMCStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/MMCStrings.h -------------------------------------------------------------------------------- /launcher/MMCTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/MMCTime.cpp -------------------------------------------------------------------------------- /launcher/MMCTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/MMCTime.h -------------------------------------------------------------------------------- /launcher/MMCZip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/MMCZip.cpp -------------------------------------------------------------------------------- /launcher/MMCZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/MMCZip.h -------------------------------------------------------------------------------- /launcher/MessageLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/MessageLevel.cpp -------------------------------------------------------------------------------- /launcher/MessageLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/MessageLevel.h -------------------------------------------------------------------------------- /launcher/ModDownloadTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ModDownloadTask.cpp -------------------------------------------------------------------------------- /launcher/ModDownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ModDownloadTask.h -------------------------------------------------------------------------------- /launcher/NullInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/NullInstance.h -------------------------------------------------------------------------------- /launcher/ProblemProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ProblemProvider.h -------------------------------------------------------------------------------- /launcher/QObjectPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/QObjectPtr.h -------------------------------------------------------------------------------- /launcher/RWStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/RWStorage.h -------------------------------------------------------------------------------- /launcher/RecursiveFileSystemWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/RecursiveFileSystemWatcher.cpp -------------------------------------------------------------------------------- /launcher/RecursiveFileSystemWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/RecursiveFileSystemWatcher.h -------------------------------------------------------------------------------- /launcher/SeparatorPrefixTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/SeparatorPrefixTree.h -------------------------------------------------------------------------------- /launcher/SkinUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/SkinUtils.cpp -------------------------------------------------------------------------------- /launcher/SkinUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/SkinUtils.h -------------------------------------------------------------------------------- /launcher/UpdateController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/UpdateController.cpp -------------------------------------------------------------------------------- /launcher/UpdateController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/UpdateController.h -------------------------------------------------------------------------------- /launcher/Usable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Usable.h -------------------------------------------------------------------------------- /launcher/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Version.cpp -------------------------------------------------------------------------------- /launcher/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Version.h -------------------------------------------------------------------------------- /launcher/VersionProxyModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/VersionProxyModel.cpp -------------------------------------------------------------------------------- /launcher/VersionProxyModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/VersionProxyModel.h -------------------------------------------------------------------------------- /launcher/Version_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/Version_test.cpp -------------------------------------------------------------------------------- /launcher/WatchLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/WatchLock.h -------------------------------------------------------------------------------- /launcher/icons/IconList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/icons/IconList.cpp -------------------------------------------------------------------------------- /launcher/icons/IconList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/icons/IconList.h -------------------------------------------------------------------------------- /launcher/icons/IconUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/icons/IconUtils.cpp -------------------------------------------------------------------------------- /launcher/icons/IconUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/icons/IconUtils.h -------------------------------------------------------------------------------- /launcher/icons/MMCIcon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/icons/MMCIcon.cpp -------------------------------------------------------------------------------- /launcher/icons/MMCIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/icons/MMCIcon.h -------------------------------------------------------------------------------- /launcher/install_prereqs.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/install_prereqs.cmake.in -------------------------------------------------------------------------------- /launcher/java/JavaChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaChecker.cpp -------------------------------------------------------------------------------- /launcher/java/JavaChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaChecker.h -------------------------------------------------------------------------------- /launcher/java/JavaCheckerJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaCheckerJob.cpp -------------------------------------------------------------------------------- /launcher/java/JavaCheckerJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaCheckerJob.h -------------------------------------------------------------------------------- /launcher/java/JavaInstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaInstall.cpp -------------------------------------------------------------------------------- /launcher/java/JavaInstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaInstall.h -------------------------------------------------------------------------------- /launcher/java/JavaInstallList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaInstallList.cpp -------------------------------------------------------------------------------- /launcher/java/JavaInstallList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaInstallList.h -------------------------------------------------------------------------------- /launcher/java/JavaUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaUtils.cpp -------------------------------------------------------------------------------- /launcher/java/JavaUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaUtils.h -------------------------------------------------------------------------------- /launcher/java/JavaVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaVersion.cpp -------------------------------------------------------------------------------- /launcher/java/JavaVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaVersion.h -------------------------------------------------------------------------------- /launcher/java/JavaVersion_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/java/JavaVersion_test.cpp -------------------------------------------------------------------------------- /launcher/launch/LaunchStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/LaunchStep.cpp -------------------------------------------------------------------------------- /launcher/launch/LaunchStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/LaunchStep.h -------------------------------------------------------------------------------- /launcher/launch/LaunchTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/LaunchTask.cpp -------------------------------------------------------------------------------- /launcher/launch/LaunchTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/LaunchTask.h -------------------------------------------------------------------------------- /launcher/launch/LogModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/LogModel.cpp -------------------------------------------------------------------------------- /launcher/launch/LogModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/LogModel.h -------------------------------------------------------------------------------- /launcher/launch/steps/CheckJava.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/CheckJava.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/CheckJava.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/CheckJava.h -------------------------------------------------------------------------------- /launcher/launch/steps/LookupServerAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/LookupServerAddress.h -------------------------------------------------------------------------------- /launcher/launch/steps/PostLaunchCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/PostLaunchCommand.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/PostLaunchCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/PostLaunchCommand.h -------------------------------------------------------------------------------- /launcher/launch/steps/PreLaunchCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/PreLaunchCommand.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/PreLaunchCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/PreLaunchCommand.h -------------------------------------------------------------------------------- /launcher/launch/steps/QuitAfterGameStop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/QuitAfterGameStop.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/QuitAfterGameStop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/QuitAfterGameStop.h -------------------------------------------------------------------------------- /launcher/launch/steps/TextPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/TextPrint.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/TextPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/TextPrint.h -------------------------------------------------------------------------------- /launcher/launch/steps/Update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/Update.cpp -------------------------------------------------------------------------------- /launcher/launch/steps/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/launch/steps/Update.h -------------------------------------------------------------------------------- /launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/main.cpp -------------------------------------------------------------------------------- /launcher/meta/BaseEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/BaseEntity.cpp -------------------------------------------------------------------------------- /launcher/meta/BaseEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/BaseEntity.h -------------------------------------------------------------------------------- /launcher/meta/Index.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/Index.cpp -------------------------------------------------------------------------------- /launcher/meta/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/Index.h -------------------------------------------------------------------------------- /launcher/meta/Index_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/Index_test.cpp -------------------------------------------------------------------------------- /launcher/meta/JsonFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/JsonFormat.cpp -------------------------------------------------------------------------------- /launcher/meta/JsonFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/JsonFormat.h -------------------------------------------------------------------------------- /launcher/meta/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/Version.cpp -------------------------------------------------------------------------------- /launcher/meta/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/Version.h -------------------------------------------------------------------------------- /launcher/meta/VersionList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/VersionList.cpp -------------------------------------------------------------------------------- /launcher/meta/VersionList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/meta/VersionList.h -------------------------------------------------------------------------------- /launcher/minecraft/Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/Agent.h -------------------------------------------------------------------------------- /launcher/minecraft/AssetsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/AssetsUtils.cpp -------------------------------------------------------------------------------- /launcher/minecraft/AssetsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/AssetsUtils.h -------------------------------------------------------------------------------- /launcher/minecraft/Component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/Component.cpp -------------------------------------------------------------------------------- /launcher/minecraft/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/Component.h -------------------------------------------------------------------------------- /launcher/minecraft/ComponentUpdateTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/ComponentUpdateTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/ComponentUpdateTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/ComponentUpdateTask.h -------------------------------------------------------------------------------- /launcher/minecraft/ComponentUpdateTask_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/ComponentUpdateTask_p.h -------------------------------------------------------------------------------- /launcher/minecraft/GradleSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/GradleSpecifier.h -------------------------------------------------------------------------------- /launcher/minecraft/GradleSpecifier_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/GradleSpecifier_test.cpp -------------------------------------------------------------------------------- /launcher/minecraft/LaunchProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/LaunchProfile.cpp -------------------------------------------------------------------------------- /launcher/minecraft/LaunchProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/LaunchProfile.h -------------------------------------------------------------------------------- /launcher/minecraft/Library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/Library.cpp -------------------------------------------------------------------------------- /launcher/minecraft/Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/Library.h -------------------------------------------------------------------------------- /launcher/minecraft/Library_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/Library_test.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MinecraftInstance.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MinecraftInstance.h -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftLoadAndCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MinecraftLoadAndCheck.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftLoadAndCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MinecraftLoadAndCheck.h -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MinecraftUpdate.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MinecraftUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MinecraftUpdate.h -------------------------------------------------------------------------------- /launcher/minecraft/MojangDownloadInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MojangDownloadInfo.h -------------------------------------------------------------------------------- /launcher/minecraft/MojangVersionFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MojangVersionFormat.cpp -------------------------------------------------------------------------------- /launcher/minecraft/MojangVersionFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/MojangVersionFormat.h -------------------------------------------------------------------------------- /launcher/minecraft/OneSixVersionFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/OneSixVersionFormat.cpp -------------------------------------------------------------------------------- /launcher/minecraft/OneSixVersionFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/OneSixVersionFormat.h -------------------------------------------------------------------------------- /launcher/minecraft/OpSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/OpSys.cpp -------------------------------------------------------------------------------- /launcher/minecraft/OpSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/OpSys.h -------------------------------------------------------------------------------- /launcher/minecraft/PackProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/PackProfile.cpp -------------------------------------------------------------------------------- /launcher/minecraft/PackProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/PackProfile.h -------------------------------------------------------------------------------- /launcher/minecraft/PackProfile_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/PackProfile_p.h -------------------------------------------------------------------------------- /launcher/minecraft/ParseUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/ParseUtils.cpp -------------------------------------------------------------------------------- /launcher/minecraft/ParseUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/ParseUtils.h -------------------------------------------------------------------------------- /launcher/minecraft/ParseUtils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/ParseUtils_test.cpp -------------------------------------------------------------------------------- /launcher/minecraft/ProfileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/ProfileUtils.cpp -------------------------------------------------------------------------------- /launcher/minecraft/ProfileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/ProfileUtils.h -------------------------------------------------------------------------------- /launcher/minecraft/Rule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/Rule.cpp -------------------------------------------------------------------------------- /launcher/minecraft/Rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/Rule.h -------------------------------------------------------------------------------- /launcher/minecraft/VersionFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/VersionFile.cpp -------------------------------------------------------------------------------- /launcher/minecraft/VersionFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/VersionFile.h -------------------------------------------------------------------------------- /launcher/minecraft/VersionFilterData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/VersionFilterData.cpp -------------------------------------------------------------------------------- /launcher/minecraft/VersionFilterData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/VersionFilterData.h -------------------------------------------------------------------------------- /launcher/minecraft/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/World.cpp -------------------------------------------------------------------------------- /launcher/minecraft/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/World.h -------------------------------------------------------------------------------- /launcher/minecraft/WorldList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/WorldList.cpp -------------------------------------------------------------------------------- /launcher/minecraft/WorldList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/WorldList.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AccountData.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AccountData.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AccountList.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AccountList.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AccountTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AccountTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AccountTask.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AuthRequest.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AuthRequest.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AuthSession.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AuthSession.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AuthStep.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/AuthStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/AuthStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/MinecraftAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/MinecraftAccount.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/MinecraftAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/MinecraftAccount.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/Parsers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/Parsers.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/Parsers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/Parsers.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/Yggdrasil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/Yggdrasil.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/Yggdrasil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/Yggdrasil.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/AuthFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/flows/AuthFlow.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/AuthFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/flows/AuthFlow.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/MSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/flows/MSA.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/MSA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/flows/MSA.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/Mojang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/flows/Mojang.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/Mojang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/flows/Mojang.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/Offline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/flows/Offline.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/flows/Offline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/flows/Offline.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/GetSkinStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/steps/GetSkinStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/MSAStep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/steps/MSAStep.cpp -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/MSAStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/steps/MSAStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/OfflineStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/steps/OfflineStep.h -------------------------------------------------------------------------------- /launcher/minecraft/auth/steps/XboxUserStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/auth/steps/XboxUserStep.h -------------------------------------------------------------------------------- /launcher/minecraft/gameoptions/GameOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/gameoptions/GameOptions.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ClaimAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/launch/ClaimAccount.cpp -------------------------------------------------------------------------------- /launcher/minecraft/launch/ClaimAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/launch/ClaimAccount.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/DirectJavaLaunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/launch/DirectJavaLaunch.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ExtractNatives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/launch/ExtractNatives.cpp -------------------------------------------------------------------------------- /launcher/minecraft/launch/ExtractNatives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/launch/ExtractNatives.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ModMinecraftJar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/launch/ModMinecraftJar.h -------------------------------------------------------------------------------- /launcher/minecraft/launch/ScanModFolders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/launch/ScanModFolders.cpp -------------------------------------------------------------------------------- /launcher/minecraft/launch/ScanModFolders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/launch/ScanModFolders.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/MetadataHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/mod/MetadataHandler.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/Mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/mod/Mod.cpp -------------------------------------------------------------------------------- /launcher/minecraft/mod/Mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/mod/Mod.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/ModDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/mod/ModDetails.h -------------------------------------------------------------------------------- /launcher/minecraft/mod/ModFolderModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/mod/ModFolderModel.cpp -------------------------------------------------------------------------------- /launcher/minecraft/mod/ModFolderModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/mod/ModFolderModel.h -------------------------------------------------------------------------------- /launcher/minecraft/services/CapeChange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/services/CapeChange.cpp -------------------------------------------------------------------------------- /launcher/minecraft/services/CapeChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/services/CapeChange.h -------------------------------------------------------------------------------- /launcher/minecraft/services/SkinDelete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/services/SkinDelete.cpp -------------------------------------------------------------------------------- /launcher/minecraft/services/SkinDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/services/SkinDelete.h -------------------------------------------------------------------------------- /launcher/minecraft/services/SkinUpload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/services/SkinUpload.cpp -------------------------------------------------------------------------------- /launcher/minecraft/services/SkinUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/services/SkinUpload.h -------------------------------------------------------------------------------- /launcher/minecraft/testdata/1.9-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/testdata/1.9-simple.json -------------------------------------------------------------------------------- /launcher/minecraft/testdata/1.9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/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/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/testdata/lib-native.json -------------------------------------------------------------------------------- /launcher/minecraft/testdata/lib-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/testdata/lib-simple.json -------------------------------------------------------------------------------- /launcher/minecraft/testdata/testname-testversion-linux-32.jar: -------------------------------------------------------------------------------- 1 | dummy test file. 2 | -------------------------------------------------------------------------------- /launcher/minecraft/update/AssetUpdateTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/update/AssetUpdateTask.h -------------------------------------------------------------------------------- /launcher/minecraft/update/FMLLibrariesTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/update/FMLLibrariesTask.h -------------------------------------------------------------------------------- /launcher/minecraft/update/FoldersTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/update/FoldersTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/update/FoldersTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/update/FoldersTask.h -------------------------------------------------------------------------------- /launcher/minecraft/update/LibrariesTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/update/LibrariesTask.cpp -------------------------------------------------------------------------------- /launcher/minecraft/update/LibrariesTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/minecraft/update/LibrariesTask.h -------------------------------------------------------------------------------- /launcher/modplatform/ModAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/ModAPI.h -------------------------------------------------------------------------------- /launcher/modplatform/ModIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/ModIndex.cpp -------------------------------------------------------------------------------- /launcher/modplatform/ModIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/ModIndex.h -------------------------------------------------------------------------------- /launcher/modplatform/flame/FlameAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/flame/FlameAPI.h -------------------------------------------------------------------------------- /launcher/modplatform/flame/FlameModIndex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/flame/FlameModIndex.cpp -------------------------------------------------------------------------------- /launcher/modplatform/flame/FlameModIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/flame/FlameModIndex.h -------------------------------------------------------------------------------- /launcher/modplatform/flame/FlamePackIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/flame/FlamePackIndex.h -------------------------------------------------------------------------------- /launcher/modplatform/flame/PackManifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/flame/PackManifest.cpp -------------------------------------------------------------------------------- /launcher/modplatform/flame/PackManifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/flame/PackManifest.h -------------------------------------------------------------------------------- /launcher/modplatform/helpers/NetworkModAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/helpers/NetworkModAPI.h -------------------------------------------------------------------------------- /launcher/modplatform/modrinth/ModrinthAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/modrinth/ModrinthAPI.h -------------------------------------------------------------------------------- /launcher/modplatform/packwiz/Packwiz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/packwiz/Packwiz.cpp -------------------------------------------------------------------------------- /launcher/modplatform/packwiz/Packwiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/modplatform/packwiz/Packwiz.h -------------------------------------------------------------------------------- /launcher/mojang/PackageManifest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/mojang/PackageManifest.cpp -------------------------------------------------------------------------------- /launcher/mojang/PackageManifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/mojang/PackageManifest.h -------------------------------------------------------------------------------- /launcher/mojang/PackageManifest_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/mojang/PackageManifest_test.cpp -------------------------------------------------------------------------------- /launcher/mojang/testdata/1.8.0_202-x64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/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/MinecraftMachina/ManyMC/HEAD/launcher/net/ByteArraySink.h -------------------------------------------------------------------------------- /launcher/net/ChecksumValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/ChecksumValidator.h -------------------------------------------------------------------------------- /launcher/net/Download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/Download.cpp -------------------------------------------------------------------------------- /launcher/net/Download.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/Download.h -------------------------------------------------------------------------------- /launcher/net/FileSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/FileSink.cpp -------------------------------------------------------------------------------- /launcher/net/FileSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/FileSink.h -------------------------------------------------------------------------------- /launcher/net/HttpMetaCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/HttpMetaCache.cpp -------------------------------------------------------------------------------- /launcher/net/HttpMetaCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/HttpMetaCache.h -------------------------------------------------------------------------------- /launcher/net/MetaCacheSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/MetaCacheSink.cpp -------------------------------------------------------------------------------- /launcher/net/MetaCacheSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/MetaCacheSink.h -------------------------------------------------------------------------------- /launcher/net/Mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/Mode.h -------------------------------------------------------------------------------- /launcher/net/NetAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/NetAction.h -------------------------------------------------------------------------------- /launcher/net/NetJob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/NetJob.cpp -------------------------------------------------------------------------------- /launcher/net/NetJob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/NetJob.h -------------------------------------------------------------------------------- /launcher/net/PasteUpload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/PasteUpload.cpp -------------------------------------------------------------------------------- /launcher/net/PasteUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/PasteUpload.h -------------------------------------------------------------------------------- /launcher/net/Sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/Sink.h -------------------------------------------------------------------------------- /launcher/net/Upload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/Upload.cpp -------------------------------------------------------------------------------- /launcher/net/Upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/Upload.h -------------------------------------------------------------------------------- /launcher/net/Validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/net/Validator.h -------------------------------------------------------------------------------- /launcher/news/NewsChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/news/NewsChecker.cpp -------------------------------------------------------------------------------- /launcher/news/NewsChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/news/NewsChecker.h -------------------------------------------------------------------------------- /launcher/news/NewsEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/news/NewsEntry.cpp -------------------------------------------------------------------------------- /launcher/news/NewsEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/news/NewsEntry.h -------------------------------------------------------------------------------- /launcher/pathmatcher/FSTreeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/pathmatcher/FSTreeMatcher.h -------------------------------------------------------------------------------- /launcher/pathmatcher/IPathMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/pathmatcher/IPathMatcher.h -------------------------------------------------------------------------------- /launcher/pathmatcher/MultiMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/pathmatcher/MultiMatcher.h -------------------------------------------------------------------------------- /launcher/pathmatcher/RegexpMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/pathmatcher/RegexpMatcher.h -------------------------------------------------------------------------------- /launcher/resources/OSX/OSX.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/OSX.qrc -------------------------------------------------------------------------------- /launcher/resources/OSX/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/index.theme -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/about.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/accounts.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/coremods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/coremods.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/jarmods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/jarmods.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/language.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/launcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/launcher.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/notes.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/patreon.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/proxy.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/refresh.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/settings.svg -------------------------------------------------------------------------------- /launcher/resources/OSX/scalable/worlds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/OSX/scalable/worlds.svg -------------------------------------------------------------------------------- /launcher/resources/backgrounds/catbgrnd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/backgrounds/catbgrnd2.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/catmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/backgrounds/catmas.png -------------------------------------------------------------------------------- /launcher/resources/documents/documents.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/documents/documents.qrc -------------------------------------------------------------------------------- /launcher/resources/flat/flat.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/flat.qrc -------------------------------------------------------------------------------- /launcher/resources/flat/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/index.theme -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/about.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/cat.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/discord.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/jarmods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/jarmods.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/multimc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/multimc.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/notes.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/patreon.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/proxy.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/refresh.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/star.svg -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/worlds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/flat/scalable/worlds.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/iOS.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/iOS.qrc -------------------------------------------------------------------------------- /launcher/resources/iOS/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/index.theme -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/about.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/about.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/accounts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/accounts.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/coremods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/coremods.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/jarmods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/jarmods.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/language.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/launcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/launcher.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/multimc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/multimc.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/notes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/notes.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/patreon.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/proxy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/proxy.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/refresh.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/settings.svg -------------------------------------------------------------------------------- /launcher/resources/iOS/scalable/worlds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/iOS/scalable/worlds.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/16x16/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/22x22/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/24x24/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/24x24/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/24x24/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/24x24/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/24x24/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/32x32/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/48x48/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/64x64/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/8x8/noaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/8x8/noaccount.png -------------------------------------------------------------------------------- /launcher/resources/multimc/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/index.theme -------------------------------------------------------------------------------- /launcher/resources/multimc/multimc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/multimc.qrc -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/multimc/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/index.theme -------------------------------------------------------------------------------- /launcher/resources/pe_blue/pe_blue.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/pe_blue.qrc -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/pe_blue/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_blue/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/pe_colored/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_colored/index.theme -------------------------------------------------------------------------------- /launcher/resources/pe_colored/pe_colored.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_colored/pe_colored.qrc -------------------------------------------------------------------------------- /launcher/resources/pe_dark/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/index.theme -------------------------------------------------------------------------------- /launcher/resources/pe_dark/pe_dark.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/pe_dark.qrc -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/scalable/copy.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/scalable/help.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/scalable/java.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/pe_dark/scalable/news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_dark/scalable/news.svg -------------------------------------------------------------------------------- /launcher/resources/pe_light/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_light/index.theme -------------------------------------------------------------------------------- /launcher/resources/pe_light/pe_light.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_light/pe_light.qrc -------------------------------------------------------------------------------- /launcher/resources/pe_light/scalable/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_light/scalable/bug.svg -------------------------------------------------------------------------------- /launcher/resources/pe_light/scalable/log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_light/scalable/log.svg -------------------------------------------------------------------------------- /launcher/resources/pe_light/scalable/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/pe_light/scalable/new.svg -------------------------------------------------------------------------------- /launcher/resources/sources/burfcat_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/burfcat_hat.png -------------------------------------------------------------------------------- /launcher/resources/sources/cattiversary.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/cattiversary.xcf -------------------------------------------------------------------------------- /launcher/resources/sources/clucker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/clucker.svg -------------------------------------------------------------------------------- /launcher/resources/sources/creeper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/creeper.svg -------------------------------------------------------------------------------- /launcher/resources/sources/enderpearl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/enderpearl.svg -------------------------------------------------------------------------------- /launcher/resources/sources/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/flame.svg -------------------------------------------------------------------------------- /launcher/resources/sources/ftb-glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/ftb-glow.svg -------------------------------------------------------------------------------- /launcher/resources/sources/ftb-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/ftb-logo.svg -------------------------------------------------------------------------------- /launcher/resources/sources/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/gear.svg -------------------------------------------------------------------------------- /launcher/resources/sources/herobrine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/herobrine.svg -------------------------------------------------------------------------------- /launcher/resources/sources/magitech.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/magitech.svg -------------------------------------------------------------------------------- /launcher/resources/sources/meat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/meat.svg -------------------------------------------------------------------------------- /launcher/resources/sources/netherstar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/netherstar.svg -------------------------------------------------------------------------------- /launcher/resources/sources/pskeleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/pskeleton.svg -------------------------------------------------------------------------------- /launcher/resources/sources/skeleton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/skeleton.svg -------------------------------------------------------------------------------- /launcher/resources/sources/squarecreeper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/squarecreeper.svg -------------------------------------------------------------------------------- /launcher/resources/sources/steve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/resources/sources/steve.svg -------------------------------------------------------------------------------- /launcher/screenshots/ImgurAlbumCreation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/screenshots/ImgurAlbumCreation.cpp -------------------------------------------------------------------------------- /launcher/screenshots/ImgurAlbumCreation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/screenshots/ImgurAlbumCreation.h -------------------------------------------------------------------------------- /launcher/screenshots/ImgurUpload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/screenshots/ImgurUpload.cpp -------------------------------------------------------------------------------- /launcher/screenshots/ImgurUpload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/screenshots/ImgurUpload.h -------------------------------------------------------------------------------- /launcher/screenshots/Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/screenshots/Screenshot.h -------------------------------------------------------------------------------- /launcher/settings/INIFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/INIFile.cpp -------------------------------------------------------------------------------- /launcher/settings/INIFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/INIFile.h -------------------------------------------------------------------------------- /launcher/settings/INIFile_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/INIFile_test.cpp -------------------------------------------------------------------------------- /launcher/settings/INISettingsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/INISettingsObject.cpp -------------------------------------------------------------------------------- /launcher/settings/INISettingsObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/INISettingsObject.h -------------------------------------------------------------------------------- /launcher/settings/OverrideSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/OverrideSetting.cpp -------------------------------------------------------------------------------- /launcher/settings/OverrideSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/OverrideSetting.h -------------------------------------------------------------------------------- /launcher/settings/PassthroughSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/PassthroughSetting.cpp -------------------------------------------------------------------------------- /launcher/settings/PassthroughSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/PassthroughSetting.h -------------------------------------------------------------------------------- /launcher/settings/Setting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/Setting.cpp -------------------------------------------------------------------------------- /launcher/settings/Setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/Setting.h -------------------------------------------------------------------------------- /launcher/settings/SettingsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/SettingsObject.cpp -------------------------------------------------------------------------------- /launcher/settings/SettingsObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/settings/SettingsObject.h -------------------------------------------------------------------------------- /launcher/tasks/SequentialTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tasks/SequentialTask.cpp -------------------------------------------------------------------------------- /launcher/tasks/SequentialTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tasks/SequentialTask.h -------------------------------------------------------------------------------- /launcher/tasks/Task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tasks/Task.cpp -------------------------------------------------------------------------------- /launcher/tasks/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tasks/Task.h -------------------------------------------------------------------------------- /launcher/tasks/Task_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tasks/Task_test.cpp -------------------------------------------------------------------------------- /launcher/testdata/test_folder/assets/minecraft/textures/blah.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/testdata/test_folder/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/testdata/test_folder/pack.mcmeta -------------------------------------------------------------------------------- /launcher/testdata/test_folder/pack.nfo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/tools/BaseExternalTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/BaseExternalTool.cpp -------------------------------------------------------------------------------- /launcher/tools/BaseExternalTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/BaseExternalTool.h -------------------------------------------------------------------------------- /launcher/tools/BaseProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/BaseProfiler.cpp -------------------------------------------------------------------------------- /launcher/tools/BaseProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/BaseProfiler.h -------------------------------------------------------------------------------- /launcher/tools/JProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/JProfiler.cpp -------------------------------------------------------------------------------- /launcher/tools/JProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/JProfiler.h -------------------------------------------------------------------------------- /launcher/tools/JVisualVM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/JVisualVM.cpp -------------------------------------------------------------------------------- /launcher/tools/JVisualVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/JVisualVM.h -------------------------------------------------------------------------------- /launcher/tools/MCEditTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/MCEditTool.cpp -------------------------------------------------------------------------------- /launcher/tools/MCEditTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/tools/MCEditTool.h -------------------------------------------------------------------------------- /launcher/translations/POTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/translations/POTranslator.cpp -------------------------------------------------------------------------------- /launcher/translations/POTranslator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/translations/POTranslator.h -------------------------------------------------------------------------------- /launcher/translations/TranslationsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/translations/TranslationsModel.cpp -------------------------------------------------------------------------------- /launcher/translations/TranslationsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/translations/TranslationsModel.h -------------------------------------------------------------------------------- /launcher/ui/ColorCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/ColorCache.cpp -------------------------------------------------------------------------------- /launcher/ui/ColorCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/ColorCache.h -------------------------------------------------------------------------------- /launcher/ui/GuiUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/GuiUtil.cpp -------------------------------------------------------------------------------- /launcher/ui/GuiUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/GuiUtil.h -------------------------------------------------------------------------------- /launcher/ui/InstanceWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/InstanceWindow.cpp -------------------------------------------------------------------------------- /launcher/ui/InstanceWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/InstanceWindow.h -------------------------------------------------------------------------------- /launcher/ui/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/MainWindow.cpp -------------------------------------------------------------------------------- /launcher/ui/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/MainWindow.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/AboutDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/AboutDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/AboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/AboutDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/CopyInstanceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/CopyInstanceDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/CopyInstanceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/CopyInstanceDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/CopyInstanceDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/CopyInstanceDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/CustomMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/CustomMessageBox.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/CustomMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/CustomMessageBox.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/EditAccountDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/EditAccountDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/EditAccountDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/EditAccountDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/EditAccountDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/EditAccountDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ExportInstanceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ExportInstanceDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ExportInstanceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ExportInstanceDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ExportInstanceDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ExportInstanceDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/IconPickerDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/IconPickerDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/IconPickerDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/IconPickerDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/IconPickerDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/IconPickerDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/LoginDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/LoginDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/LoginDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/LoginDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/LoginDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/LoginDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/MSALoginDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/MSALoginDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/MSALoginDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/MSALoginDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/MSALoginDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/MSALoginDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ModDownloadDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ModDownloadDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ModDownloadDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ModDownloadDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewComponentDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/NewComponentDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewComponentDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/NewComponentDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewComponentDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/NewComponentDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewInstanceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/NewInstanceDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewInstanceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/NewInstanceDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/NewInstanceDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/NewInstanceDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/OfflineLoginDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/OfflineLoginDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/OfflineLoginDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/OfflineLoginDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/OfflineLoginDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/OfflineLoginDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSelectDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProfileSelectDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSelectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProfileSelectDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSelectDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProfileSelectDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSetupDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProfileSetupDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSetupDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProfileSetupDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProfileSetupDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProfileSetupDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProgressDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProgressDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProgressDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProgressDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ProgressDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ProgressDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ReviewMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ReviewMessageBox.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ReviewMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ReviewMessageBox.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ReviewMessageBox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ReviewMessageBox.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/ScrollMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ScrollMessageBox.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ScrollMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ScrollMessageBox.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/ScrollMessageBox.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/ScrollMessageBox.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/SkinUploadDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/SkinUploadDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/SkinUploadDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/SkinUploadDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/SkinUploadDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/SkinUploadDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/UpdateDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/UpdateDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/UpdateDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/UpdateDialog.h -------------------------------------------------------------------------------- /launcher/ui/dialogs/UpdateDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/UpdateDialog.ui -------------------------------------------------------------------------------- /launcher/ui/dialogs/VersionSelectDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/VersionSelectDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/VersionSelectDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/dialogs/VersionSelectDialog.h -------------------------------------------------------------------------------- /launcher/ui/instanceview/InstanceDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/instanceview/InstanceDelegate.h -------------------------------------------------------------------------------- /launcher/ui/instanceview/InstanceView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/instanceview/InstanceView.cpp -------------------------------------------------------------------------------- /launcher/ui/instanceview/InstanceView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/instanceview/InstanceView.h -------------------------------------------------------------------------------- /launcher/ui/instanceview/VisualGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/instanceview/VisualGroup.cpp -------------------------------------------------------------------------------- /launcher/ui/instanceview/VisualGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/instanceview/VisualGroup.h -------------------------------------------------------------------------------- /launcher/ui/pagedialog/PageDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pagedialog/PageDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/pagedialog/PageDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pagedialog/PageDialog.h -------------------------------------------------------------------------------- /launcher/ui/pages/BasePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/BasePage.h -------------------------------------------------------------------------------- /launcher/ui/pages/BasePageContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/BasePageContainer.h -------------------------------------------------------------------------------- /launcher/ui/pages/BasePageProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/BasePageProvider.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/APIPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/APIPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/APIPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/APIPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/APIPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/APIPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/AccountListPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/AccountListPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/AccountListPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/AccountListPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/AccountListPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/AccountListPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/ExternalToolsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/ExternalToolsPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/JavaPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/JavaPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/JavaPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/JavaPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/JavaPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/JavaPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/LanguagePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/LanguagePage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/LanguagePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/LanguagePage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/LauncherPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/LauncherPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/LauncherPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/LauncherPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/LauncherPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/LauncherPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/MinecraftPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/MinecraftPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/MinecraftPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/MinecraftPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/MinecraftPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/MinecraftPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/global/ProxyPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/ProxyPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/ProxyPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/ProxyPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/global/ProxyPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/global/ProxyPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/GameOptionsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/GameOptionsPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/LogPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/LogPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/LogPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/LogPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/LogPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/LogPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ModFolderPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/ModFolderPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ModFolderPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/ModFolderPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ModFolderPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/ModFolderPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/NotesPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/NotesPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/NotesPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/NotesPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/NotesPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/NotesPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/OtherLogsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/OtherLogsPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/OtherLogsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/OtherLogsPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/OtherLogsPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/OtherLogsPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ServersPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/ServersPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ServersPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/ServersPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ServersPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/ServersPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/VersionPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/VersionPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/VersionPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/VersionPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/instance/VersionPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/VersionPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/WorldListPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/instance/WorldListPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/ImportPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/modplatform/ImportPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/ModModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/modplatform/ModModel.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/ModModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/modplatform/ModModel.h -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/ModPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/modplatform/ModPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/ModPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/modplatform/ModPage.h -------------------------------------------------------------------------------- /launcher/ui/pages/modplatform/ModPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/pages/modplatform/ModPage.ui -------------------------------------------------------------------------------- /launcher/ui/setupwizard/BaseWizardPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/setupwizard/BaseWizardPage.h -------------------------------------------------------------------------------- /launcher/ui/setupwizard/JavaWizardPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/setupwizard/JavaWizardPage.cpp -------------------------------------------------------------------------------- /launcher/ui/setupwizard/JavaWizardPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/setupwizard/JavaWizardPage.h -------------------------------------------------------------------------------- /launcher/ui/setupwizard/PasteWizardPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/setupwizard/PasteWizardPage.h -------------------------------------------------------------------------------- /launcher/ui/setupwizard/PasteWizardPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/setupwizard/PasteWizardPage.ui -------------------------------------------------------------------------------- /launcher/ui/setupwizard/SetupWizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/setupwizard/SetupWizard.cpp -------------------------------------------------------------------------------- /launcher/ui/setupwizard/SetupWizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/setupwizard/SetupWizard.h -------------------------------------------------------------------------------- /launcher/ui/themes/BrightTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/BrightTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/BrightTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/BrightTheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/CustomTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/CustomTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/CustomTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/CustomTheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/DarkTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/DarkTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/DarkTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/DarkTheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/FusionTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/FusionTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/FusionTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/FusionTheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/ITheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/ITheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/ITheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/ITheme.h -------------------------------------------------------------------------------- /launcher/ui/themes/SystemTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/SystemTheme.cpp -------------------------------------------------------------------------------- /launcher/ui/themes/SystemTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/themes/SystemTheme.h -------------------------------------------------------------------------------- /launcher/ui/widgets/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/Common.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/Common.h -------------------------------------------------------------------------------- /launcher/ui/widgets/CustomCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/CustomCommands.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/CustomCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/CustomCommands.h -------------------------------------------------------------------------------- /launcher/ui/widgets/CustomCommands.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/CustomCommands.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/DropLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/DropLabel.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/DropLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/DropLabel.h -------------------------------------------------------------------------------- /launcher/ui/widgets/ErrorFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ErrorFrame.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/ErrorFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ErrorFrame.h -------------------------------------------------------------------------------- /launcher/ui/widgets/ErrorFrame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ErrorFrame.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/FocusLineEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/FocusLineEdit.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/FocusLineEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/FocusLineEdit.h -------------------------------------------------------------------------------- /launcher/ui/widgets/IconLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/IconLabel.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/IconLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/IconLabel.h -------------------------------------------------------------------------------- /launcher/ui/widgets/InstanceCardWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/InstanceCardWidget.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/JavaSettingsWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/JavaSettingsWidget.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/JavaSettingsWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/JavaSettingsWidget.h -------------------------------------------------------------------------------- /launcher/ui/widgets/LabeledToolButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/LabeledToolButton.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/LabeledToolButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/LabeledToolButton.h -------------------------------------------------------------------------------- /launcher/ui/widgets/LineSeparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/LineSeparator.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/LineSeparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/LineSeparator.h -------------------------------------------------------------------------------- /launcher/ui/widgets/LogView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/LogView.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/LogView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/LogView.h -------------------------------------------------------------------------------- /launcher/ui/widgets/MCModInfoFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/MCModInfoFrame.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/MCModInfoFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/MCModInfoFrame.h -------------------------------------------------------------------------------- /launcher/ui/widgets/MCModInfoFrame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/MCModInfoFrame.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/ModFilterWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ModFilterWidget.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/ModFilterWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ModFilterWidget.h -------------------------------------------------------------------------------- /launcher/ui/widgets/ModFilterWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ModFilterWidget.ui -------------------------------------------------------------------------------- /launcher/ui/widgets/ModListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ModListView.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/ModListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ModListView.h -------------------------------------------------------------------------------- /launcher/ui/widgets/PageContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/PageContainer.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/PageContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/PageContainer.h -------------------------------------------------------------------------------- /launcher/ui/widgets/PageContainer_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/PageContainer_p.h -------------------------------------------------------------------------------- /launcher/ui/widgets/ProgressWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ProgressWidget.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/ProgressWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/ProgressWidget.h -------------------------------------------------------------------------------- /launcher/ui/widgets/VersionListView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/VersionListView.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/VersionListView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/VersionListView.h -------------------------------------------------------------------------------- /launcher/ui/widgets/VersionSelectWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/VersionSelectWidget.h -------------------------------------------------------------------------------- /launcher/ui/widgets/WideBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/WideBar.cpp -------------------------------------------------------------------------------- /launcher/ui/widgets/WideBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/ui/widgets/WideBar.h -------------------------------------------------------------------------------- /launcher/updater/DownloadTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/DownloadTask.cpp -------------------------------------------------------------------------------- /launcher/updater/DownloadTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/DownloadTask.h -------------------------------------------------------------------------------- /launcher/updater/DownloadTask_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/DownloadTask_test.cpp -------------------------------------------------------------------------------- /launcher/updater/GoUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/GoUpdate.cpp -------------------------------------------------------------------------------- /launcher/updater/GoUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/GoUpdate.h -------------------------------------------------------------------------------- /launcher/updater/UpdateChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/UpdateChecker.cpp -------------------------------------------------------------------------------- /launcher/updater/UpdateChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/UpdateChecker.h -------------------------------------------------------------------------------- /launcher/updater/UpdateChecker_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/UpdateChecker_test.cpp -------------------------------------------------------------------------------- /launcher/updater/testdata/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/testdata/1.json -------------------------------------------------------------------------------- /launcher/updater/testdata/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/testdata/2.json -------------------------------------------------------------------------------- /launcher/updater/testdata/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/testdata/channels.json -------------------------------------------------------------------------------- /launcher/updater/testdata/fileOneA: -------------------------------------------------------------------------------- 1 | stuff 2 | -------------------------------------------------------------------------------- /launcher/updater/testdata/fileOneB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/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/MinecraftMachina/ManyMC/HEAD/launcher/updater/testdata/index.json -------------------------------------------------------------------------------- /launcher/updater/testdata/noChannels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/testdata/noChannels.json -------------------------------------------------------------------------------- /launcher/updater/testdata/oneChannel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/launcher/updater/testdata/oneChannel.json -------------------------------------------------------------------------------- /libraries/LocalPeer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/LocalPeer/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/LocalPeer/include/LocalPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/LocalPeer/include/LocalPeer.h -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LocalPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/LocalPeer/src/LocalPeer.cpp -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LockedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/LocalPeer/src/LockedFile.cpp -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LockedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/LocalPeer/src/LockedFile.h -------------------------------------------------------------------------------- /libraries/LocalPeer/src/LockedFile_win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/LocalPeer/src/LockedFile_win.cpp -------------------------------------------------------------------------------- /libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/README.md -------------------------------------------------------------------------------- /libraries/classparser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/classparser/src/annotations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/src/annotations.cpp -------------------------------------------------------------------------------- /libraries/classparser/src/annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/src/annotations.h -------------------------------------------------------------------------------- /libraries/classparser/src/classfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/src/classfile.h -------------------------------------------------------------------------------- /libraries/classparser/src/classparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/src/classparser.cpp -------------------------------------------------------------------------------- /libraries/classparser/src/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/src/constants.h -------------------------------------------------------------------------------- /libraries/classparser/src/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/src/errors.h -------------------------------------------------------------------------------- /libraries/classparser/src/javaendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/src/javaendian.h -------------------------------------------------------------------------------- /libraries/classparser/src/membuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/classparser/src/membuffer.h -------------------------------------------------------------------------------- /libraries/hoedown/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/hoedown/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/LICENSE -------------------------------------------------------------------------------- /libraries/hoedown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/README.md -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/include/hoedown/buffer.h -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/include/hoedown/escape.h -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/include/hoedown/html.h -------------------------------------------------------------------------------- /libraries/hoedown/include/hoedown/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/include/hoedown/stack.h -------------------------------------------------------------------------------- /libraries/hoedown/src/autolink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/autolink.c -------------------------------------------------------------------------------- /libraries/hoedown/src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/buffer.c -------------------------------------------------------------------------------- /libraries/hoedown/src/document.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/document.c -------------------------------------------------------------------------------- /libraries/hoedown/src/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/escape.c -------------------------------------------------------------------------------- /libraries/hoedown/src/html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/html.c -------------------------------------------------------------------------------- /libraries/hoedown/src/html_blocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/html_blocks.c -------------------------------------------------------------------------------- /libraries/hoedown/src/html_smartypants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/html_smartypants.c -------------------------------------------------------------------------------- /libraries/hoedown/src/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/stack.c -------------------------------------------------------------------------------- /libraries/hoedown/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/hoedown/src/version.c -------------------------------------------------------------------------------- /libraries/iconfix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/iconfix/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/iconfix/internal/qhexstring_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/iconfix/internal/qhexstring_p.h -------------------------------------------------------------------------------- /libraries/iconfix/internal/qiconloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/iconfix/internal/qiconloader.cpp -------------------------------------------------------------------------------- /libraries/iconfix/internal/qiconloader_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/iconfix/internal/qiconloader_p.h -------------------------------------------------------------------------------- /libraries/iconfix/xdgicon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/iconfix/xdgicon.cpp -------------------------------------------------------------------------------- /libraries/iconfix/xdgicon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/iconfix/xdgicon.h -------------------------------------------------------------------------------- /libraries/javacheck/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/javacheck/.gitignore -------------------------------------------------------------------------------- /libraries/javacheck/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/javacheck/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/javacheck/JavaCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/javacheck/JavaCheck.java -------------------------------------------------------------------------------- /libraries/katabasis/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *.kdev4 3 | -------------------------------------------------------------------------------- /libraries/katabasis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/katabasis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/LICENSE -------------------------------------------------------------------------------- /libraries/katabasis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/README.md -------------------------------------------------------------------------------- /libraries/katabasis/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/acknowledgements.md -------------------------------------------------------------------------------- /libraries/katabasis/src/DeviceFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/src/DeviceFlow.cpp -------------------------------------------------------------------------------- /libraries/katabasis/src/JsonResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/src/JsonResponse.cpp -------------------------------------------------------------------------------- /libraries/katabasis/src/JsonResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/src/JsonResponse.h -------------------------------------------------------------------------------- /libraries/katabasis/src/PollServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/src/PollServer.cpp -------------------------------------------------------------------------------- /libraries/katabasis/src/Reply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/katabasis/src/Reply.cpp -------------------------------------------------------------------------------- /libraries/launcher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/launcher/.gitignore -------------------------------------------------------------------------------- /libraries/launcher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/launcher/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/optional-bare/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/optional-bare/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/optional-bare/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/optional-bare/LICENSE.txt -------------------------------------------------------------------------------- /libraries/optional-bare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/optional-bare/README.md -------------------------------------------------------------------------------- /libraries/rainbow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/rainbow/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/rainbow/COPYING.LIB: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/rainbow/include/rainbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/rainbow/include/rainbow.h -------------------------------------------------------------------------------- /libraries/rainbow/src/rainbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/rainbow/src/rainbow.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/systeminfo/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/systeminfo/include/distroutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/systeminfo/include/distroutils.h -------------------------------------------------------------------------------- /libraries/systeminfo/include/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/systeminfo/include/sys.h -------------------------------------------------------------------------------- /libraries/systeminfo/src/distroutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/systeminfo/src/distroutils.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/src/sys_apple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/systeminfo/src/sys_apple.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/src/sys_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/systeminfo/src/sys_test.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/src/sys_unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/systeminfo/src/sys_unix.cpp -------------------------------------------------------------------------------- /libraries/systeminfo/src/sys_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/systeminfo/src/sys_win32.cpp -------------------------------------------------------------------------------- /libraries/tomlc99/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/tomlc99/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/tomlc99/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/tomlc99/LICENSE -------------------------------------------------------------------------------- /libraries/tomlc99/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/tomlc99/README.md -------------------------------------------------------------------------------- /libraries/tomlc99/include/toml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/tomlc99/include/toml.h -------------------------------------------------------------------------------- /libraries/tomlc99/src/toml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/tomlc99/src/toml.c -------------------------------------------------------------------------------- /libraries/xz-embedded/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/CMakeLists.txt -------------------------------------------------------------------------------- /libraries/xz-embedded/include/xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/include/xz.h -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_config.h -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_crc32.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_crc64.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_dec_bcj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_dec_bcj.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_dec_lzma2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_dec_lzma2.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_dec_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_dec_stream.c -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_lzma2.h -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_private.h -------------------------------------------------------------------------------- /libraries/xz-embedded/src/xz_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/src/xz_stream.h -------------------------------------------------------------------------------- /libraries/xz-embedded/xzminidec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/libraries/xz-embedded/xzminidec.c -------------------------------------------------------------------------------- /nix/NIX.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/nix/NIX.md -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/flake-compat.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/nix/flake-compat.nix -------------------------------------------------------------------------------- /program_info/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/program_info/App.entitlements -------------------------------------------------------------------------------- /program_info/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/program_info/CMakeLists.txt -------------------------------------------------------------------------------- /program_info/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/program_info/logo.icns -------------------------------------------------------------------------------- /program_info/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/program_info/logo.svg -------------------------------------------------------------------------------- /program_info/polymc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/program_info/polymc.qrc -------------------------------------------------------------------------------- /wiki/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/wiki/logo.svg -------------------------------------------------------------------------------- /wiki/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MinecraftMachina/ManyMC/HEAD/wiki/pic1.png --------------------------------------------------------------------------------