├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── MCLauncherComparison ├── MCLauncherComparison.csproj ├── Program.cs ├── ReadmeModule.cs └── input │ ├── _ViewImports.cshtml │ ├── index.md │ ├── layouts │ └── _Layout.cshtml │ └── style │ └── site.scss ├── MinecraftLauncherComparison.sln └── readme.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | # Simple workflow for deploying static content to GitHub Pages 2 | name: Build and Deploy static content to Pages 3 | 4 | on: 5 | # Runs on pushes targeting the default branch 6 | push: 7 | branches: 8 | - main 9 | 10 | # Allows you to run this workflow manually from the Actions tab 11 | workflow_dispatch: 12 | 13 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 14 | permissions: 15 | contents: read 16 | pages: write 17 | id-token: write 18 | 19 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 20 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 21 | concurrency: 22 | group: "pages" 23 | cancel-in-progress: false 24 | 25 | jobs: 26 | build_and_deploy: 27 | environment: 28 | name: github-pages 29 | url: ${{ steps.deployment.outputs.page_url }} 30 | runs-on: ubuntu-latest 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v4 34 | 35 | - name: Setup .NET Core 36 | uses: actions/setup-dotnet@v2 37 | with: 38 | dotnet-version: "8.x" 39 | 40 | - name: Restore dependencies 41 | run: dotnet restore ./MCLauncherComparison/MCLauncherComparison.csproj 42 | 43 | - name: Build Statiq site 44 | env: 45 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Set GitHub token as an environment variable 46 | run: dotnet run --project ./MCLauncherComparison/MCLauncherComparison.csproj 47 | # Statiqs own thing doesn't seem to deploy like that, so lets just ignore it 48 | 49 | - name: Setup Pages 50 | uses: actions/configure-pages@v4 51 | 52 | - name: Upload artifact 53 | uses: actions/upload-pages-artifact@v3 54 | with: 55 | # Upload path 56 | path: './MCLauncherComparison/output' 57 | 58 | - name: Deploy to GitHub Pages 59 | id: deployment 60 | uses: actions/deploy-pages@v4 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.rsuser 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Mono auto generated files 17 | mono_crash.* 18 | 19 | # Build results 20 | [Dd]ebug/ 21 | [Dd]ebugPublic/ 22 | [Rr]elease/ 23 | [Rr]eleases/ 24 | x64/ 25 | x86/ 26 | [Ww][Ii][Nn]32/ 27 | [Aa][Rr][Mm]/ 28 | [Aa][Rr][Mm]64/ 29 | bld/ 30 | [Bb]in/ 31 | [Oo]bj/ 32 | [Ll]og/ 33 | [Ll]ogs/ 34 | 35 | # Visual Studio 2015/2017 cache/options directory 36 | .vs/ 37 | # Uncomment if you have tasks that create the project's static files in wwwroot 38 | #wwwroot/ 39 | 40 | # Visual Studio 2017 auto generated files 41 | Generated\ Files/ 42 | 43 | # MSTest test Results 44 | [Tt]est[Rr]esult*/ 45 | [Bb]uild[Ll]og.* 46 | 47 | # NUnit 48 | *.VisualState.xml 49 | TestResult.xml 50 | nunit-*.xml 51 | 52 | # Build Results of an ATL Project 53 | [Dd]ebugPS/ 54 | [Rr]eleasePS/ 55 | dlldata.c 56 | 57 | # Benchmark Results 58 | BenchmarkDotNet.Artifacts/ 59 | 60 | # .NET Core 61 | project.lock.json 62 | project.fragment.lock.json 63 | artifacts/ 64 | 65 | # ASP.NET Scaffolding 66 | ScaffoldingReadMe.txt 67 | 68 | # StyleCop 69 | StyleCopReport.xml 70 | 71 | # Files built by Visual Studio 72 | *_i.c 73 | *_p.c 74 | *_h.h 75 | *.ilk 76 | *.meta 77 | *.obj 78 | *.iobj 79 | *.pch 80 | *.pdb 81 | *.ipdb 82 | *.pgc 83 | *.pgd 84 | *.rsp 85 | *.sbr 86 | *.tlb 87 | *.tli 88 | *.tlh 89 | *.tmp 90 | *.tmp_proj 91 | *_wpftmp.csproj 92 | *.log 93 | *.tlog 94 | *.vspscc 95 | *.vssscc 96 | .builds 97 | *.pidb 98 | *.svclog 99 | *.scc 100 | 101 | # Chutzpah Test files 102 | _Chutzpah* 103 | 104 | # Visual C++ cache files 105 | ipch/ 106 | *.aps 107 | *.ncb 108 | *.opendb 109 | *.opensdf 110 | *.sdf 111 | *.cachefile 112 | *.VC.db 113 | *.VC.VC.opendb 114 | 115 | # Visual Studio profiler 116 | *.psess 117 | *.vsp 118 | *.vspx 119 | *.sap 120 | 121 | # Visual Studio Trace Files 122 | *.e2e 123 | 124 | # TFS 2012 Local Workspace 125 | $tf/ 126 | 127 | # Guidance Automation Toolkit 128 | *.gpState 129 | 130 | # ReSharper is a .NET coding add-in 131 | _ReSharper*/ 132 | *.[Rr]e[Ss]harper 133 | *.DotSettings.user 134 | 135 | # TeamCity is a build add-in 136 | _TeamCity* 137 | 138 | # DotCover is a Code Coverage Tool 139 | *.dotCover 140 | 141 | # AxoCover is a Code Coverage Tool 142 | .axoCover/* 143 | !.axoCover/settings.json 144 | 145 | # Coverlet is a free, cross platform Code Coverage Tool 146 | coverage*.json 147 | coverage*.xml 148 | coverage*.info 149 | 150 | # Visual Studio code coverage results 151 | *.coverage 152 | *.coveragexml 153 | 154 | # NCrunch 155 | _NCrunch_* 156 | .*crunch*.local.xml 157 | nCrunchTemp_* 158 | 159 | # MightyMoose 160 | *.mm.* 161 | AutoTest.Net/ 162 | 163 | # Web workbench (sass) 164 | .sass-cache/ 165 | 166 | # Installshield output folder 167 | [Ee]xpress/ 168 | 169 | # DocProject is a documentation generator add-in 170 | DocProject/buildhelp/ 171 | DocProject/Help/*.HxT 172 | DocProject/Help/*.HxC 173 | DocProject/Help/*.hhc 174 | DocProject/Help/*.hhk 175 | DocProject/Help/*.hhp 176 | DocProject/Help/Html2 177 | DocProject/Help/html 178 | 179 | # Click-Once directory 180 | publish/ 181 | 182 | # Publish Web Output 183 | *.[Pp]ublish.xml 184 | *.azurePubxml 185 | # Note: Comment the next line if you want to checkin your web deploy settings, 186 | # but database connection strings (with potential passwords) will be unencrypted 187 | *.pubxml 188 | *.publishproj 189 | 190 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 191 | # checkin your Azure Web App publish settings, but sensitive information contained 192 | # in these scripts will be unencrypted 193 | PublishScripts/ 194 | 195 | # NuGet Packages 196 | *.nupkg 197 | # NuGet Symbol Packages 198 | *.snupkg 199 | # The packages folder can be ignored because of Package Restore 200 | **/[Pp]ackages/* 201 | # except build/, which is used as an MSBuild target. 202 | !**/[Pp]ackages/build/ 203 | # Uncomment if necessary however generally it will be regenerated when needed 204 | #!**/[Pp]ackages/repositories.config 205 | # NuGet v3's project.json files produces more ignorable files 206 | *.nuget.props 207 | *.nuget.targets 208 | 209 | # Microsoft Azure Build Output 210 | csx/ 211 | *.build.csdef 212 | 213 | # Microsoft Azure Emulator 214 | ecf/ 215 | rcf/ 216 | 217 | # Windows Store app package directories and files 218 | AppPackages/ 219 | BundleArtifacts/ 220 | Package.StoreAssociation.xml 221 | _pkginfo.txt 222 | *.appx 223 | *.appxbundle 224 | *.appxupload 225 | 226 | # Visual Studio cache files 227 | # files ending in .cache can be ignored 228 | *.[Cc]ache 229 | # but keep track of directories ending in .cache 230 | !?*.[Cc]ache/ 231 | 232 | # Others 233 | ClientBin/ 234 | ~$* 235 | *~ 236 | *.dbmdl 237 | *.dbproj.schemaview 238 | *.jfm 239 | *.pfx 240 | *.publishsettings 241 | orleans.codegen.cs 242 | 243 | # Including strong name files can present a security risk 244 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 245 | #*.snk 246 | 247 | # Since there are multiple workflows, uncomment next line to ignore bower_components 248 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 249 | #bower_components/ 250 | 251 | # RIA/Silverlight projects 252 | Generated_Code/ 253 | 254 | # Backup & report files from converting an old project file 255 | # to a newer Visual Studio version. Backup files are not needed, 256 | # because we have git ;-) 257 | _UpgradeReport_Files/ 258 | Backup*/ 259 | UpgradeLog*.XML 260 | UpgradeLog*.htm 261 | ServiceFabricBackup/ 262 | *.rptproj.bak 263 | 264 | # SQL Server files 265 | *.mdf 266 | *.ldf 267 | *.ndf 268 | 269 | # Business Intelligence projects 270 | *.rdl.data 271 | *.bim.layout 272 | *.bim_*.settings 273 | *.rptproj.rsuser 274 | *- [Bb]ackup.rdl 275 | *- [Bb]ackup ([0-9]).rdl 276 | *- [Bb]ackup ([0-9][0-9]).rdl 277 | 278 | # Microsoft Fakes 279 | FakesAssemblies/ 280 | 281 | # GhostDoc plugin setting file 282 | *.GhostDoc.xml 283 | 284 | # Node.js Tools for Visual Studio 285 | .ntvs_analysis.dat 286 | node_modules/ 287 | 288 | # Visual Studio 6 build log 289 | *.plg 290 | 291 | # Visual Studio 6 workspace options file 292 | *.opt 293 | 294 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 295 | *.vbw 296 | 297 | # Visual Studio 6 auto-generated project file (contains which files were open etc.) 298 | *.vbp 299 | 300 | # Visual Studio 6 workspace and project file (working project files containing files to include in project) 301 | *.dsw 302 | *.dsp 303 | 304 | # Visual Studio 6 technical files 305 | *.ncb 306 | *.aps 307 | 308 | # Visual Studio LightSwitch build output 309 | **/*.HTMLClient/GeneratedArtifacts 310 | **/*.DesktopClient/GeneratedArtifacts 311 | **/*.DesktopClient/ModelManifest.xml 312 | **/*.Server/GeneratedArtifacts 313 | **/*.Server/ModelManifest.xml 314 | _Pvt_Extensions 315 | 316 | # Paket dependency manager 317 | .paket/paket.exe 318 | paket-files/ 319 | 320 | # FAKE - F# Make 321 | .fake/ 322 | 323 | # CodeRush personal settings 324 | .cr/personal 325 | 326 | # Python Tools for Visual Studio (PTVS) 327 | __pycache__/ 328 | *.pyc 329 | 330 | # Cake - Uncomment if you are using it 331 | # tools/** 332 | # !tools/packages.config 333 | 334 | # Tabs Studio 335 | *.tss 336 | 337 | # Telerik's JustMock configuration file 338 | *.jmconfig 339 | 340 | # BizTalk build output 341 | *.btp.cs 342 | *.btm.cs 343 | *.odx.cs 344 | *.xsd.cs 345 | 346 | # OpenCover UI analysis results 347 | OpenCover/ 348 | 349 | # Azure Stream Analytics local run output 350 | ASALocalRun/ 351 | 352 | # MSBuild Binary and Structured Log 353 | *.binlog 354 | 355 | # NVidia Nsight GPU debugger configuration file 356 | *.nvuser 357 | 358 | # MFractors (Xamarin productivity tool) working folder 359 | .mfractor/ 360 | 361 | # Local History for Visual Studio 362 | .localhistory/ 363 | 364 | # Visual Studio History (VSHistory) files 365 | .vshistory/ 366 | 367 | # BeatPulse healthcheck temp database 368 | healthchecksdb 369 | 370 | # Backup folder for Package Reference Convert tool in Visual Studio 2017 371 | MigrationBackup/ 372 | 373 | # Ionide (cross platform F# VS Code tools) working folder 374 | .ionide/ 375 | 376 | # Fody - auto-generated XML schema 377 | FodyWeavers.xsd 378 | 379 | # VS Code files for those working on multiple tools 380 | .vscode/* 381 | !.vscode/settings.json 382 | !.vscode/tasks.json 383 | !.vscode/launch.json 384 | !.vscode/extensions.json 385 | *.code-workspace 386 | 387 | # Local History for Visual Studio Code 388 | .history/ 389 | 390 | # Windows Installer files from build outputs 391 | *.cab 392 | *.msi 393 | *.msix 394 | *.msm 395 | *.msp 396 | 397 | # JetBrains Rider 398 | *.sln.iml 399 | .idea/ 400 | 401 | # cache, output 402 | cache/ 403 | output/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TayouVR/MinecraftLauncherComparison/c3e9fba253119c4b0f66a5ee760cf2499eb6c81f/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /MCLauncherComparison/MCLauncherComparison.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Exe 5 | net8.0 6 | enable 7 | enable 8 | MCLauncherCompare 9 | MCLauncherCompare 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /MCLauncherComparison/Program.cs: -------------------------------------------------------------------------------- 1 | namespace MCLauncherCompare; 2 | 3 | public class Program { 4 | public static KeyValuePair[] Settings = { 5 | new("Host", "mc-launcher.tayou.org"), 6 | new("Copyright", "Copyright © 2024 Tayou - CC0 Public Domain"), 7 | 8 | new("GenerateSearchIndex", false), 9 | new("DeployGitHubPages", true), 10 | new("LinksUseHttps", true), 11 | new("Image", "./images/site-image.avif"), 12 | //new("GitHubToken", Environment.GetEnvironmentVariable("GITHUB_TOKEN")!), 13 | }; 14 | 15 | public static async Task Main(string[] args) { 16 | return await Bootstrapper 17 | .Factory 18 | .CreateWeb(args) 19 | .AddPipeline("CombineDocs", new Pipeline { 20 | InputModules = { 21 | new ReadFiles("../../readme.md"), 22 | new ReadFiles("index.md") 23 | }, 24 | ProcessModules = { 25 | new ConcatDocuments(), 26 | new SetDestination("index.md") 27 | }, 28 | OutputModules = { new WriteFiles() } 29 | }) 30 | .AddSettings(Settings) 31 | .RunAsync(); 32 | } 33 | } -------------------------------------------------------------------------------- /MCLauncherComparison/ReadmeModule.cs: -------------------------------------------------------------------------------- 1 | public class ReadmeModule : Module 2 | { 3 | /*protected override async Task> ExecuteContextAsync(IExecutionContext context) { 4 | string readmeText = await File.ReadAllTextAsync("../../readme.md"); 5 | return context.CreateDocument(await context.GetContentProviderAsync(readmeText)).Yield(); 6 | }*/ 7 | } -------------------------------------------------------------------------------- /MCLauncherComparison/input/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using Statiq.Common 2 | @using Statiq.Razor 3 | @using Statiq.Web 4 | @using Statiq.Web.Pipelines 5 | @using Microsoft.Extensions.Logging 6 | 7 | @inherits StatiqRazorPage -------------------------------------------------------------------------------- /MCLauncherComparison/input/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: "Minecraft Launcher Comparison" 3 | layout: "./layouts/_Layout.cshtml" 4 | --- 5 | # Minecraft Launcher Comparison 6 | 7 | This will give you an overview over the various Minecraft (Java Edition) launchers and their features. 8 | 9 | Explanations: 10 | - Modloader support means a way to install the modloader through the launcher directly, without downloading it separately. 11 | - CurseForge blocked downloads: CurseForge offers creators on the platform the option to opt out of downloads from 3rd party platforms as a means to ensure ad revenue is generated when downloading content. Platforms need to work around that restriction to properly support CurseForge content. 12 | 13 |
14 | 15 | Note: This list is maintained mostly by me and random contributions. Data will inevitably get outdated over time and I always welcome any updates and corrections. 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 653 | 654 |
FeatureVanillaPrism LauncherMultiMCATLauncherGDLauncher (Legacy)GDLauncher CarbonCurseForge AppFTB AppModrinth AppTechnicPojavLauncherOld VanillaQWERTZ Launcher
Download Linkminecraft.netprismlauncher.orgmultimc.orgatlauncher.comgithub.comgdlauncher.comcurseforge.comfeed-the-beast.commodrinth.comtechnicpack.netPlay Storemojang.comqwertz.app
Source Code
github.comgithub.comgithub.comgithub.comgithub.com
github.comgithub.comgithub.comgithub.com
github.com
Operating SystemsWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSAndroid, iOSWindows, Linux, macOSWindows, Linux
Open Source?❌No✅Yes, GPL3🟠Partially[1]✅Yes, GPL3✅Yes, GPL3[2]🟠Source-available❌No✅Yes, LGPL-2.1✅Yes, GPL3✅Yes, GPL3✅Yes, GPL3❌No✅Yes, AGPL3
Programming Language / FrameworksHTML, JS, CSS, (React), C++, (CEF)C++ (Qt)C++ (Qt)JavaHTML, JS, CSS, (Preact), (Electron)
🚧 Solid.js, Rust
HTML, JS, CSS, Astro, Rust, TypeScriptHTML, JS, CSS, (React), (Next.js), Overwolf (Windows) or Electron (Windows, macOS, Linux)HTML, JS, CSS, (Vue.js), (Tailwind), Java, Overwolf (Windows) Electron (macOS and Linux)HTML, JS, CSS, (Vue.js), Rust, (Tauri)JavaJava, CJava (AWT, Swing)Python (Qt)
Modpack Support❌No✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes❌No❌No
Modpack Updating❌No✅Yes (CF, MR)❌No✅Yes (CF, MR)✅Yes (CF, 🚧MR)✅Yes (CF, MR)✅Yes (CF)✅Yes (FTB, CF)✅Yes (MR)❌No❌No
Custom Instance Support✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes❌No✅Yes🟠Unmanaged, only version switches✅Yes
Modpack Providers
CurseForge Modpacks❌No✅Yes❌No✅Yes✅Yes✅Yes✅Yes✅Yes❌No❌No✅Yes❌No❌No
Modrinth Modpacks❌No✅Yes✅Yes✅Yes🚧WIP✅Yes❌No❌No✅Yes❌No✅Yes❌No❌No
ATLauncher Modpacks❌No✅Yes✅Yes✅Yes❌No❌No❌No❌No❌No❌No❌No❌No❌No
FTB Modpacks❌No🟠Import from FTB Launcher❌No✅Yes❌No❌No✅Yes❌No❌No❌No❌No❌No
Legacy FTB Modpacks❌No✅Yes✅Yes❌No❌No❌No✅Yes❌No❌No❌No❌No❌No
Technic Modpacks❌No✅Yes✅Yes✅Yes❌No❌No❌No❌No❌No✅Yes❌No❌No❌No
Mod Loaders
Fabric Loader❌No✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes❌No✅Yes
NeoForge Loader❌No✅Yes✅Yes✅Yes🚧WIP✅Yes❔TODO✅Yes✅Yes❔TODO❌No❌No❌No
Forge Loader❌No✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes❌No✅Yes
Quilt Loader❌No✅Yes✅Yes✅Yes🚧WIP✅Yes✅Yes✅Yes✅Yes✅Yes❌No❌No
Legacy Fabric Loader❌No❌No❌No✅Yes❌No❌No❌No❌No❌No❌No❌No❌No❌No
LiteLoader❌No✅Yes✅Yes❌No❌No✅Yes❌No❌No❌No❌No❌No❌No
Resource Download (Mods, Resourcepacks, Shaders, etc.)
Mod download [Modrinth|CurseForge]❌No✅Yes (MR, CF)❌No✅Yes (MR, CF)✅Yes (🚧MR, CF)✅Yes (MR, CF)✅Yes (CF)✅Yes (CF)✅Yes (MR)❌No❌No❌No❌No
Resourcepack download [Modrinth|CurseForge]❌No✅Yes (MR, CF)❌No✅Yes (MR, CF)❌No❌No✅Yes (CF)❌No✅Yes (MR)❌No❌No❌No❌No
Shaderpack download [Modrinth|CurseForge]❌No✅Yes (MR, CF)❌No✅Yes (MR, CF)❌No❌No❌No❌No✅Yes (MR)❌No❌No❌No❌No
World download [CurseForge]❌No❌No❌No✅Yes (CF)❌No❌No❌No❌No
Datapack download [Modrinth]❌No❌No❌No❌No❌No✅Yes❌No❌No
Plugins Download [Modrinth|CurseForge]❌No❌No❌No❌No❌No❌No❌No❌No❌No❌No❌No❌No❌No
Misc
CurseForge Blocked Download Handling❌No✅Yes (via web browser, automatically copies mod)❌No✅Yes (via web browser, automatically moves mod)✅Yes (by using standard browser user agent)✅Yes (granted bypass by CurseForge)✅Yes✅Yes❌No❌No❌No❌No
Mod Updating❌No✅Yes❌No✅Yes✅Yes⚠️Yes[3]✅Yes❌No✅Yes❌No❌No❌No
Server Instances❌No❌No❌No✅Yes❌No❌No❌No❌No❌No❌No❌No❌No
Automatic Java Setup✅Yes✅Optional❌No✅Optional✅Optional✅Optional✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes
Full Launcher Sandboxing❌No🚧WIP❌No❌No❔TODO❌No
Instance Export❌NoCurseForge, Modrinth, MultiMC, TXTModrinth, MultiMCCurseForge, Modrinth, MultiMCCurseForgeCurseForge, ModrinthCurseForgeFTB App Share CodeModrinth❌No❌No❌No🚧WIP
Instance Import❌NoCurseForge, Modrinth, MultiMC, Technic, FTB AppMultiMC, Technic, FTB AppCurseForge, Modrinth, MultiMCCurseForgeSee footnote [4]CurseForgeCurseForge and FTB App Share CodeCurseForge, MultiMC, GDLauncher, ATLauncher❌No❌No❌No🚧WIP
Look and FeelMinecraft OfficialSystem (configurable)System (configurable)Custom (configurable)CustomCustomCustomCustomCustomCustomMinecraft InspiredSystem (mostly)Custom
Advertisements❌No❌No❌No❌No✅Yes✅Yes✅Yes✅Yes✅Yes❌No❌No❌No
In Game Overlay❌No❌No❌No❌No❌No✅Optional (via Overwolf app)✅Optional (via Overwolf app)❌No❌No✅Yes, for controls → touch screen❌No❌No
655 | 656 | ## Footnotes 657 | ### Source code and licenses 658 | #### 1. MultiMC is proprietary but a debranded MS-PL licensed version which lacks many keys MultiMC uses is available on GitHub 659 | #### 2. GDLauncher has a CLA 660 | #### 3. GDLauncher Carbon mod updater appears to be slightly buggy at the time of writing 661 | #### 4. GDLauncher Legacy, CurseForge (ZIP, launcher), Modrinth (mrpack, 🚧launcher), 🚧ATLauncher, 🚧Technic, 🚧FTB, 🚧MultiMC, 🚧Prism 662 | 663 | View and edit the source of this page here: 664 | https://github.com/TayouVR/MinecraftLauncherComparison 665 | 666 | submit any issues, outdated or missing information here: 667 | https://github.com/TayouVR/MinecraftLauncherComparison/issues 668 | -------------------------------------------------------------------------------- /MCLauncherComparison/input/layouts/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Minecraft Launcher Comparison 6 | 7 | 8 | 9 |
10 | @RenderBody() 11 |
12 | 13 | -------------------------------------------------------------------------------- /MCLauncherComparison/input/style/site.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | --text-color: black; 3 | --bg-color: white; 4 | --alt-table-row-color: #cccccc; 5 | --header-table-row-color: #74ebff; 6 | @media (prefers-color-scheme: dark) { 7 | --text-color: white; 8 | --bg-color: #181818; 9 | --alt-table-row-color: #0e0e0e; 10 | --header-table-row-color: #203f44; 11 | } 12 | font-family: sans-serif; 13 | } 14 | 15 | body { 16 | background-color: var(--bg-color); 17 | color: var(--text-color); 18 | } 19 | 20 | table, td, tr, th { 21 | border-spacing: 0; 22 | border-collapse: collapse; 23 | box-sizing: border-box; 24 | } 25 | 26 | tr:nth-child(2n) { 27 | background-color: var(--alt-table-row-color); 28 | } 29 | 30 | th { 31 | font-weight: bold; 32 | } 33 | 34 | td, th { 35 | padding: 5px; 36 | height: 40px; 37 | } 38 | 39 | tr.header-row > th { 40 | position: sticky; 41 | top: 0; 42 | background-color: var(--header-table-row-color); 43 | } 44 | 45 | h1 { 46 | text-align: center; 47 | } 48 | 49 | :link { 50 | color: #3787ff; 51 | 52 | :visited { 53 | color: #9b67ff; 54 | } 55 | } -------------------------------------------------------------------------------- /MinecraftLauncherComparison.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MCLauncherComparison", "MCLauncherComparison\MCLauncherComparison.csproj", "{37F3657A-DE2B-4B73-BD67-FC692839BB58}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Any CPU = Debug|Any CPU 8 | Release|Any CPU = Release|Any CPU 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {37F3657A-DE2B-4B73-BD67-FC692839BB58}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 12 | {37F3657A-DE2B-4B73-BD67-FC692839BB58}.Debug|Any CPU.Build.0 = Debug|Any CPU 13 | {37F3657A-DE2B-4B73-BD67-FC692839BB58}.Release|Any CPU.ActiveCfg = Release|Any CPU 14 | {37F3657A-DE2B-4B73-BD67-FC692839BB58}.Release|Any CPU.Build.0 = Release|Any CPU 15 | EndGlobalSection 16 | EndGlobal 17 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Minecraft Launcher Comparison 2 | 3 | This will give you an overview over the various Minecraft (Java Edition) launchers and their features. 4 | 5 | Explanations: 6 | - Modloader support means a way to install the modloader through the launcher directly, without downloading it separately. 7 | - CurseForge blocked downloads: CurseForge offers creators on the platform the option to opt out of downloads from 3rd party platforms as a means to ensure ad revenue is generated when downloading content. Platforms need to work around that restriction to properly support CurseForge content. 8 | 9 | For a better view of the entire table at once you can go here: http://mc-launcher.tayou.org/ 10 | 11 |
12 | 13 | Note: This list is maintained mostly by me and random contributions. Data will inevitably get outdated over time and I always welcome any updates and corrections. 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | 596 | 597 | 598 | 599 | 600 | 601 | 602 | 603 | 604 | 605 | 606 | 607 | 608 | 609 | 610 | 611 | 612 | 613 | 614 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 651 | 652 |
FeatureVanillaPrism LauncherMultiMCATLauncherGDLauncher (Legacy)GDLauncher CarbonCurseForge AppFTB AppModrinth AppTechnicPojavLauncherOld VanillaQWERTZ Launcher
Download Linkminecraft.netprismlauncher.orgmultimc.orgatlauncher.comgithub.comgdlauncher.comcurseforge.comfeed-the-beast.commodrinth.comtechnicpack.netPlay Storemojang.comqwertz.app
Source Code
github.comgithub.comgithub.comgithub.comgithub.com
github.comgithub.comgithub.comgithub.com
github.com
Operating SystemsWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSWindows, Linux, macOSAndroid, iOSWindows, Linux, macOSWindows, Linux
Open Source?❌No✅Yes, GPL3🟠Partially[1]✅Yes, GPL3✅Yes, GPL3[2]🟠Source-available❌No✅Yes, LGPL-2.1✅Yes, GPL3✅Yes, GPL3✅Yes, GPL3❌No✅Yes, AGPL3
Programming Language / FrameworksHTML, JS, CSS, (React), C++, (CEF)C++ (Qt)C++ (Qt)JavaHTML, JS, CSS, (Preact), (Electron)
🚧 Solid.js, Rust
HTML, JS, CSS, Astro, Rust, TypeScriptHTML, JS, CSS, (React), (Next.js), Overwolf (Windows) or Electron (Windows, macOS, Linux)HTML, JS, CSS, (Vue.js), (Tailwind), Java, Overwolf (Windows) Electron (macOS and Linux)HTML, JS, CSS, (Vue.js), Rust, (Tauri)JavaJava, CJava (AWT, Swing)Python (Qt)
Modpack Support❌No✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes❌No❌No
Modpack Updating❌No✅Yes (CF, MR)❌No✅Yes (CF, MR)✅Yes (CF, 🚧MR)✅Yes (CF, MR)✅Yes (CF)✅Yes (FTB, CF)✅Yes (MR)❌No❌No
Custom Instance Support✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes❌No✅Yes🟠Unmanaged, only version switches✅Yes
Modpack Providers
CurseForge Modpacks❌No✅Yes❌No✅Yes✅Yes✅Yes✅Yes✅Yes❌No❌No✅Yes❌No❌No
Modrinth Modpacks❌No✅Yes✅Yes✅Yes🚧WIP✅Yes❌No❌No✅Yes❌No✅Yes❌No❌No
ATLauncher Modpacks❌No✅Yes✅Yes✅Yes❌No❌No❌No❌No❌No❌No❌No❌No❌No
FTB Modpacks❌No🟠Import from FTB Launcher❌No✅Yes❌No❌No✅Yes❌No❌No❌No❌No❌No
Legacy FTB Modpacks❌No✅Yes✅Yes❌No❌No❌No✅Yes❌No❌No❌No❌No❌No
Technic Modpacks❌No✅Yes✅Yes✅Yes❌No❌No❌No❌No❌No✅Yes❌No❌No❌No
Mod Loaders
Fabric Loader❌No✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes❌No✅Yes
NeoForge Loader❌No✅Yes✅Yes✅Yes🚧WIP✅Yes❔TODO✅Yes✅Yes❔TODO❌No❌No❌No
Forge Loader❌No✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes❌No✅Yes
Quilt Loader❌No✅Yes✅Yes✅Yes🚧WIP✅Yes✅Yes✅Yes✅Yes✅Yes❌No❌No
Legacy Fabric Loader❌No❌No❌No✅Yes❌No❌No❌No❌No❌No❌No❌No❌No❌No
LiteLoader❌No✅Yes✅Yes❌No❌No✅Yes❌No❌No❌No❌No❌No❌No
Resource Download (Mods, Resourcepacks, Shaders, etc.)
Mod download [Modrinth|CurseForge]❌No✅Yes (MR, CF)❌No✅Yes (MR, CF)✅Yes (🚧MR, CF)✅Yes (MR, CF)✅Yes (CF)✅Yes (CF)✅Yes (MR)❌No❌No❌No❌No
Resourcepack download [Modrinth|CurseForge]❌No✅Yes (MR, CF)❌No✅Yes (MR, CF)❌No❌No✅Yes (CF)❌No✅Yes (MR)❌No❌No❌No❌No
Shaderpack download [Modrinth|CurseForge]❌No✅Yes (MR)❌No✅Yes (MR, CF)❌No❌No❌No❌No✅Yes (MR)❌No❌No❌No❌No
World download [CurseForge]❌No❌No❌No✅Yes (CF)❌No❌No❌No❌No
Datapack download [Modrinth]❌No❌No❌No❌No❌No✅Yes❌No❌No
Plugins Download [Modrinth|CurseForge]❌No❌No❌No❌No❌No❌No❌No❌No❌No❌No❌No❌No❌No
Misc
CurseForge Blocked Download Handling❌No✅Yes (via web browser, automatically copies mod)❌No✅Yes (via web browser, automatically moves mod)✅Yes (by using standard browser user agent)✅Yes (granted bypass by CurseForge)✅Yes✅Yes❌No❌No❌No❌No
Mod Updating❌No✅Yes❌No✅Yes✅Yes⚠️Yes[3]✅Yes❌No✅Yes❌No❌No❌No
Server Instances❌No❌No❌No✅Yes❌No❌No❌No❌No❌No❌No❌No❌No
Automatic Java Setup✅Yes✅Optional❌No✅Optional✅Optional✅Optional✅Yes✅Yes✅Yes✅Yes✅Yes✅Yes
Full Launcher Sandboxing❌No🚧WIP❌No❌No❔TODO❌No
Instance Export❌NoCurseForge, Modrinth, MultiMC, TXTModrinth, MultiMCCurseForge, Modrinth, MultiMCCurseForgeCurseForge, ModrinthCurseForgeFTB App Share CodeModrinth❌No❌No❌No🚧WIP
Instance Import❌NoCurseForge, Modrinth, MultiMC, Technic, FTB AppMultiMC, Technic, FTB AppCurseForge, Modrinth, MultiMCCurseForgeSee footnote [4]CurseForgeCurseForge and FTB App Share CodeCurseForge, MultiMC, GDLauncher, ATLauncher❌No❌No❌No🚧WIP
Look and FeelMinecraft OfficialSystem (configurable)System (configurable)Custom (configurable)CustomCustomCustomCustomCustomCustomMinecraft InspiredSystem (mostly)Custom
Advertisements❌No❌No❌No❌No✅Yes✅Yes✅Yes✅Yes✅Yes❌No❌No❌No
In Game Overlay❌No❌No❌No❌No❌No✅Optional (via Overwolf app)✅Optional (via Overwolf app)❌No❌No✅Yes, for controls → touch screen❌No❌No
653 | 654 | ## Footnotes 655 | ### Source code and licenses 656 | #### 1. MultiMC is proprietary but a debranded MS-PL licensed version which lacks many keys MultiMC uses is available on GitHub 657 | #### 2. GDLauncher has a CLA 658 | #### 3. GDLauncher Carbon mod updater appears to be slightly buggy at the time of writing 659 | #### 4. GDLauncher Legacy, CurseForge (ZIP, launcher), Modrinth (mrpack, 🚧launcher), 🚧ATLauncher, 🚧Technic, 🚧FTB, 🚧MultiMC, 🚧Prism 660 | --------------------------------------------------------------------------------