├── .clang-format ├── .clang-tidy ├── .commitlintrc.ts ├── .editorconfig ├── .envrc ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── rfc.yml │ └── suggestion.yml ├── dco.yml ├── pull_request_template.md └── workflows │ ├── backport.yml │ ├── blocked-prs.yml │ ├── build.yml │ ├── cachix.yml │ ├── commitlint.yml │ ├── flatpak.yml │ ├── linux.yml │ ├── macos.yml │ ├── merge-blocking-pr.yml │ ├── publish.yml │ ├── stale.yml │ ├── trigger_builds.yml │ ├── trigger_release.yml │ ├── update-flake.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── .markdownlint.yaml ├── .markdownlintignore ├── CMakeLists.txt ├── LICENSE ├── PKGBUILD ├── buildconfig ├── Build.spec ├── BuildConfig.cpp.in ├── BuildConfig.h └── CMakeLists.txt ├── cmake ├── CompilerWarnings.cmake ├── ECMQueryQt.cmake ├── GetGitRevisionDescription.cmake ├── GetGitRevisionDescription.cmake.in ├── GitFunctions.cmake ├── MacOSXBundleInfo.plist.in ├── QtVersionOption.cmake └── QtVersionlessBackport.cmake ├── default.nix ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING.md ├── MAINTAINERS.md ├── README.md ├── README_ru.md └── screenshots │ ├── freesmlauncher_home_maxwell.gif │ ├── freesmlauncher_home_mita.gif │ ├── freesmlauncher_home_screenshot.png │ ├── freesmlauncher_home_screenshot_opacity.png │ ├── freesmlauncher_instance_add_screenshot.png │ ├── freesmlauncher_instance_settings_screenshot.png │ ├── freesmlauncher_settings_accounts_screenshot.png │ └── freesmlauncher_settings_theme_screenshot.png ├── flake.lock ├── flake.nix ├── flatpak ├── flite.json ├── freesmlauncher ├── libdecor.json ├── org.freesmTeam.freesmlauncher.yml ├── patches │ └── 0009-Defer-setting-cursor-position-until-the-cursor-is-lo.patch └── prime-run ├── 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 ├── DataMigrationTask.cpp ├── DataMigrationTask.h ├── DefaultVariable.h ├── DesktopServices.cpp ├── DesktopServices.h ├── Exception.h ├── ExponentialSeries.h ├── FastFileIconProvider.cpp ├── FastFileIconProvider.h ├── FileIgnoreProxy.cpp ├── FileIgnoreProxy.h ├── FileSystem.cpp ├── FileSystem.h ├── Filter.cpp ├── Filter.h ├── GZip.cpp ├── GZip.h ├── InstanceCopyPrefs.cpp ├── InstanceCopyPrefs.h ├── InstanceCopyTask.cpp ├── InstanceCopyTask.h ├── InstanceCreationTask.cpp ├── InstanceCreationTask.h ├── InstanceDirUpdate.cpp ├── InstanceDirUpdate.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 ├── MMCTime.cpp ├── MMCTime.h ├── MMCZip.cpp ├── MMCZip.h ├── MTPixmapCache.h ├── MangoHud.cpp ├── MangoHud.h ├── Markdown.cpp ├── Markdown.h ├── MessageLevel.cpp ├── MessageLevel.h ├── NullInstance.h ├── PSaveFile.h ├── ProblemProvider.h ├── QObjectPtr.h ├── QVariantUtils.h ├── RWStorage.h ├── RecursiveFileSystemWatcher.cpp ├── RecursiveFileSystemWatcher.h ├── ResourceDownloadTask.cpp ├── ResourceDownloadTask.h ├── RuntimeContext.h ├── SeparatorPrefixTree.h ├── StringUtils.cpp ├── StringUtils.h ├── SysInfo.cpp ├── SysInfo.h ├── Untar.cpp ├── Untar.h ├── Usable.h ├── Version.cpp ├── Version.h ├── VersionProxyModel.cpp ├── VersionProxyModel.h ├── WatchLock.h ├── WindowsConsole.cpp ├── WindowsConsole.h ├── filelink │ ├── FileLink.cpp │ ├── FileLink.h │ ├── filelink.exe.manifest │ └── filelink_main.cpp ├── icons │ ├── IconList.cpp │ ├── IconList.h │ ├── IconUtils.cpp │ ├── IconUtils.h │ ├── MMCIcon.cpp │ └── MMCIcon.h ├── install_prereqs.cmake.in ├── java │ ├── JavaChecker.cpp │ ├── JavaChecker.h │ ├── JavaInstall.cpp │ ├── JavaInstall.h │ ├── JavaInstallList.cpp │ ├── JavaInstallList.h │ ├── JavaMetadata.cpp │ ├── JavaMetadata.h │ ├── JavaUtils.cpp │ ├── JavaUtils.h │ ├── JavaVersion.cpp │ ├── JavaVersion.h │ └── download │ │ ├── ArchiveDownloadTask.cpp │ │ ├── ArchiveDownloadTask.h │ │ ├── ManifestDownloadTask.cpp │ │ ├── ManifestDownloadTask.h │ │ ├── SymlinkTask.cpp │ │ └── SymlinkTask.h ├── launch │ ├── LaunchStep.cpp │ ├── LaunchStep.h │ ├── LaunchTask.cpp │ ├── LaunchTask.h │ ├── LogModel.cpp │ ├── LogModel.h │ ├── TaskStepWrapper.cpp │ ├── TaskStepWrapper.h │ └── steps │ │ ├── CheckJava.cpp │ │ ├── CheckJava.h │ │ ├── LookupServerAddress.cpp │ │ ├── LookupServerAddress.h │ │ ├── PostLaunchCommand.cpp │ │ ├── PostLaunchCommand.h │ │ ├── PreLaunchCommand.cpp │ │ ├── PreLaunchCommand.h │ │ ├── PrintServers.cpp │ │ ├── PrintServers.h │ │ ├── QuitAfterGameStop.cpp │ │ ├── QuitAfterGameStop.h │ │ ├── TextPrint.cpp │ │ └── TextPrint.h ├── main.cpp ├── meta │ ├── BaseEntity.cpp │ ├── BaseEntity.h │ ├── Index.cpp │ ├── Index.h │ ├── 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 │ ├── LaunchProfile.cpp │ ├── LaunchProfile.h │ ├── Library.cpp │ ├── Library.h │ ├── Logging.cpp │ ├── Logging.h │ ├── MinecraftInstance.cpp │ ├── MinecraftInstance.h │ ├── MinecraftLoadAndCheck.cpp │ ├── MinecraftLoadAndCheck.h │ ├── MojangDownloadInfo.h │ ├── MojangVersionFormat.cpp │ ├── MojangVersionFormat.h │ ├── OneSixVersionFormat.cpp │ ├── OneSixVersionFormat.h │ ├── PackProfile.cpp │ ├── PackProfile.h │ ├── PackProfile_p.h │ ├── ParseUtils.cpp │ ├── ParseUtils.h │ ├── ProfileUtils.cpp │ ├── ProfileUtils.h │ ├── Rule.cpp │ ├── Rule.h │ ├── ScreenshotsWatcher.cpp │ ├── ScreenshotsWatcher.h │ ├── VanillaInstanceCreationTask.cpp │ ├── VanillaInstanceCreationTask.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 │ │ ├── AuthFlow.cpp │ │ ├── AuthFlow.h │ │ ├── AuthSession.cpp │ │ ├── AuthSession.h │ │ ├── AuthStep.h │ │ ├── BaseAccount.cpp │ │ ├── BaseAccount.h │ │ ├── MinecraftAccount.cpp │ │ ├── Parsers.cpp │ │ ├── Parsers.h │ │ ├── elyby │ │ │ ├── ElybyAccount.cpp │ │ │ ├── ElybyAccount.h │ │ │ └── steps │ │ │ │ ├── ElybyAuthStep.cpp │ │ │ │ ├── ElybyAuthStep.h │ │ │ │ ├── ElybyRefreshStep.cpp │ │ │ │ └── ElybyRefreshStep.h │ │ ├── msa │ │ │ ├── MSAAccount.cpp │ │ │ ├── MSAAccount.h │ │ │ └── steps │ │ │ │ ├── EntitlementsStep.cpp │ │ │ │ ├── EntitlementsStep.h │ │ │ │ ├── GetSkinStep.cpp │ │ │ │ ├── GetSkinStep.h │ │ │ │ ├── LauncherLoginStep.cpp │ │ │ │ ├── LauncherLoginStep.h │ │ │ │ ├── MSADeviceCodeStep.cpp │ │ │ │ ├── MSADeviceCodeStep.h │ │ │ │ ├── MSAStep.cpp │ │ │ │ ├── MSAStep.h │ │ │ │ ├── MinecraftProfileStep.cpp │ │ │ │ ├── MinecraftProfileStep.h │ │ │ │ ├── XboxAuthorizationStep.cpp │ │ │ │ ├── XboxAuthorizationStep.h │ │ │ │ ├── XboxProfileStep.cpp │ │ │ │ ├── XboxProfileStep.h │ │ │ │ ├── XboxUserStep.cpp │ │ │ │ └── XboxUserStep.h │ │ └── offline │ │ │ ├── OfflineAccount.cpp │ │ │ └── OfflineAccount.h │ ├── gameoptions │ │ ├── GameOptions.cpp │ │ └── GameOptions.h │ ├── launch │ │ ├── ApplyAuthlibInjector.cpp │ │ ├── ApplyAuthlibInjector.h │ │ ├── ApplyLibraryOverrides.cpp │ │ ├── ApplyLibraryOverrides.h │ │ ├── AutoInstallJava.cpp │ │ ├── AutoInstallJava.h │ │ ├── ClaimAccount.cpp │ │ ├── ClaimAccount.h │ │ ├── CreateGameFolders.cpp │ │ ├── CreateGameFolders.h │ │ ├── ExtractNatives.cpp │ │ ├── ExtractNatives.h │ │ ├── LauncherPartLaunch.cpp │ │ ├── LauncherPartLaunch.h │ │ ├── MinecraftTarget.cpp │ │ ├── MinecraftTarget.h │ │ ├── ModMinecraftJar.cpp │ │ ├── ModMinecraftJar.h │ │ ├── PrintInstanceInfo.cpp │ │ ├── PrintInstanceInfo.h │ │ ├── ReconstructAssets.cpp │ │ ├── ReconstructAssets.h │ │ ├── ScanModFolders.cpp │ │ ├── ScanModFolders.h │ │ ├── VerifyJavaInstall.cpp │ │ └── VerifyJavaInstall.h │ ├── mod │ │ ├── DataPack.cpp │ │ ├── DataPack.h │ │ ├── MetadataHandler.h │ │ ├── Mod.cpp │ │ ├── Mod.h │ │ ├── ModDetails.h │ │ ├── ModFolderModel.cpp │ │ ├── ModFolderModel.h │ │ ├── Resource.cpp │ │ ├── Resource.h │ │ ├── ResourceFolderModel.cpp │ │ ├── ResourceFolderModel.h │ │ ├── ResourcePack.cpp │ │ ├── ResourcePack.h │ │ ├── ResourcePackFolderModel.cpp │ │ ├── ResourcePackFolderModel.h │ │ ├── ShaderPack.cpp │ │ ├── ShaderPack.h │ │ ├── ShaderPackFolderModel.h │ │ ├── TexturePack.cpp │ │ ├── TexturePack.h │ │ ├── TexturePackFolderModel.cpp │ │ ├── TexturePackFolderModel.h │ │ ├── WorldSave.cpp │ │ ├── WorldSave.h │ │ └── tasks │ │ │ ├── BasicFolderLoadTask.h │ │ │ ├── GetModDependenciesTask.cpp │ │ │ ├── GetModDependenciesTask.h │ │ │ ├── LocalDataPackParseTask.cpp │ │ │ ├── LocalDataPackParseTask.h │ │ │ ├── LocalModParseTask.cpp │ │ │ ├── LocalModParseTask.h │ │ │ ├── LocalResourcePackParseTask.cpp │ │ │ ├── LocalResourcePackParseTask.h │ │ │ ├── LocalResourceParse.cpp │ │ │ ├── LocalResourceParse.h │ │ │ ├── LocalResourceUpdateTask.cpp │ │ │ ├── LocalResourceUpdateTask.h │ │ │ ├── LocalShaderPackParseTask.cpp │ │ │ ├── LocalShaderPackParseTask.h │ │ │ ├── LocalTexturePackParseTask.cpp │ │ │ ├── LocalTexturePackParseTask.h │ │ │ ├── LocalWorldSaveParseTask.cpp │ │ │ ├── LocalWorldSaveParseTask.h │ │ │ ├── ResourceFolderLoadTask.cpp │ │ │ └── ResourceFolderLoadTask.h │ ├── skins │ │ ├── CapeChange.cpp │ │ ├── CapeChange.h │ │ ├── SkinDelete.cpp │ │ ├── SkinDelete.h │ │ ├── SkinList.cpp │ │ ├── SkinList.h │ │ ├── SkinModel.cpp │ │ ├── SkinModel.h │ │ ├── SkinUpload.cpp │ │ └── SkinUpload.h │ └── update │ │ ├── AssetUpdateTask.cpp │ │ ├── AssetUpdateTask.h │ │ ├── FMLLibrariesTask.cpp │ │ ├── FMLLibrariesTask.h │ │ ├── FoldersTask.cpp │ │ ├── FoldersTask.h │ │ ├── LibrariesTask.cpp │ │ └── LibrariesTask.h ├── modplatform │ ├── CheckUpdateTask.h │ ├── EnsureMetadataTask.cpp │ ├── EnsureMetadataTask.h │ ├── ModIndex.cpp │ ├── ModIndex.h │ ├── ResourceAPI.h │ ├── atlauncher │ │ ├── ATLPackIndex.cpp │ │ ├── ATLPackIndex.h │ │ ├── ATLPackInstallTask.cpp │ │ ├── ATLPackInstallTask.h │ │ ├── ATLPackManifest.cpp │ │ ├── ATLPackManifest.h │ │ ├── ATLShareCode.cpp │ │ └── ATLShareCode.h │ ├── flame │ │ ├── FileResolvingTask.cpp │ │ ├── FileResolvingTask.h │ │ ├── FlameAPI.cpp │ │ ├── FlameAPI.h │ │ ├── FlameCheckUpdate.cpp │ │ ├── FlameCheckUpdate.h │ │ ├── FlameInstanceCreationTask.cpp │ │ ├── FlameInstanceCreationTask.h │ │ ├── FlameModIndex.cpp │ │ ├── FlameModIndex.h │ │ ├── FlamePackExportTask.cpp │ │ ├── FlamePackExportTask.h │ │ ├── FlamePackIndex.cpp │ │ ├── FlamePackIndex.h │ │ ├── PackManifest.cpp │ │ └── PackManifest.h │ ├── helpers │ │ ├── ExportToModList.cpp │ │ ├── ExportToModList.h │ │ ├── HashUtils.cpp │ │ ├── HashUtils.h │ │ ├── NetworkResourceAPI.cpp │ │ ├── NetworkResourceAPI.h │ │ ├── OverrideUtils.cpp │ │ └── OverrideUtils.h │ ├── import_ftb │ │ ├── PackHelpers.cpp │ │ ├── PackHelpers.h │ │ ├── PackInstallTask.cpp │ │ └── PackInstallTask.h │ ├── legacy_ftb │ │ ├── PackFetchTask.cpp │ │ ├── PackFetchTask.h │ │ ├── PackHelpers.h │ │ ├── PackInstallTask.cpp │ │ ├── PackInstallTask.h │ │ ├── PrivatePackManager.cpp │ │ └── PrivatePackManager.h │ ├── modrinth │ │ ├── ModrinthAPI.cpp │ │ ├── ModrinthAPI.h │ │ ├── ModrinthCheckUpdate.cpp │ │ ├── ModrinthCheckUpdate.h │ │ ├── ModrinthInstanceCreationTask.cpp │ │ ├── ModrinthInstanceCreationTask.h │ │ ├── ModrinthPackExportTask.cpp │ │ ├── ModrinthPackExportTask.h │ │ ├── ModrinthPackIndex.cpp │ │ ├── ModrinthPackIndex.h │ │ ├── ModrinthPackManifest.cpp │ │ └── ModrinthPackManifest.h │ ├── packwiz │ │ ├── Packwiz.cpp │ │ └── Packwiz.h │ └── technic │ │ ├── SingleZipPackInstallTask.cpp │ │ ├── SingleZipPackInstallTask.h │ │ ├── SolderPackInstallTask.cpp │ │ ├── SolderPackInstallTask.h │ │ ├── SolderPackManifest.cpp │ │ ├── SolderPackManifest.h │ │ ├── TechnicPackProcessor.cpp │ │ └── TechnicPackProcessor.h ├── net │ ├── ApiDownload.cpp │ ├── ApiDownload.h │ ├── ApiHeaderProxy.h │ ├── ApiUpload.cpp │ ├── ApiUpload.h │ ├── ByteArraySink.h │ ├── ChecksumValidator.h │ ├── Download.cpp │ ├── Download.h │ ├── FileSink.cpp │ ├── FileSink.h │ ├── HeaderProxy.h │ ├── HttpMetaCache.cpp │ ├── HttpMetaCache.h │ ├── Logging.cpp │ ├── Logging.h │ ├── MetaCacheSink.cpp │ ├── MetaCacheSink.h │ ├── Mode.h │ ├── NetJob.cpp │ ├── NetJob.h │ ├── NetRequest.cpp │ ├── NetRequest.h │ ├── NetUtils.h │ ├── PasteUpload.cpp │ ├── PasteUpload.h │ ├── RawHeaderProxy.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 │ └── SimplePrefixMatcher.h ├── qtlogging.ini ├── resources │ ├── OSX │ │ ├── OSX.qrc │ │ ├── index.theme │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── delete.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── assets │ │ └── underconstruction.png │ ├── backgrounds │ │ ├── backgrounds.qrc │ │ ├── kitteh-bday.png │ │ ├── kitteh-spooky.png │ │ ├── kitteh-xmas.png │ │ ├── kitteh.png │ │ ├── konata.gif │ │ ├── maxwell-christmas.gif │ │ ├── miside-screenshot.png │ │ ├── rory-bday.png │ │ ├── rory-flat-bday.png │ │ ├── rory-flat-spooky.png │ │ ├── rory-flat-xmas.png │ │ ├── rory-flat.png │ │ ├── rory-spooky.png │ │ ├── rory-xmas.png │ │ ├── rory.png │ │ ├── teawie-bday.png │ │ ├── teawie-spooky.png │ │ ├── teawie-xmas.png │ │ ├── teawie.png │ │ └── typescript.png │ ├── breeze_dark │ │ ├── breeze_dark.qrc │ │ ├── index.theme │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── delete.svg │ │ │ ├── discord.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── matrix.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── refresh.svg │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── breeze_light │ │ ├── breeze_light.qrc │ │ ├── index.theme │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── delete.svg │ │ │ ├── discord.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── matrix.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── refresh.svg │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── documents │ │ ├── documents.qrc │ │ └── login-qr.svg │ ├── 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 │ │ │ ├── delete.svg │ │ │ ├── discord.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.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 │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshot-placeholder.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── star.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-running.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── flat_white │ │ ├── flat_white.qrc │ │ ├── index.theme │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── cat.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── delete.svg │ │ │ ├── discord.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.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 │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshot-placeholder.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── star.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-running.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── fluent │ │ ├── README.md │ │ ├── fluent.qrc │ │ ├── index.theme │ │ ├── index.theme.license │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── about.svg.license │ │ │ ├── accounts.svg │ │ │ ├── accounts.svg.license │ │ │ ├── bug.svg │ │ │ ├── bug.svg.license │ │ │ ├── cat.svg │ │ │ ├── cat.svg.license │ │ │ ├── centralmods.svg │ │ │ ├── centralmods.svg.license │ │ │ ├── checkupdate.svg │ │ │ ├── checkupdate.svg.license │ │ │ ├── copy.svg │ │ │ ├── copy.svg.license │ │ │ ├── coremods.svg │ │ │ ├── coremods.svg.license │ │ │ ├── custom-commands.svg │ │ │ ├── custom-commands.svg.license │ │ │ ├── delete.svg │ │ │ ├── delete.svg.license │ │ │ ├── discord.svg │ │ │ ├── discord.svg.license │ │ │ ├── environment-variables.svg │ │ │ ├── environment-variables.svg.license │ │ │ ├── export.svg │ │ │ ├── export.svg.license │ │ │ ├── externaltools.svg │ │ │ ├── externaltools.svg.license │ │ │ ├── help.svg │ │ │ ├── help.svg.license │ │ │ ├── instance-settings.svg │ │ │ ├── instance-settings.svg.license │ │ │ ├── jarmods.svg │ │ │ ├── jarmods.svg.license │ │ │ ├── java.svg │ │ │ ├── java.svg.license │ │ │ ├── language.svg │ │ │ ├── language.svg.license │ │ │ ├── launch.svg │ │ │ ├── launch.svg.license │ │ │ ├── launcher.svg │ │ │ ├── launcher.svg.license │ │ │ ├── loadermods.svg │ │ │ ├── loadermods.svg.license │ │ │ ├── log.svg │ │ │ ├── log.svg.license │ │ │ ├── minecraft.svg │ │ │ ├── minecraft.svg.license │ │ │ ├── multimc.svg │ │ │ ├── multimc.svg.license │ │ │ ├── new.svg │ │ │ ├── new.svg.license │ │ │ ├── news.svg │ │ │ ├── news.svg.license │ │ │ ├── notes.svg │ │ │ ├── notes.svg.license │ │ │ ├── packages.svg │ │ │ ├── packages.svg.license │ │ │ ├── patreon.svg │ │ │ ├── patreon.svg.license │ │ │ ├── proxy.svg │ │ │ ├── proxy.svg.license │ │ │ ├── quickmods.svg │ │ │ ├── quickmods.svg.license │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-alien.svg.license │ │ │ ├── refresh.svg │ │ │ ├── refresh.svg.license │ │ │ ├── rename.svg │ │ │ ├── rename.svg.license │ │ │ ├── resourcepacks.svg │ │ │ ├── resourcepacks.svg.license │ │ │ ├── screenshot-placeholder.svg │ │ │ ├── screenshot-placeholder.svg.license │ │ │ ├── screenshots.svg │ │ │ ├── screenshots.svg.license │ │ │ ├── server.svg │ │ │ ├── server.svg.license │ │ │ ├── settings.svg │ │ │ ├── settings.svg.license │ │ │ ├── shaderpacks.svg │ │ │ ├── shaderpacks.svg.license │ │ │ ├── shortcut.svg │ │ │ ├── shortcut.svg.license │ │ │ ├── star.svg │ │ │ ├── star.svg.license │ │ │ ├── status-bad.svg │ │ │ ├── status-bad.svg.license │ │ │ ├── status-good.svg │ │ │ ├── status-good.svg.license │ │ │ ├── status-running.svg │ │ │ ├── status-running.svg.license │ │ │ ├── status-yellow.svg │ │ │ ├── status-yellow.svg.license │ │ │ ├── tag.svg │ │ │ ├── tag.svg.license │ │ │ ├── viewfolder.svg │ │ │ ├── viewfolder.svg.license │ │ │ ├── worlds.svg │ │ │ └── worlds.svg.license │ ├── fluent_dark │ │ ├── README.md │ │ ├── fluent_dark.qrc │ │ ├── index.theme │ │ ├── index.theme.license │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── about.svg.license │ │ │ ├── accounts.svg │ │ │ ├── accounts.svg.license │ │ │ ├── bug.svg │ │ │ ├── bug.svg.license │ │ │ ├── cat.svg │ │ │ ├── cat.svg.license │ │ │ ├── centralmods.svg │ │ │ ├── centralmods.svg.license │ │ │ ├── checkupdate.svg │ │ │ ├── checkupdate.svg.license │ │ │ ├── copy.svg │ │ │ ├── copy.svg.license │ │ │ ├── coremods.svg │ │ │ ├── coremods.svg.license │ │ │ ├── custom-commands.svg │ │ │ ├── custom-commands.svg.license │ │ │ ├── delete.svg │ │ │ ├── delete.svg.license │ │ │ ├── discord.svg │ │ │ ├── discord.svg.license │ │ │ ├── environment-variables.svg │ │ │ ├── environment-variables.svg.license │ │ │ ├── export.svg │ │ │ ├── export.svg.license │ │ │ ├── externaltools.svg │ │ │ ├── externaltools.svg.license │ │ │ ├── help.svg │ │ │ ├── help.svg.license │ │ │ ├── instance-settings.svg │ │ │ ├── instance-settings.svg.license │ │ │ ├── jarmods.svg │ │ │ ├── jarmods.svg.license │ │ │ ├── java.svg │ │ │ ├── java.svg.license │ │ │ ├── language.svg │ │ │ ├── language.svg.license │ │ │ ├── launch.svg │ │ │ ├── launch.svg.license │ │ │ ├── launcher.svg │ │ │ ├── launcher.svg.license │ │ │ ├── loadermods.svg │ │ │ ├── loadermods.svg.license │ │ │ ├── log.svg │ │ │ ├── log.svg.license │ │ │ ├── minecraft.svg │ │ │ ├── minecraft.svg.license │ │ │ ├── multimc.svg │ │ │ ├── multimc.svg.license │ │ │ ├── new.svg │ │ │ ├── new.svg.license │ │ │ ├── news.svg │ │ │ ├── news.svg.license │ │ │ ├── notes.svg │ │ │ ├── notes.svg.license │ │ │ ├── packages.svg │ │ │ ├── packages.svg.license │ │ │ ├── patreon.svg │ │ │ ├── patreon.svg.license │ │ │ ├── proxy.svg │ │ │ ├── proxy.svg.license │ │ │ ├── quickmods.svg │ │ │ ├── quickmods.svg.license │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-alien.svg.license │ │ │ ├── refresh.svg │ │ │ ├── refresh.svg.license │ │ │ ├── rename.svg │ │ │ ├── rename.svg.license │ │ │ ├── resourcepacks.svg │ │ │ ├── resourcepacks.svg.license │ │ │ ├── screenshot-placeholder.svg │ │ │ ├── screenshot-placeholder.svg.license │ │ │ ├── screenshots.svg │ │ │ ├── screenshots.svg.license │ │ │ ├── server.svg │ │ │ ├── server.svg.license │ │ │ ├── settings.svg │ │ │ ├── settings.svg.license │ │ │ ├── shaderpacks.svg │ │ │ ├── shaderpacks.svg.license │ │ │ ├── shortcut.svg │ │ │ ├── shortcut.svg.license │ │ │ ├── star.svg │ │ │ ├── star.svg.license │ │ │ ├── status-bad.svg │ │ │ ├── status-bad.svg.license │ │ │ ├── status-good.svg │ │ │ ├── status-good.svg.license │ │ │ ├── status-running.svg │ │ │ ├── status-running.svg.license │ │ │ ├── status-yellow.svg │ │ │ ├── status-yellow.svg.license │ │ │ ├── tag.svg │ │ │ ├── tag.svg.license │ │ │ ├── viewfolder.svg │ │ │ ├── viewfolder.svg.license │ │ │ ├── worlds.svg │ │ │ └── worlds.svg.license │ ├── iOS │ │ ├── iOS.qrc │ │ ├── index.theme │ │ └── scalable │ │ │ ├── about.svg │ │ │ ├── accounts.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── copy.svg │ │ │ ├── coremods.svg │ │ │ ├── custom-commands.svg │ │ │ ├── delete.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── multimc.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── multimc │ │ ├── 128x128 │ │ │ ├── instances │ │ │ │ ├── chicken_legacy.png │ │ │ │ ├── creeper_legacy.png │ │ │ │ ├── enderpearl_legacy.png │ │ │ │ ├── flame_legacy.png │ │ │ │ ├── forge.png │ │ │ │ ├── ftb_glow.png │ │ │ │ ├── ftb_logo_legacy.png │ │ │ │ ├── gear_legacy.png │ │ │ │ ├── herobrine_legacy.png │ │ │ │ ├── infinity_legacy.png │ │ │ │ ├── liteloader.png │ │ │ │ ├── magitech_legacy.png │ │ │ │ ├── meat_legacy.png │ │ │ │ ├── netherstar_legacy.png │ │ │ │ ├── skeleton_legacy.png │ │ │ │ ├── squarecreeper_legacy.png │ │ │ │ └── steve_legacy.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_legacy.png │ │ │ │ ├── chicken_legacy.png │ │ │ │ ├── creeper_legacy.png │ │ │ │ ├── diamond_legacy.png │ │ │ │ ├── dirt_legacy.png │ │ │ │ ├── enderpearl_legacy.png │ │ │ │ ├── ftb_glow.png │ │ │ │ ├── ftb_logo_legacy.png │ │ │ │ ├── gear_legacy.png │ │ │ │ ├── gold_legacy.png │ │ │ │ ├── grass_legacy.png │ │ │ │ ├── herobrine_legacy.png │ │ │ │ ├── infinity_legacy.png │ │ │ │ ├── iron_legacy.png │ │ │ │ ├── magitech_legacy.png │ │ │ │ ├── meat_legacy.png │ │ │ │ ├── netherstar_legacy.png │ │ │ │ ├── planks_legacy.png │ │ │ │ ├── skeleton_legacy.png │ │ │ │ ├── squarecreeper_legacy.png │ │ │ │ ├── steve_legacy.png │ │ │ │ ├── stone_legacy.png │ │ │ │ └── tnt_legacy.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_legacy.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 │ │ │ ├── adoptium.svg │ │ │ ├── atlauncher-placeholder.png │ │ │ ├── atlauncher.svg │ │ │ ├── azul.svg │ │ │ ├── bug.svg │ │ │ ├── centralmods.svg │ │ │ ├── checkupdate.svg │ │ │ ├── custom-commands.svg │ │ │ ├── delete.svg │ │ │ ├── discord.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── instances │ │ │ ├── bee.svg │ │ │ ├── bee_legacy.svg │ │ │ ├── brick.svg │ │ │ ├── chicken.svg │ │ │ ├── creeper.svg │ │ │ ├── diamond.svg │ │ │ ├── dirt.svg │ │ │ ├── enderman.svg │ │ │ ├── enderpearl.svg │ │ │ ├── fabricmc.svg │ │ │ ├── flame.svg │ │ │ ├── fox.svg │ │ │ ├── fox_legacy.svg │ │ │ ├── ftb_logo.svg │ │ │ ├── gear.svg │ │ │ ├── gold.svg │ │ │ ├── grass.svg │ │ │ ├── herobrine.svg │ │ │ ├── iron.svg │ │ │ ├── magitech.svg │ │ │ ├── meat.svg │ │ │ ├── modrinth.svg │ │ │ ├── neoforged.svg │ │ │ ├── netherstar.svg │ │ │ ├── planks.svg │ │ │ ├── prismlauncher.svg │ │ │ ├── quiltmc.svg │ │ │ ├── skeleton.svg │ │ │ ├── squarecreeper.svg │ │ │ ├── steve.svg │ │ │ ├── stone.svg │ │ │ └── tnt.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── launcher.svg │ │ │ ├── matrix.svg │ │ │ ├── mojang.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── proxy.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── rename.svg │ │ │ ├── screenshot-placeholder.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-running.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.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 │ │ │ ├── delete.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.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 │ │ │ ├── delete.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.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 │ │ │ ├── delete.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.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 │ │ │ ├── delete.svg │ │ │ ├── environment-variables.svg │ │ │ ├── export.svg │ │ │ ├── externaltools.svg │ │ │ ├── help.svg │ │ │ ├── instance-settings.svg │ │ │ ├── jarmods.svg │ │ │ ├── java.svg │ │ │ ├── language.svg │ │ │ ├── launch.svg │ │ │ ├── loadermods.svg │ │ │ ├── log.svg │ │ │ ├── minecraft.svg │ │ │ ├── new.svg │ │ │ ├── news.svg │ │ │ ├── notes.svg │ │ │ ├── patreon.svg │ │ │ ├── proxy.svg │ │ │ ├── refresh.svg │ │ │ ├── rename.svg │ │ │ ├── resourcepacks.svg │ │ │ ├── screenshots.svg │ │ │ ├── server.svg │ │ │ ├── settings.svg │ │ │ ├── shaderpacks.svg │ │ │ ├── shortcut.svg │ │ │ ├── status-bad.svg │ │ │ ├── status-good.svg │ │ │ ├── status-yellow.svg │ │ │ ├── tag.svg │ │ │ ├── viewfolder.svg │ │ │ └── worlds.svg │ ├── shaders │ │ ├── fshader.glsl │ │ ├── shaders.qrc │ │ └── vshader.glsl │ └── 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 │ ├── INISettingsObject.cpp │ ├── INISettingsObject.h │ ├── OverrideSetting.cpp │ ├── OverrideSetting.h │ ├── PassthroughSetting.cpp │ ├── PassthroughSetting.h │ ├── Setting.cpp │ ├── Setting.h │ ├── SettingsObject.cpp │ └── SettingsObject.h ├── tasks │ ├── ConcurrentTask.cpp │ ├── ConcurrentTask.h │ ├── MultipleOptionsTask.cpp │ ├── MultipleOptionsTask.h │ ├── SequentialTask.cpp │ ├── SequentialTask.h │ ├── Task.cpp │ └── Task.h ├── tools │ ├── BaseExternalTool.cpp │ ├── BaseExternalTool.h │ ├── BaseProfiler.cpp │ ├── BaseProfiler.h │ ├── GenericProfiler.cpp │ ├── GenericProfiler.h │ ├── JProfiler.cpp │ ├── JProfiler.h │ ├── JVisualVM.cpp │ ├── JVisualVM.h │ ├── MCEditTool.cpp │ └── MCEditTool.h ├── translations │ ├── POTranslator.cpp │ ├── POTranslator.h │ ├── TranslationsModel.cpp │ └── TranslationsModel.h ├── ui │ ├── GuiUtil.cpp │ ├── GuiUtil.h │ ├── InstanceWindow.cpp │ ├── InstanceWindow.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MainWindow.ui │ ├── dialogs │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.h │ │ ├── AboutDialog.ui │ │ ├── BlockedModsDialog.cpp │ │ ├── BlockedModsDialog.h │ │ ├── BlockedModsDialog.ui │ │ ├── ChooseProviderDialog.cpp │ │ ├── ChooseProviderDialog.h │ │ ├── ChooseProviderDialog.ui │ │ ├── CopyInstanceDialog.cpp │ │ ├── CopyInstanceDialog.h │ │ ├── CopyInstanceDialog.ui │ │ ├── CustomMessageBox.cpp │ │ ├── CustomMessageBox.h │ │ ├── EditAccountDialog.cpp │ │ ├── ElybyLoginDialog.cpp │ │ ├── ElybyLoginDialog.h │ │ ├── ElybyLoginDialog.ui │ │ ├── ExportInstanceDialog.cpp │ │ ├── ExportInstanceDialog.h │ │ ├── ExportInstanceDialog.ui │ │ ├── ExportPackDialog.cpp │ │ ├── ExportPackDialog.h │ │ ├── ExportPackDialog.ui │ │ ├── ExportToModListDialog.cpp │ │ ├── ExportToModListDialog.h │ │ ├── ExportToModListDialog.ui │ │ ├── IconPickerDialog.cpp │ │ ├── IconPickerDialog.h │ │ ├── IconPickerDialog.ui │ │ ├── ImportResourceDialog.cpp │ │ ├── ImportResourceDialog.h │ │ ├── ImportResourceDialog.ui │ │ ├── InstallLoaderDialog.cpp │ │ ├── InstallLoaderDialog.h │ │ ├── MSALoginDialog.cpp │ │ ├── MSALoginDialog.h │ │ ├── MSALoginDialog.ui │ │ ├── NewComponentDialog.cpp │ │ ├── NewComponentDialog.h │ │ ├── NewComponentDialog.ui │ │ ├── NewInstanceDialog.cpp │ │ ├── NewInstanceDialog.h │ │ ├── NewInstanceDialog.ui │ │ ├── NewsDialog.cpp │ │ ├── NewsDialog.h │ │ ├── NewsDialog.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 │ │ ├── ResourceDownloadDialog.cpp │ │ ├── ResourceDownloadDialog.h │ │ ├── ResourceUpdateDialog.cpp │ │ ├── ResourceUpdateDialog.h │ │ ├── ReviewMessageBox.cpp │ │ ├── ReviewMessageBox.h │ │ ├── ReviewMessageBox.ui │ │ ├── ScrollMessageBox.cpp │ │ ├── ScrollMessageBox.h │ │ ├── ScrollMessageBox.ui │ │ ├── UpdateAvailableDialog.cpp │ │ ├── UpdateAvailableDialog.h │ │ ├── UpdateAvailableDialog.ui │ │ ├── VersionSelectDialog.cpp │ │ ├── VersionSelectDialog.h │ │ └── skins │ │ │ ├── SkinManageDialog.cpp │ │ │ ├── SkinManageDialog.h │ │ │ ├── SkinManageDialog.ui │ │ │ └── draw │ │ │ ├── BoxGeometry.cpp │ │ │ ├── BoxGeometry.h │ │ │ ├── Scene.cpp │ │ │ ├── Scene.h │ │ │ ├── SkinOpenGLWindow.cpp │ │ │ └── SkinOpenGLWindow.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 │ ├── java │ │ ├── InstallJavaDialog.cpp │ │ ├── InstallJavaDialog.h │ │ ├── VersionList.cpp │ │ └── VersionList.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 │ │ │ ├── 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 │ │ │ ├── ExternalResourcesPage.cpp │ │ │ ├── ExternalResourcesPage.h │ │ │ ├── ExternalResourcesPage.ui │ │ │ ├── GameOptionsPage.cpp │ │ │ ├── GameOptionsPage.h │ │ │ ├── GameOptionsPage.ui │ │ │ ├── InstanceSettingsPage.cpp │ │ │ ├── InstanceSettingsPage.h │ │ │ ├── InstanceSettingsPage.ui │ │ │ ├── LogPage.cpp │ │ │ ├── LogPage.h │ │ │ ├── LogPage.ui │ │ │ ├── ManagedPackPage.cpp │ │ │ ├── ManagedPackPage.h │ │ │ ├── ManagedPackPage.ui │ │ │ ├── McClient.cpp │ │ │ ├── McClient.h │ │ │ ├── McResolver.cpp │ │ │ ├── McResolver.h │ │ │ ├── ModFolderPage.cpp │ │ │ ├── ModFolderPage.h │ │ │ ├── NotesPage.cpp │ │ │ ├── NotesPage.h │ │ │ ├── NotesPage.ui │ │ │ ├── OtherLogsPage.cpp │ │ │ ├── OtherLogsPage.h │ │ │ ├── OtherLogsPage.ui │ │ │ ├── ResourcePackPage.cpp │ │ │ ├── ResourcePackPage.h │ │ │ ├── ScreenshotsPage.cpp │ │ │ ├── ScreenshotsPage.h │ │ │ ├── ScreenshotsPage.ui │ │ │ ├── ServerPingTask.cpp │ │ │ ├── ServerPingTask.h │ │ │ ├── ServersPage.cpp │ │ │ ├── ServersPage.h │ │ │ ├── ServersPage.ui │ │ │ ├── ShaderPackPage.cpp │ │ │ ├── ShaderPackPage.h │ │ │ ├── TexturePackPage.cpp │ │ │ ├── TexturePackPage.h │ │ │ ├── VersionPage.cpp │ │ │ ├── VersionPage.h │ │ │ ├── VersionPage.ui │ │ │ ├── WorldListPage.cpp │ │ │ ├── WorldListPage.h │ │ │ └── WorldListPage.ui │ │ └── modplatform │ │ │ ├── CustomPage.cpp │ │ │ ├── CustomPage.h │ │ │ ├── CustomPage.ui │ │ │ ├── ImportPage.cpp │ │ │ ├── ImportPage.h │ │ │ ├── ImportPage.ui │ │ │ ├── ModModel.cpp │ │ │ ├── ModModel.h │ │ │ ├── ModPage.cpp │ │ │ ├── ModPage.h │ │ │ ├── ModpackProviderBasePage.h │ │ │ ├── OptionalModDialog.cpp │ │ │ ├── OptionalModDialog.h │ │ │ ├── OptionalModDialog.ui │ │ │ ├── ResourceModel.cpp │ │ │ ├── ResourceModel.h │ │ │ ├── ResourcePackModel.cpp │ │ │ ├── ResourcePackModel.h │ │ │ ├── ResourcePackPage.cpp │ │ │ ├── ResourcePackPage.h │ │ │ ├── ResourcePage.cpp │ │ │ ├── ResourcePage.h │ │ │ ├── ResourcePage.ui │ │ │ ├── ShaderPackModel.cpp │ │ │ ├── ShaderPackModel.h │ │ │ ├── ShaderPackPage.cpp │ │ │ ├── ShaderPackPage.h │ │ │ ├── TexturePackModel.cpp │ │ │ ├── TexturePackModel.h │ │ │ ├── TexturePackPage.h │ │ │ ├── atlauncher │ │ │ ├── AtlFilterModel.cpp │ │ │ ├── AtlFilterModel.h │ │ │ ├── AtlListModel.cpp │ │ │ ├── AtlListModel.h │ │ │ ├── AtlOptionalModDialog.cpp │ │ │ ├── AtlOptionalModDialog.h │ │ │ ├── AtlOptionalModDialog.ui │ │ │ ├── AtlPage.cpp │ │ │ ├── AtlPage.h │ │ │ ├── AtlPage.ui │ │ │ ├── AtlUserInteractionSupportImpl.cpp │ │ │ └── AtlUserInteractionSupportImpl.h │ │ │ ├── flame │ │ │ ├── FlameModel.cpp │ │ │ ├── FlameModel.h │ │ │ ├── FlamePage.cpp │ │ │ ├── FlamePage.h │ │ │ ├── FlamePage.ui │ │ │ ├── FlameResourceModels.cpp │ │ │ ├── FlameResourceModels.h │ │ │ ├── FlameResourcePages.cpp │ │ │ └── FlameResourcePages.h │ │ │ ├── import_ftb │ │ │ ├── ImportFTBPage.cpp │ │ │ ├── ImportFTBPage.h │ │ │ ├── ImportFTBPage.ui │ │ │ ├── ListModel.cpp │ │ │ └── ListModel.h │ │ │ ├── legacy_ftb │ │ │ ├── ListModel.cpp │ │ │ ├── ListModel.h │ │ │ ├── Page.cpp │ │ │ ├── Page.h │ │ │ └── Page.ui │ │ │ ├── modrinth │ │ │ ├── ModrinthModel.cpp │ │ │ ├── ModrinthModel.h │ │ │ ├── ModrinthPage.cpp │ │ │ ├── ModrinthPage.h │ │ │ ├── ModrinthPage.ui │ │ │ ├── ModrinthResourceModels.cpp │ │ │ ├── ModrinthResourceModels.h │ │ │ ├── ModrinthResourcePages.cpp │ │ │ └── ModrinthResourcePages.h │ │ │ └── technic │ │ │ ├── TechnicData.h │ │ │ ├── TechnicModel.cpp │ │ │ ├── TechnicModel.h │ │ │ ├── TechnicPage.cpp │ │ │ ├── TechnicPage.h │ │ │ └── TechnicPage.ui │ ├── setupwizard │ │ ├── AutoJavaWizardPage.cpp │ │ ├── AutoJavaWizardPage.h │ │ ├── AutoJavaWizardPage.ui │ │ ├── BaseWizardPage.h │ │ ├── JavaWizardPage.cpp │ │ ├── JavaWizardPage.h │ │ ├── LanguageWizardPage.cpp │ │ ├── LanguageWizardPage.h │ │ ├── LoginWizardPage.cpp │ │ ├── LoginWizardPage.h │ │ ├── LoginWizardPage.ui │ │ ├── PasteWizardPage.cpp │ │ ├── PasteWizardPage.h │ │ ├── PasteWizardPage.ui │ │ ├── SetupWizard.cpp │ │ ├── SetupWizard.h │ │ ├── ThemeWizardPage.cpp │ │ ├── ThemeWizardPage.h │ │ └── ThemeWizardPage.ui │ ├── themes │ │ ├── BrightTheme.cpp │ │ ├── BrightTheme.h │ │ ├── CatPack.cpp │ │ ├── CatPack.h │ │ ├── CustomTheme.cpp │ │ ├── CustomTheme.h │ │ ├── DarkTheme.cpp │ │ ├── DarkTheme.h │ │ ├── FreesmLightTheme.cpp │ │ ├── FreesmLightTheme.h │ │ ├── FreesmTheme.cpp │ │ ├── FreesmTheme.h │ │ ├── FusionTheme.cpp │ │ ├── FusionTheme.h │ │ ├── GruvboxTheme.cpp │ │ ├── GruvboxTheme.h │ │ ├── HintOverrideProxyStyle.cpp │ │ ├── HintOverrideProxyStyle.h │ │ ├── ITheme.cpp │ │ ├── ITheme.h │ │ ├── IconTheme.cpp │ │ ├── IconTheme.h │ │ ├── SystemTheme.cpp │ │ ├── SystemTheme.h │ │ ├── ThemeManager.cpp │ │ └── ThemeManager.h │ └── widgets │ │ ├── CheckComboBox.cpp │ │ ├── CheckComboBox.h │ │ ├── Common.cpp │ │ ├── Common.h │ │ ├── CustomCommands.cpp │ │ ├── CustomCommands.h │ │ ├── CustomCommands.ui │ │ ├── EnvironmentVariables.cpp │ │ ├── EnvironmentVariables.h │ │ ├── EnvironmentVariables.ui │ │ ├── ErrorFrame.cpp │ │ ├── ErrorFrame.h │ │ ├── ErrorFrame.ui │ │ ├── FocusLineEdit.cpp │ │ ├── FocusLineEdit.h │ │ ├── IconLabel.cpp │ │ ├── IconLabel.h │ │ ├── InfoFrame.cpp │ │ ├── InfoFrame.h │ │ ├── InfoFrame.ui │ │ ├── InstanceCardWidget.ui │ │ ├── JavaSettingsWidget.cpp │ │ ├── JavaSettingsWidget.h │ │ ├── JavaSettingsWidget.ui │ │ ├── JavaWizardWidget.cpp │ │ ├── JavaWizardWidget.h │ │ ├── LabeledToolButton.cpp │ │ ├── LabeledToolButton.h │ │ ├── LanguageSelectionWidget.cpp │ │ ├── LanguageSelectionWidget.h │ │ ├── LineSeparator.cpp │ │ ├── LineSeparator.h │ │ ├── LogView.cpp │ │ ├── LogView.h │ │ ├── MinecraftSettingsWidget.cpp │ │ ├── MinecraftSettingsWidget.h │ │ ├── MinecraftSettingsWidget.ui │ │ ├── ModFilterWidget.cpp │ │ ├── ModFilterWidget.h │ │ ├── ModFilterWidget.ui │ │ ├── ModListView.cpp │ │ ├── ModListView.h │ │ ├── PageContainer.cpp │ │ ├── PageContainer.h │ │ ├── PageContainer_p.h │ │ ├── ProgressWidget.cpp │ │ ├── ProgressWidget.h │ │ ├── ProjectDescriptionPage.cpp │ │ ├── ProjectDescriptionPage.h │ │ ├── ProjectItem.cpp │ │ ├── ProjectItem.h │ │ ├── SubTaskProgressBar.cpp │ │ ├── SubTaskProgressBar.h │ │ ├── SubTaskProgressBar.ui │ │ ├── ThemeCustomizationWidget.cpp │ │ ├── ThemeCustomizationWidget.h │ │ ├── ThemeCustomizationWidget.ui │ │ ├── VariableSizedImageObject.cpp │ │ ├── VariableSizedImageObject.h │ │ ├── VersionListView.cpp │ │ ├── VersionListView.h │ │ ├── VersionSelectWidget.cpp │ │ ├── VersionSelectWidget.h │ │ ├── WideBar.cpp │ │ └── WideBar.h └── updater │ ├── ExternalUpdater.h │ ├── MacSparkleUpdater.h │ ├── MacSparkleUpdater.mm │ ├── PrismExternalUpdater.cpp │ ├── PrismExternalUpdater.h │ └── prismupdater │ ├── GitHubRelease.cpp │ ├── GitHubRelease.h │ ├── PrismUpdater.cpp │ ├── PrismUpdater.h │ ├── SelectReleaseDialog.ui │ ├── UpdaterDialogs.cpp │ ├── UpdaterDialogs.h │ ├── updater.exe.manifest │ └── updater_main.cpp ├── libraries ├── .clang-tidy ├── LocalPeer │ ├── CMakeLists.txt │ ├── include │ │ └── LocalPeer.h │ └── src │ │ ├── LocalPeer.cpp │ │ ├── LockedFile.cpp │ │ ├── LockedFile.h │ │ ├── LockedFile_unix.cpp │ │ └── LockedFile_win.cpp ├── README.md ├── gamemode │ ├── CMakeLists.txt │ └── include │ │ └── gamemode_client.h ├── javacheck │ ├── .gitignore │ ├── CMakeLists.txt │ └── JavaCheck.java ├── launcher │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── legacy │ │ ├── net │ │ │ └── minecraft │ │ │ │ └── Launcher.java │ │ └── org │ │ │ └── prismlauncher │ │ │ └── legacy │ │ │ ├── LegacyFrame.java │ │ │ ├── LegacyLauncher.java │ │ │ ├── LegacyProxy.java │ │ │ ├── fix │ │ │ └── online │ │ │ │ ├── Handler.java │ │ │ │ ├── OnlineFixes.java │ │ │ │ ├── OnlineModeFix.java │ │ │ │ └── SkinFix.java │ │ │ └── utils │ │ │ ├── Base64.java │ │ │ ├── api │ │ │ ├── MojangApi.java │ │ │ └── Texture.java │ │ │ ├── json │ │ │ ├── JsonParseException.java │ │ │ └── JsonParser.java │ │ │ └── url │ │ │ ├── ByteArrayUrlConnection.java │ │ │ └── UrlUtils.java │ └── org │ │ └── prismlauncher │ │ ├── EntryPoint.java │ │ ├── SystemProperties.java │ │ ├── exception │ │ ├── ParameterNotFoundException.java │ │ └── ParseException.java │ │ ├── launcher │ │ ├── Launcher.java │ │ └── impl │ │ │ ├── AbstractLauncher.java │ │ │ └── StandardLauncher.java │ │ ├── legacy │ │ └── LegacyProxy.java │ │ └── utils │ │ ├── Parameters.java │ │ ├── ReflectionUtils.java │ │ └── logging │ │ ├── Level.java │ │ └── Log.java ├── murmur2 │ ├── CMakeLists.txt │ └── src │ │ ├── MurmurHash2.cpp │ │ └── MurmurHash2.h ├── qdcss │ ├── CMakeLists.txt │ ├── LICENSE │ ├── include │ │ └── qdcss.h │ └── src │ │ └── qdcss.cpp ├── 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 ├── nix ├── README.md ├── unwrapped.nix └── wrapper.nix ├── program_info ├── AdhocSignedApp.entitlements ├── App.entitlements ├── CMakeLists.txt ├── LICENSE ├── README.md ├── freesmlauncher-monochrome.Source.svg ├── freesmlauncher.6.scd ├── freesmlauncher.icns ├── freesmlauncher.ico ├── freesmlauncher.manifest.in ├── freesmlauncher.qrc ├── freesmlauncher.rc.in ├── genicons.sh ├── instance_icons.svg ├── modrinth-mrpack-mime.xml ├── org.freesmTeam.freesmlauncher.Social.svg ├── org.freesmTeam.freesmlauncher.bigsur.svg ├── org.freesmTeam.freesmlauncher.desktop.in ├── org.freesmTeam.freesmlauncher.logo-darkmode.svg ├── org.freesmTeam.freesmlauncher.logo.svg ├── org.freesmTeam.freesmlauncher.metainfo.xml.in ├── org.freesmTeam.freesmlauncher.source.svg ├── org.freesmTeam.freesmlauncher.svg ├── portable.txt └── win_install.nsi.in ├── renovate.json ├── scripts └── compress_images.sh └── tests ├── CMakeLists.txt ├── CatPack_test.cpp ├── DataPackParse_test.cpp ├── DummyResourceAPI.h ├── FileSystem_test.cpp ├── GZip_test.cpp ├── GradleSpecifier_test.cpp ├── INIFile_test.cpp ├── Index_test.cpp ├── JavaVersion_test.cpp ├── Library_test.cpp ├── MetaComponentParse_test.cpp ├── MojangVersionFormat_test.cpp ├── Packwiz_test.cpp ├── ParseUtils_test.cpp ├── ResourceFolderModel_test.cpp ├── ResourceModel_test.cpp ├── ResourcePackParse_test.cpp ├── ShaderPackParse_test.cpp ├── Task_test.cpp ├── TexturePackParse_test.cpp ├── Version_test.cpp ├── WorldSaveParse_test.cpp └── testdata ├── CatPacks └── index.json ├── DataPackParse ├── another_test_folder │ ├── data │ │ └── dummy │ │ │ └── tags │ │ │ └── item │ │ │ └── foo_proof │ │ │ └── bar.json │ └── pack.mcmeta ├── test_data_pack_boogaloo.zip └── test_folder │ ├── data │ └── dummy │ │ └── tags │ │ └── item │ │ └── foo_proof │ │ └── bar.json │ └── pack.mcmeta ├── FileSystem ├── FileSystem-test_createShortcut-unix └── test_folder │ ├── .secret_folder │ └── .secret_file.txt │ ├── assets │ └── minecraft │ │ └── textures │ │ └── blah.txt │ ├── pack.mcmeta │ └── pack.nfo ├── Library ├── MetaComponentParse ├── component_basic.json ├── component_with_extra.json ├── component_with_format.json ├── component_with_link.json └── component_with_mixed.json ├── MojangVersionFormat ├── 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 ├── PackageManifest ├── 1.8.0_202-x64.json ├── inspect │ └── a │ │ ├── b.txt │ │ └── b │ │ └── b.txt └── inspect_win │ └── a │ ├── b.txt │ └── b │ └── b.txt ├── Packwiz ├── borderless-mining.pw.toml └── screenshot-to-clipboard-fabric.pw.toml ├── ResourceFolderModel ├── ResourcePackParse ├── another_test_folder │ └── pack.mcmeta ├── supercoolmod.jar ├── test_folder │ ├── assets │ │ └── minecraft │ │ │ └── textures │ │ │ └── blah.txt │ ├── pack.mcmeta │ └── pack.nfo └── test_resource_pack_idk.zip ├── ShaderPackParse ├── shaderpack1.zip ├── shaderpack2 │ └── shaders │ │ └── shaders.properties └── shaderpack3.zip ├── TexturePackParse ├── another_test_texturefolder │ └── pack.txt ├── test_texture_pack_idk.zip └── test_texturefolder │ ├── assets │ └── minecraft │ │ └── textures │ │ └── blah.txt │ └── pack.txt ├── Version └── test_vectors.txt └── WorldSaveParse ├── minecraft_save_1.zip ├── minecraft_save_2.zip ├── minecraft_save_3 └── world_3 │ └── level.dat └── minecraft_save_4 └── saves └── world_4 └── level.dat /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Chromium 3 | IndentWidth: 4 4 | AllowShortIfStatementsOnASingleLine: false 5 | ColumnLimit: 140 6 | --- 7 | Language: Cpp 8 | AlignConsecutiveMacros: None 9 | AlignConsecutiveAssignments: None 10 | BraceWrapping: 11 | AfterFunction: true 12 | SplitEmptyFunction: false 13 | SplitEmptyRecord: false 14 | SplitEmptyNamespace: false 15 | BreakBeforeBraces: Custom 16 | BreakConstructorInitializers: BeforeComma 17 | Cpp11BracedListStyle: false 18 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig specs and documentation: https://EditorConfig.org 2 | 3 | # top-most EditorConfig file 4 | root = true 5 | 6 | # C++ Code Style settings 7 | [*.{c++,cc,cpp,cppm,cxx,h,h++,hh,hpp,hxx,inl,ipp,ixx,tlh,tli}] 8 | cpp_generate_documentation_comments = doxygen_slash_star 9 | -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | watch_file nix/*.nix 3 | -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- 1 | # .git-blame-ignore-revs 2 | 3 | # tabs -> spaces 4 | bbb3b3e6f6e3c0f95873f22e6d0a4aaf350f49d9 5 | 6 | # (nix) alejandra -> nixfmt 7 | 4c81d8c53d09196426568c4a31a4e752ed05397a 8 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pem -crlf 2 | **/testdata/** -text -diff 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Official Freesm Telegram Channel 4 | url: https://freesm.t.me 5 | about: Please ask for support here before opening an issue. -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- 1 | allowRemediationCommits: 2 | individual: true 3 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | name: Publish 2 | 3 | on: 4 | release: 5 | types: [ released ] 6 | 7 | permissions: 8 | contents: read 9 | 10 | jobs: 11 | winget: 12 | name: Winget 13 | 14 | runs-on: windows-latest 15 | 16 | steps: 17 | - name: Publish on Winget 18 | uses: vedantmgoyal2009/winget-releaser@v2 19 | with: 20 | identifier: FreesTeam.FreesmLauncher 21 | version: ${{ github.event.release.tag_name }} 22 | installers-regex: 'FreesmLauncher-Windows-MSVC(:?-arm64|-Legacy)?-Setup-.+\.exe$' 23 | token: ${{ secrets.WINGET_TOKEN }} 24 | -------------------------------------------------------------------------------- /.markdownlint.yaml: -------------------------------------------------------------------------------- 1 | # MD013/line-length - Line length 2 | MD013: false 3 | 4 | # MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content 5 | MD024: 6 | siblings-only: true 7 | 8 | # MD033/no-inline-html Inline HTML 9 | MD033: false 10 | 11 | # MD041/first-line-heading/first-line-h1 First line in a file should be a top-level heading 12 | MD041: false 13 | -------------------------------------------------------------------------------- /.markdownlintignore: -------------------------------------------------------------------------------- 1 | libraries/nbtplusplus 2 | libraries/quazip 3 | -------------------------------------------------------------------------------- /buildconfig/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ######## Configure the file with build properties ######## 2 | 3 | configure_file("${CMAKE_CURRENT_SOURCE_DIR}/BuildConfig.cpp.in" "${CMAKE_CURRENT_BINARY_DIR}/BuildConfig.cpp") 4 | 5 | add_library(BuildConfig STATIC 6 | BuildConfig.h 7 | ${CMAKE_CURRENT_BINARY_DIR}/BuildConfig.cpp 8 | ) 9 | 10 | target_link_libraries(BuildConfig Qt${QT_VERSION_MAJOR}::Core) 11 | target_include_directories(BuildConfig PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}") 12 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- 1 | (import ( 2 | let 3 | lock = builtins.fromJSON (builtins.readFile ./flake.lock); 4 | in 5 | fetchTarball { 6 | url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz"; 7 | sha256 = lock.nodes.flake-compat.locked.narHash; 8 | } 9 | ) {src = ./.;}) 10 | .defaultNix 11 | -------------------------------------------------------------------------------- /docs/screenshots/freesmlauncher_home_maxwell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/docs/screenshots/freesmlauncher_home_maxwell.gif -------------------------------------------------------------------------------- /docs/screenshots/freesmlauncher_home_mita.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/docs/screenshots/freesmlauncher_home_mita.gif -------------------------------------------------------------------------------- /docs/screenshots/freesmlauncher_home_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/docs/screenshots/freesmlauncher_home_screenshot.png -------------------------------------------------------------------------------- /docs/screenshots/freesmlauncher_home_screenshot_opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/docs/screenshots/freesmlauncher_home_screenshot_opacity.png -------------------------------------------------------------------------------- /docs/screenshots/freesmlauncher_instance_add_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/docs/screenshots/freesmlauncher_instance_add_screenshot.png -------------------------------------------------------------------------------- /docs/screenshots/freesmlauncher_instance_settings_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/docs/screenshots/freesmlauncher_instance_settings_screenshot.png -------------------------------------------------------------------------------- /docs/screenshots/freesmlauncher_settings_accounts_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/docs/screenshots/freesmlauncher_settings_accounts_screenshot.png -------------------------------------------------------------------------------- /docs/screenshots/freesmlauncher_settings_theme_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/docs/screenshots/freesmlauncher_settings_theme_screenshot.png -------------------------------------------------------------------------------- /flatpak/flite.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flite", 3 | "config-opts": [ 4 | "--enable-shared", 5 | "--with-audio=pulseaudio" 6 | ], 7 | "no-parallel-make": true, 8 | "sources": [ 9 | { 10 | "type": "git", 11 | "url": "https://github.com/festvox/flite.git", 12 | "tag": "v2.2", 13 | "commit": "e9e2e37c329dbe98bfeb27a1828ef9a71fa84f88", 14 | "x-checker-data": { 15 | "type": "git", 16 | "tag-pattern": "^v([\\d.]+)$" 17 | } 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /flatpak/freesmlauncher: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # discord RPC 4 | for i in {0..9}; do 5 | test -S "$XDG_RUNTIME_DIR"/discord-ipc-"$i" || ln -sf {app/com.discordapp.Discord,"$XDG_RUNTIME_DIR"}/discord-ipc-"$i"; 6 | done 7 | 8 | export PATH="${PATH}${PATH:+:}/usr/lib/extensions/vulkan/gamescope/bin:/usr/lib/extensions/vulkan/MangoHud/bin" 9 | export VK_LAYER_PATH="/usr/lib/extensions/vulkan/share/vulkan/implicit_layer.d/" 10 | 11 | exec /app/bin/prismrun "$@" 12 | -------------------------------------------------------------------------------- /flatpak/libdecor.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "libdecor", 3 | "buildsystem": "meson", 4 | "config-opts": [ 5 | "-Ddemo=false" 6 | ], 7 | "sources": [ 8 | { 9 | "type": "git", 10 | "url": "https://gitlab.freedesktop.org/libdecor/libdecor.git", 11 | "commit": "c2bd8ad6fa42c0cb17553ce77ad8a87d1f543b1f" 12 | } 13 | ], 14 | "cleanup": [ 15 | "/include", 16 | "/lib/pkgconfig" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /flatpak/prime-run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | export __NV_PRIME_RENDER_OFFLOAD=1 __VK_LAYER_NV_optimus=NVIDIA_only __GLX_VENDOR_LIBRARY_NAME=nvidia 4 | exec "$@" 5 | -------------------------------------------------------------------------------- /launcher/ApplicationMessage.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | #include 6 | 7 | struct ApplicationMessage { 8 | QString command; 9 | QHash args; 10 | 11 | QByteArray serialize(); 12 | void parse(const QByteArray& input); 13 | }; 14 | -------------------------------------------------------------------------------- /launcher/GZip.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | class GZip { 5 | public: 6 | static bool unzip(const QByteArray& compressedBytes, QByteArray& uncompressedBytes); 7 | static bool zip(const QByteArray& uncompressedBytes, QByteArray& compressedBytes); 8 | }; 9 | -------------------------------------------------------------------------------- /launcher/KonamiCode.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | class KonamiCode : public QObject { 6 | Q_OBJECT 7 | public: 8 | KonamiCode(QObject* parent = 0); 9 | void input(QEvent* event); 10 | 11 | signals: 12 | void triggered(); 13 | 14 | private: 15 | int m_progress = 0; 16 | }; 17 | -------------------------------------------------------------------------------- /launcher/SysInfo.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | namespace SysInfo { 4 | QString currentSystem(); 5 | QString useQTForArch(); 6 | QString getSupportedJavaArchitecture(); 7 | int suitableMaxMem(); 8 | } // namespace SysInfo 9 | -------------------------------------------------------------------------------- /launcher/WatchLock.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | #include 5 | #include 6 | 7 | struct WatchLock { 8 | WatchLock(QFileSystemWatcher* watcher, const QString& directory) : m_watcher(watcher), m_directory(directory) 9 | { 10 | m_watcher->removePath(m_directory); 11 | } 12 | ~WatchLock() { m_watcher->addPath(m_directory); } 13 | QFileSystemWatcher* m_watcher; 14 | QString m_directory; 15 | }; 16 | -------------------------------------------------------------------------------- /launcher/minecraft/ParseUtils.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | 5 | /// take the timestamp used by S3 and turn it into QDateTime 6 | QDateTime timeFromS3Time(QString str); 7 | 8 | /// take a timestamp and convert it into an S3 timestamp 9 | QString timeToS3Time(QDateTime); 10 | -------------------------------------------------------------------------------- /launcher/minecraft/auth/MinecraftAccount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/minecraft/auth/MinecraftAccount.cpp -------------------------------------------------------------------------------- /launcher/minecraft/update/FoldersTask.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "tasks/Task.h" 4 | 5 | class MinecraftInstance; 6 | class FoldersTask : public Task { 7 | Q_OBJECT 8 | public: 9 | FoldersTask(MinecraftInstance* inst); 10 | virtual ~FoldersTask() = default; 11 | 12 | void executeTask() override; 13 | 14 | private: 15 | MinecraftInstance* m_inst; 16 | }; 17 | -------------------------------------------------------------------------------- /launcher/net/Mode.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace Net { 4 | enum class Mode { Offline, Online }; 5 | } 6 | -------------------------------------------------------------------------------- /launcher/pathmatcher/FSTreeMatcher.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | #include "IPathMatcher.h" 6 | 7 | class FSTreeMatcher : public IPathMatcher { 8 | public: 9 | virtual ~FSTreeMatcher() {}; 10 | FSTreeMatcher(SeparatorPrefixTree<'/'>& tree) : m_fsTree(tree) {} 11 | 12 | bool matches(const QString& string) const override { return m_fsTree.covers(string); } 13 | 14 | SeparatorPrefixTree<'/'>& m_fsTree; 15 | }; 16 | -------------------------------------------------------------------------------- /launcher/pathmatcher/IPathMatcher.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | 5 | class IPathMatcher { 6 | public: 7 | using Ptr = std::shared_ptr; 8 | 9 | public: 10 | virtual ~IPathMatcher() {} 11 | virtual bool matches(const QString& string) const = 0; 12 | }; 13 | -------------------------------------------------------------------------------- /launcher/qtlogging.ini: -------------------------------------------------------------------------------- 1 | [Rules] 2 | *.debug=true 3 | # prevent log spam and strange bugs 4 | # qt.qpa.drawing in particular causes theme artifacts on MacOS 5 | qt.*.debug=false 6 | # don't log credentials by default 7 | launcher.auth.credentials.debug=false 8 | # remove the debug lines, other log levels still get through 9 | launcher.task.net.download.debug=false 10 | # enable or disable whole catageries 11 | launcher.task.net=true 12 | launcher.task=false 13 | launcher.task.net.upload=true 14 | launcher.task.net.metacache=false 15 | launcher.task.net.metacache.http=true 16 | 17 | -------------------------------------------------------------------------------- /launcher/resources/OSX/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=OSX 3 | Comment=OSX theme by pexner 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/assets/underconstruction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/assets/underconstruction.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/kitteh-bday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/kitteh-bday.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/kitteh-spooky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/kitteh-spooky.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/kitteh-xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/kitteh-xmas.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/kitteh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/kitteh.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/konata.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/konata.gif -------------------------------------------------------------------------------- /launcher/resources/backgrounds/maxwell-christmas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/maxwell-christmas.gif -------------------------------------------------------------------------------- /launcher/resources/backgrounds/miside-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/miside-screenshot.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/rory-bday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/rory-bday.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/rory-flat-bday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/rory-flat-bday.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/rory-flat-spooky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/rory-flat-spooky.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/rory-flat-xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/rory-flat-xmas.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/rory-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/rory-flat.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/rory-spooky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/rory-spooky.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/rory-xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/rory-xmas.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/rory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/rory.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/teawie-bday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/teawie-bday.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/teawie-spooky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/teawie-spooky.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/teawie-xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/teawie-xmas.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/teawie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/teawie.png -------------------------------------------------------------------------------- /launcher/resources/backgrounds/typescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/backgrounds/typescript.png -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Breeze Dark 3 | Comment=Breeze Dark Icons 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/about.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/bug.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/centralmods.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/coremods.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/launch.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/loadermods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/log.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/patreon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/server.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/status-bad.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /launcher/resources/breeze_dark/scalable/viewfolder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Breeze Light 3 | Comment=Breeze Light Icons 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/about.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/bug.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/centralmods.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/coremods.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/launch.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/loadermods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/log.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/patreon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/server.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/status-bad.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /launcher/resources/breeze_light/scalable/viewfolder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /launcher/resources/documents/documents.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ../../../docs/COPYING.md 5 | login-qr.svg 6 | 7 | -------------------------------------------------------------------------------- /launcher/resources/flat/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Flat 3 | Comment=Flat icons 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/about.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/accounts.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/bug.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/centralmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/checkupdate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/coremods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/custom-commands.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/delete.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/export.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/externaltools.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/jarmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/java.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/launch.svg: -------------------------------------------------------------------------------- 1 | 2 | 10 | 12 | 16 | 17 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/loadermods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/log.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/minecraft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/multimc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/new.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/notes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/packages.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/patreon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/quickmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/rename.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/resourcepacks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/screenshot-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/screenshots.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/shortcut.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/status-bad.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/status-good.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/status-running.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/status-yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/tag.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/viewfolder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat/scalable/worlds.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Flat (White) 3 | Comment=White version of the flat icons (dark mode) 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/about.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/accounts.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/bug.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/centralmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/checkupdate.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/coremods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/custom-commands.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/externaltools.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/jarmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/java.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/launch.svg: -------------------------------------------------------------------------------- 1 | 2 | 10 | 12 | 16 | 17 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/loadermods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/log.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/minecraft.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/multimc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/new.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/news.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/notes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/packages.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/patreon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/quickmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/resourcepacks.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/screenshot-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/screenshots.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/server.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/shortcut.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/status-bad.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/status-good.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/status-running.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/status-yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/viewfolder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/flat_white/scalable/worlds.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Fluent 3 | Comment=Fluent default icons in Freesm Launcher 4 | Inherits=flat 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/fluent/index.theme.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2024 FreesmTeam 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/about.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/about.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/accounts.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/bug.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/cat.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/centralmods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/checkupdate.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/copy.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/coremods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/custom-commands.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/delete.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/discord.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/environment-variables.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/export.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/externaltools.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/help.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/instance-settings.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/jarmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/jarmods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/java.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/language.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/launch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/launch.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/launcher.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/launcher.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/loadermods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/log.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/minecraft.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/multimc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/multimc.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/new.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/news.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/notes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/notes.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/packages.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/packages.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/patreon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/patreon.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/proxy.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/quickmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/quickmods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/reddit-alien.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/refresh.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/rename.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/rename.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/resourcepacks.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/screenshot-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/screenshot-placeholder.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/screenshots.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/server.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/server.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/settings.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/shaderpacks.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/shortcut.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/shortcut.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/star.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/status-bad.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/status-good.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/status-good.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/status-running.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/status-running.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/status-yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/status-yellow.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/tag.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/viewfolder.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent/scalable/worlds.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Fluent Dark 3 | Comment=Fluent Dark default icons in Freesm Launcher 4 | Inherits=flat_white 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/index.theme.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2022 JoeGaming 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/about.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/about.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/accounts.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/bug.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/cat.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/centralmods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/checkupdate.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/copy.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/coremods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/custom-commands.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/delete.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/discord.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/environment-variables.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/export.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/externaltools.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/help.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/instance-settings.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/jarmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/jarmods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/java.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/language.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/launch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/launch.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/launcher.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/launcher.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/loadermods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/log.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/minecraft.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/multimc.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/multimc.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/new.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/news.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/notes.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/notes.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/packages.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/packages.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/patreon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/patreon.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/proxy.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/quickmods.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/quickmods.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/reddit-alien.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/refresh.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/refresh.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/rename.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/rename.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/resourcepacks.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/screenshot-placeholder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/screenshot-placeholder.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/screenshots.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/server.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/server.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/settings.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/shaderpacks.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/shortcut.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/shortcut.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/star.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/status-bad.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/status-good.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/status-good.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/status-running.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/status-running.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/status-yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/status-yellow.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/tag.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/viewfolder.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/fluent_dark/scalable/worlds.svg.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: 2020 Microsoft Corporation 2 | 3 | SPDX-License-Identifier: MIT 4 | -------------------------------------------------------------------------------- /launcher/resources/iOS/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=iOS 3 | Comment=iOS theme by pexner 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/chicken_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/chicken_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/creeper_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/creeper_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/enderpearl_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/enderpearl_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/flame_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/flame_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/forge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/forge.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/ftb_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/ftb_glow.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/ftb_logo_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/ftb_logo_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/gear_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/gear_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/herobrine_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/herobrine_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/infinity_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/infinity_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/liteloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/liteloader.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/magitech_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/magitech_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/meat_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/meat_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/netherstar_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/netherstar_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/skeleton_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/skeleton_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/squarecreeper_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/squarecreeper_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/instances/steve_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/instances/steve_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/shaderpacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/shaderpacks.png -------------------------------------------------------------------------------- /launcher/resources/multimc/128x128/unknown_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/128x128/unknown_server.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/centralmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/centralmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/checkupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/checkupdate.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/coremods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/coremods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/instance-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/instance-settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/loadermods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/loadermods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/minecraft.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/noaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/noaccount.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/resourcepacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/resourcepacks.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/screenshots.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/status-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/status-bad.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/status-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/status-good.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/status-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/status-running.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/status-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/status-yellow.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/viewfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/viewfolder.png -------------------------------------------------------------------------------- /launcher/resources/multimc/16x16/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/16x16/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/centralmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/centralmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/checkupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/checkupdate.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/instance-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/instance-settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/screenshots.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/status-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/status-bad.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/status-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/status-good.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/status-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/status-running.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/status-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/status-yellow.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/viewfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/viewfolder.png -------------------------------------------------------------------------------- /launcher/resources/multimc/22x22/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/22x22/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/coremods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/coremods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/loadermods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/loadermods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/minecraft.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/noaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/noaccount.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/resourcepacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/resourcepacks.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/status-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/status-bad.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/status-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/status-good.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/status-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/status-running.png -------------------------------------------------------------------------------- /launcher/resources/multimc/24x24/status-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/24x24/status-yellow.png -------------------------------------------------------------------------------- /launcher/resources/multimc/256x256/minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/256x256/minecraft.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/centralmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/centralmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/checkupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/checkupdate.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/coremods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/coremods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instance-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instance-settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/brick_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/brick_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/chicken_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/chicken_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/creeper_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/creeper_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/diamond_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/diamond_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/dirt_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/dirt_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/enderpearl_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/enderpearl_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/ftb_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/ftb_glow.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/ftb_logo_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/ftb_logo_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/gear_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/gear_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/gold_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/gold_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/grass_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/grass_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/herobrine_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/herobrine_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/infinity_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/infinity_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/iron_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/iron_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/magitech_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/magitech_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/meat_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/meat_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/netherstar_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/netherstar_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/planks_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/planks_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/skeleton_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/skeleton_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/squarecreeper_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/squarecreeper_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/steve_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/steve_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/stone_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/stone_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/instances/tnt_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/instances/tnt_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/loadermods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/loadermods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/minecraft.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/noaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/noaccount.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/resourcepacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/resourcepacks.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/screenshots.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/status-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/status-bad.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/status-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/status-good.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/status-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/status-running.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/status-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/status-yellow.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/viewfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/viewfolder.png -------------------------------------------------------------------------------- /launcher/resources/multimc/32x32/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/32x32/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/centralmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/centralmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/checkupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/checkupdate.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/instance-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/instance-settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/minecraft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/minecraft.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/noaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/noaccount.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/screenshots.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/status-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/status-bad.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/status-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/status-good.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/status-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/status-running.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/status-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/status-yellow.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/viewfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/viewfolder.png -------------------------------------------------------------------------------- /launcher/resources/multimc/48x48/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/48x48/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/50x50/instances/enderman_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/50x50/instances/enderman_legacy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/about.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/bug.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/cat.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/centralmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/centralmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/checkupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/checkupdate.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/copy.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/coremods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/coremods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/help.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/instance-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/instance-settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/jarmods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/jarmods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/loadermods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/loadermods.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/log.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/new.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/news.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/patreon.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/refresh.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/resourcepacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/resourcepacks.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/screenshots.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/settings.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/star.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/status-bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/status-bad.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/status-good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/status-good.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/status-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/status-running.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/status-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/status-yellow.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/viewfolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/viewfolder.png -------------------------------------------------------------------------------- /launcher/resources/multimc/64x64/worlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/64x64/worlds.png -------------------------------------------------------------------------------- /launcher/resources/multimc/8x8/noaccount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/8x8/noaccount.png -------------------------------------------------------------------------------- /launcher/resources/multimc/scalable/atlauncher-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/multimc/scalable/atlauncher-placeholder.png -------------------------------------------------------------------------------- /launcher/resources/pe_blue/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Simple (Blue) 3 | Comment=Icons by pexner (blue) 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/pe_colored/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Simple (Colored) 3 | Comment=Icons by pexner (colored) 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/pe_dark/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Simple (Dark) 3 | Comment=Icons by pexner (dark) 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/pe_light/index.theme: -------------------------------------------------------------------------------- 1 | [Icon Theme] 2 | Name=Simple (Light) 3 | Comment=Icons by pexner (light) 4 | Inherits=multimc 5 | Directories=scalable 6 | 7 | [scalable] 8 | Size=48 9 | Type=Scalable 10 | MinSize=16 11 | MaxSize=256 12 | -------------------------------------------------------------------------------- /launcher/resources/shaders/shaders.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | vshader.glsl 4 | fshader.glsl 5 | 6 | -------------------------------------------------------------------------------- /launcher/resources/sources/burfcat_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/sources/burfcat_hat.png -------------------------------------------------------------------------------- /launcher/resources/sources/cattiversary.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/resources/sources/cattiversary.xcf -------------------------------------------------------------------------------- /launcher/screenshots/Screenshot.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | 8 | struct ScreenShot { 9 | using Ptr = std::shared_ptr; 10 | 11 | ScreenShot(QFileInfo file) { m_file = file; } 12 | QFileInfo m_file; 13 | QString m_url; 14 | QString m_imgurId; 15 | QString m_imgurDeleteHash; 16 | }; 17 | -------------------------------------------------------------------------------- /launcher/tools/JProfiler.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "BaseProfiler.h" 4 | 5 | class JProfilerFactory : public BaseProfilerFactory { 6 | public: 7 | QString name() const override { return "JProfiler"; } 8 | void registerSettings(SettingsObjectPtr settings) override; 9 | BaseExternalTool* createTool(InstancePtr instance, QObject* parent = 0) override; 10 | bool check(QString* error) override; 11 | bool check(const QString& path, QString* error) override; 12 | }; 13 | -------------------------------------------------------------------------------- /launcher/tools/JVisualVM.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "BaseProfiler.h" 4 | 5 | class JVisualVMFactory : public BaseProfilerFactory { 6 | public: 7 | QString name() const override { return "JVisualVM"; } 8 | void registerSettings(SettingsObjectPtr settings) override; 9 | BaseExternalTool* createTool(InstancePtr instance, QObject* parent = 0) override; 10 | bool check(QString* error) override; 11 | bool check(const QString& path, QString* error) override; 12 | }; 13 | -------------------------------------------------------------------------------- /launcher/tools/MCEditTool.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include "settings/SettingsObject.h" 5 | 6 | class MCEditTool { 7 | public: 8 | MCEditTool(SettingsObjectPtr settings); 9 | void setPath(QString& path); 10 | QString path() const; 11 | bool check(const QString& toolPath, QString& error); 12 | QString getProgramPath(); 13 | 14 | private: 15 | SettingsObjectPtr m_settings; 16 | }; 17 | -------------------------------------------------------------------------------- /launcher/translations/POTranslator.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | struct POTranslatorPrivate; 6 | 7 | class POTranslator : public QTranslator { 8 | Q_OBJECT 9 | public: 10 | explicit POTranslator(const QString& filename, QObject* parent = nullptr); 11 | virtual ~POTranslator(); 12 | QString translate(const char* context, const char* sourceText, const char* disambiguation, int n) const override; 13 | bool isEmpty() const override; 14 | 15 | private: 16 | POTranslatorPrivate* d; 17 | }; 18 | -------------------------------------------------------------------------------- /launcher/ui/GuiUtil.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | 6 | namespace GuiUtil { 7 | std::optional uploadPaste(const QString& name, const QString& text, QWidget* parentWidget); 8 | void setClipboardText(const QString& text); 9 | QStringList BrowseForFiles(QString context, QString caption, QString filter, QString defaultPath, QWidget* parentWidget); 10 | QString BrowseForFile(QString context, QString caption, QString filter, QString defaultPath, QWidget* parentWidget); 11 | } // namespace GuiUtil 12 | -------------------------------------------------------------------------------- /launcher/ui/dialogs/EditAccountDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/ui/dialogs/EditAccountDialog.cpp -------------------------------------------------------------------------------- /launcher/ui/dialogs/ScrollMessageBox.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | QT_BEGIN_NAMESPACE 6 | namespace Ui { 7 | class ScrollMessageBox; 8 | } 9 | QT_END_NAMESPACE 10 | 11 | class ScrollMessageBox : public QDialog { 12 | Q_OBJECT 13 | 14 | public: 15 | ScrollMessageBox(QWidget* parent, const QString& title, const QString& text, const QString& body); 16 | 17 | ~ScrollMessageBox() override; 18 | 19 | private: 20 | Ui::ScrollMessageBox* ui; 21 | }; 22 | -------------------------------------------------------------------------------- /launcher/ui/instanceview/AccessibleInstanceView.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | class QAccessibleInterface; 6 | 7 | QAccessibleInterface* groupViewAccessibleFactory(const QString& classname, QObject* object); 8 | -------------------------------------------------------------------------------- /launcher/ui/pages/BasePageContainer.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class BasePage; 4 | 5 | class BasePageContainer { 6 | public: 7 | virtual ~BasePageContainer() {}; 8 | virtual bool selectPage(QString pageId) = 0; 9 | virtual BasePage* selectedPage() const = 0; 10 | virtual BasePage* getPage(QString pageId) { return nullptr; }; 11 | virtual void refreshContainer() = 0; 12 | virtual bool requestClose() = 0; 13 | }; 14 | -------------------------------------------------------------------------------- /launcher/ui/pages/global/MinecraftPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/ui/pages/global/MinecraftPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/global/MinecraftPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/ui/pages/global/MinecraftPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/InstanceSettingsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/ui/pages/instance/InstanceSettingsPage.cpp -------------------------------------------------------------------------------- /launcher/ui/pages/instance/InstanceSettingsPage.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/launcher/ui/pages/instance/InstanceSettingsPage.ui -------------------------------------------------------------------------------- /launcher/ui/pages/instance/ServerPingTask.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | 6 | #include 7 | 8 | 9 | class ServerPingTask : public Task { 10 | Q_OBJECT 11 | public: 12 | explicit ServerPingTask(QString domain, int port) : Task(), m_domain(domain), m_port(port) {} 13 | ~ServerPingTask() override = default; 14 | int m_outputOnlinePlayers = -1; 15 | 16 | private: 17 | QString m_domain; 18 | int m_port; 19 | 20 | protected: 21 | virtual void executeTask() override; 22 | }; 23 | -------------------------------------------------------------------------------- /launcher/ui/setupwizard/AutoJavaWizardPage.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include "BaseWizardPage.h" 4 | 5 | namespace Ui { 6 | class AutoJavaWizardPage; 7 | } 8 | 9 | class AutoJavaWizardPage : public BaseWizardPage { 10 | Q_OBJECT 11 | 12 | public: 13 | explicit AutoJavaWizardPage(QWidget* parent = nullptr); 14 | ~AutoJavaWizardPage(); 15 | 16 | void initializePage() override; 17 | bool validatePage() override; 18 | void retranslate() override; 19 | 20 | private: 21 | Ui::AutoJavaWizardPage* ui; 22 | }; 23 | -------------------------------------------------------------------------------- /launcher/ui/themes/FusionTheme.cpp: -------------------------------------------------------------------------------- 1 | #include "FusionTheme.h" 2 | 3 | QString FusionTheme::qtTheme() 4 | { 5 | return "Fusion"; 6 | } 7 | -------------------------------------------------------------------------------- /launcher/ui/themes/FusionTheme.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "ITheme.h" 4 | 5 | class FusionTheme : public ITheme { 6 | public: 7 | virtual ~FusionTheme() {} 8 | 9 | QString qtTheme() override; 10 | }; 11 | -------------------------------------------------------------------------------- /launcher/ui/widgets/Common.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | /** Cuts out the text in textLayout into smaller pieces, according to the lineWidth. 6 | * Returns a list of pairs, each containing the width of that line and that line's string, respectively. 7 | * The total height of those lines is set in the last argument, 'height'. 8 | */ 9 | QList> viewItemTextLayout(QTextLayout& textLayout, int lineWidth, qreal& height); 10 | -------------------------------------------------------------------------------- /launcher/ui/widgets/FocusLineEdit.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | class FocusLineEdit : public QLineEdit { 6 | Q_OBJECT 7 | public: 8 | FocusLineEdit(QWidget* parent); 9 | virtual ~FocusLineEdit() {} 10 | 11 | protected: 12 | void focusInEvent(QFocusEvent* e); 13 | void mousePressEvent(QMouseEvent* me); 14 | 15 | bool _selectOnMousePress; 16 | }; 17 | -------------------------------------------------------------------------------- /launcher/ui/widgets/LineSeparator.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | class QStyleOption; 5 | 6 | class LineSeparator : public QWidget { 7 | Q_OBJECT 8 | 9 | public: 10 | /// Create a line separator. orientation is the orientation of the line. 11 | explicit LineSeparator(QWidget* parent, Qt::Orientation orientation = Qt::Horizontal); 12 | QSize sizeHint() const; 13 | void paintEvent(QPaintEvent*); 14 | void initStyleOption(QStyleOption* option) const; 15 | 16 | private: 17 | Qt::Orientation m_orientation = Qt::Horizontal; 18 | }; 19 | -------------------------------------------------------------------------------- /libraries/.clang-tidy: -------------------------------------------------------------------------------- 1 | # We don't care about linting third-party code. 2 | Checks: -* 3 | -------------------------------------------------------------------------------- /libraries/gamemode/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.9.4) 2 | project(gamemode 3 | VERSION 1.6.1) 4 | 5 | add_library(gamemode) 6 | target_include_directories(gamemode PUBLIC include) 7 | target_link_libraries(gamemode PUBLIC ${CMAKE_DL_LIBS}) 8 | -------------------------------------------------------------------------------- /libraries/javacheck/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | out 4 | .classpath 5 | .idea 6 | .project 7 | -------------------------------------------------------------------------------- /libraries/javacheck/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.9.4) 2 | project(launcher Java) 3 | find_package(Java 1.7 REQUIRED COMPONENTS Development) 4 | 5 | include(UseJava) 6 | set(CMAKE_JAVA_JAR_ENTRY_POINT JavaCheck) 7 | set(CMAKE_JAVA_COMPILE_FLAGS -target 7 -source 7 -Xlint:deprecation -Xlint:unchecked) 8 | 9 | set(SRC 10 | JavaCheck.java 11 | ) 12 | 13 | add_jar(JavaCheck ${SRC}) 14 | install_jar(JavaCheck "${JARS_DEST_DIR}") 15 | -------------------------------------------------------------------------------- /libraries/launcher/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | out 4 | .classpath 5 | .idea 6 | .project 7 | bin/ 8 | -------------------------------------------------------------------------------- /libraries/launcher/LICENSE: -------------------------------------------------------------------------------- 1 | ../../LICENSE -------------------------------------------------------------------------------- /libraries/murmur2/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.9.4) 2 | project(murmur2) 3 | 4 | set(MURMUR_SOURCES 5 | src/MurmurHash2.h 6 | src/MurmurHash2.cpp 7 | ) 8 | 9 | add_library(Launcher_murmur2 STATIC ${MURMUR_SOURCES}) 10 | target_include_directories(Launcher_murmur2 PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} "src" ) 11 | 12 | generate_export_header(Launcher_murmur2) 13 | -------------------------------------------------------------------------------- /libraries/rainbow/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.9.4) 2 | project(rainbow) 3 | 4 | if(QT_VERSION_MAJOR EQUAL 5) 5 | find_package(Qt5 COMPONENTS Core Gui REQUIRED) 6 | elseif(Launcher_QT_VERSION_MAJOR EQUAL 6) 7 | find_package(Qt6 COMPONENTS Core Gui REQUIRED) 8 | endif() 9 | 10 | set(RAINBOW_SOURCES 11 | src/rainbow.cpp 12 | ) 13 | 14 | add_library(Launcher_rainbow STATIC ${RAINBOW_SOURCES}) 15 | target_include_directories(Launcher_rainbow PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/include") 16 | 17 | target_link_libraries(Launcher_rainbow Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Gui) 18 | -------------------------------------------------------------------------------- /libraries/rainbow/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/libraries/rainbow/COPYING.LIB -------------------------------------------------------------------------------- /program_info/AdhocSignedApp.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.cs.disable-library-validation 6 | 7 | com.apple.security.device.audio-input 8 | 9 | com.apple.security.device.camera 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /program_info/App.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.device.audio-input 6 | 7 | com.apple.security.device.camera 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /program_info/README.md: -------------------------------------------------------------------------------- 1 | # Freesm Launcher Program Info 2 | 3 | This is Freesm Launcher's program info which contains information about: 4 | 5 | - Application name and logo (and branding in general) 6 | - Various URLs and API endpoints 7 | - Desktop file 8 | -------------------------------------------------------------------------------- /program_info/freesmlauncher.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/program_info/freesmlauncher.icns -------------------------------------------------------------------------------- /program_info/freesmlauncher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/program_info/freesmlauncher.ico -------------------------------------------------------------------------------- /program_info/freesmlauncher.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | org.freesmTeam.freesmlauncher.svg 5 | 6 | -------------------------------------------------------------------------------- /program_info/modrinth-mrpack-mime.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Modrinth Modpack File 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /program_info/org.freesmTeam.freesmlauncher.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Name=Freesm Launcher 4 | Comment=Discover, manage, and play Minecraft instances 5 | Type=Application 6 | Terminal=false 7 | Exec=@Launcher_APP_BINARY_NAME@ %U 8 | StartupNotify=true 9 | Icon=org.freesmTeam.freesmlauncher 10 | Categories=Game;ActionGame;AdventureGame;Simulation; 11 | Keywords=game;minecraft;mc; 12 | StartupWMClass=FreesmLauncher 13 | MimeType=application/zip;application/x-modrinth-modpack+zip;x-scheme-handler/curseforge;x-scheme-handler/@Launcher_APP_BINARY_NAME@; 14 | -------------------------------------------------------------------------------- /program_info/portable.txt: -------------------------------------------------------------------------------- 1 | This file enables the portable mode for the launcher. 2 | 3 | If this file is present in the root directory of the launcher, it will store all data here. Otherwise it will store your data in your appdata directory. 4 | You can safely delete this file, if you don't want the launcher to store your data here. 5 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "config:base" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /scripts/compress_images.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ## If current working dirctory is ./scripts, ask to invoke from one directory up 4 | if [ ! -d "scripts" ]; then 5 | echo "Please run this script from the root directory of the project" 6 | exit 1 7 | fi 8 | 9 | find . -type f -name '*.png' -not -path '*/libraries/*' -exec oxipng --opt max --strip all --alpha --interlace 0 {} \; 10 | -------------------------------------------------------------------------------- /tests/testdata/DataPackParse/another_test_folder/data/dummy/tags/item/foo_proof/bar.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/testdata/DataPackParse/another_test_folder/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 6, 4 | "description": "Some data pack three, leaves on the tree" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/testdata/DataPackParse/test_data_pack_boogaloo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/DataPackParse/test_data_pack_boogaloo.zip -------------------------------------------------------------------------------- /tests/testdata/DataPackParse/test_folder/data/dummy/tags/item/foo_proof/bar.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/testdata/DataPackParse/test_folder/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 10, 4 | "description": "Some data pack, maybe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/testdata/FileSystem/FileSystem-test_createShortcut-unix: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | TryExec=asdfDest 4 | Exec=asdfDest 'arg1' 'arg2' 5 | Name=asdf 6 | Icon= 7 | -------------------------------------------------------------------------------- /tests/testdata/FileSystem/test_folder/.secret_folder/.secret_file.txt: -------------------------------------------------------------------------------- 1 | oooooo spooky easter egg :oo 2 | -------------------------------------------------------------------------------- /tests/testdata/FileSystem/test_folder/assets/minecraft/textures/blah.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testdata/FileSystem/test_folder/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Some resource pack maybe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/testdata/FileSystem/test_folder/pack.nfo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testdata/Library: -------------------------------------------------------------------------------- 1 | MojangVersionFormat/ -------------------------------------------------------------------------------- /tests/testdata/MetaComponentParse/component_basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": [ 3 | { 4 | "text": "Hello, Component!" 5 | } 6 | ], 7 | "expected_output": "Hello, Component!" 8 | } 9 | -------------------------------------------------------------------------------- /tests/testdata/MetaComponentParse/component_with_format.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": [ 3 | { 4 | "text": "Hello, Component!", 5 | "color": "blue", 6 | "bold": true, 7 | "italic": true, 8 | "underlined": true, 9 | "strikethrough": true 10 | } 11 | ], 12 | "expected_output": "Hello, Component!" 13 | } -------------------------------------------------------------------------------- /tests/testdata/MetaComponentParse/component_with_link.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": [ 3 | { 4 | "text": "Hello, Component!", 5 | "clickEvent": { 6 | "action": "open_url", 7 | "value": "https://google.com" 8 | } 9 | } 10 | ], 11 | "expected_output": "Hello, Component!" 12 | } 13 | -------------------------------------------------------------------------------- /tests/testdata/MojangVersionFormat/codecwav-20101023.jar: -------------------------------------------------------------------------------- 1 | dummy test file. 2 | -------------------------------------------------------------------------------- /tests/testdata/MojangVersionFormat/lib-simple.json: -------------------------------------------------------------------------------- 1 | { 2 | "downloads": { 3 | "artifact": { 4 | "path": "com/paulscode/codecwav/20101023/codecwav-20101023.jar", 5 | "sha1": "12f031cfe88fef5c1dd36c563c0a3a69bd7261da", 6 | "size": 5618, 7 | "url": "https://libraries.minecraft.net/com/paulscode/codecwav/20101023/codecwav-20101023.jar" 8 | } 9 | }, 10 | "name": "com.paulscode:codecwav:20101023" 11 | } 12 | -------------------------------------------------------------------------------- /tests/testdata/MojangVersionFormat/testname-testversion-linux-32.jar: -------------------------------------------------------------------------------- 1 | dummy test file. 2 | -------------------------------------------------------------------------------- /tests/testdata/PackageManifest/inspect/a/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/PackageManifest/inspect/a/b.txt -------------------------------------------------------------------------------- /tests/testdata/PackageManifest/inspect/a/b/b.txt: -------------------------------------------------------------------------------- 1 | ../b.txt -------------------------------------------------------------------------------- /tests/testdata/PackageManifest/inspect_win/a/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/PackageManifest/inspect_win/a/b.txt -------------------------------------------------------------------------------- /tests/testdata/PackageManifest/inspect_win/a/b/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/PackageManifest/inspect_win/a/b/b.txt -------------------------------------------------------------------------------- /tests/testdata/Packwiz/borderless-mining.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Borderless Mining" 2 | filename = "borderless-mining-1.1.1+1.18.jar" 3 | side = "client" 4 | 5 | [download] 6 | url = "https://cdn.modrinth.com/data/kYq5qkSL/versions/1.1.1+1.18/borderless-mining-1.1.1+1.18.jar" 7 | hash-format = "sha512" 8 | hash = "c8fe6e15ddea32668822dddb26e1851e5f03834be4bcb2eff9c0da7fdc086a9b6cead78e31a44d3bc66335cba11144ee0337c6d5346f1ba63623064499b3188d" 9 | 10 | [update] 11 | [update.modrinth] 12 | mod-id = "kYq5qkSL" 13 | version = "ug2qKTPR" 14 | -------------------------------------------------------------------------------- /tests/testdata/Packwiz/screenshot-to-clipboard-fabric.pw.toml: -------------------------------------------------------------------------------- 1 | name = "Screenshot to Clipboard (Fabric)" 2 | filename = "screenshot-to-clipboard-1.0.7-fabric.jar" 3 | side = "both" 4 | 5 | [download] 6 | url = "https://edge.forgecdn.net/files/3509/43/screenshot-to-clipboard-1.0.7-fabric.jar" 7 | hash-format = "murmur2" 8 | hash = "1781245820" 9 | 10 | [update] 11 | [update.curseforge] 12 | file-id = 3509043 13 | project-id = 327154 14 | -------------------------------------------------------------------------------- /tests/testdata/ResourceFolderModel: -------------------------------------------------------------------------------- 1 | ResourcePackParse -------------------------------------------------------------------------------- /tests/testdata/ResourcePackParse/another_test_folder/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 6, 4 | "description": "o quartel pegou fogo, policia deu sinal, acode acode acode a bandeira nacional" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/testdata/ResourcePackParse/supercoolmod.jar: -------------------------------------------------------------------------------- 1 | the best mod. 2 | -------------------------------------------------------------------------------- /tests/testdata/ResourcePackParse/test_folder/assets/minecraft/textures/blah.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testdata/ResourcePackParse/test_folder/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "pack_format": 1, 4 | "description": "Some resource pack maybe" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tests/testdata/ResourcePackParse/test_folder/pack.nfo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testdata/ResourcePackParse/test_resource_pack_idk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/ResourcePackParse/test_resource_pack_idk.zip -------------------------------------------------------------------------------- /tests/testdata/ShaderPackParse/shaderpack1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/ShaderPackParse/shaderpack1.zip -------------------------------------------------------------------------------- /tests/testdata/ShaderPackParse/shaderpack2/shaders/shaders.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/ShaderPackParse/shaderpack2/shaders/shaders.properties -------------------------------------------------------------------------------- /tests/testdata/ShaderPackParse/shaderpack3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/ShaderPackParse/shaderpack3.zip -------------------------------------------------------------------------------- /tests/testdata/TexturePackParse/another_test_texturefolder/pack.txt: -------------------------------------------------------------------------------- 1 | quieres 2 | for real -------------------------------------------------------------------------------- /tests/testdata/TexturePackParse/test_texture_pack_idk.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/TexturePackParse/test_texture_pack_idk.zip -------------------------------------------------------------------------------- /tests/testdata/TexturePackParse/test_texturefolder/assets/minecraft/textures/blah.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/testdata/TexturePackParse/test_texturefolder/pack.txt: -------------------------------------------------------------------------------- 1 | Some texture pack surely -------------------------------------------------------------------------------- /tests/testdata/WorldSaveParse/minecraft_save_1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/WorldSaveParse/minecraft_save_1.zip -------------------------------------------------------------------------------- /tests/testdata/WorldSaveParse/minecraft_save_2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/WorldSaveParse/minecraft_save_2.zip -------------------------------------------------------------------------------- /tests/testdata/WorldSaveParse/minecraft_save_3/world_3/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/WorldSaveParse/minecraft_save_3/world_3/level.dat -------------------------------------------------------------------------------- /tests/testdata/WorldSaveParse/minecraft_save_4/saves/world_4/level.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreesmTeam/FreesmLauncher/584ec2a0cc827a36ffce30333bda6f6703f3618c/tests/testdata/WorldSaveParse/minecraft_save_4/saves/world_4/level.dat --------------------------------------------------------------------------------