├── .gitignore ├── README.md └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /.vscode 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fabric-versions 2 | A basic single page website for getting the latest versions for fabric. 3 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Fabric Versions 7 | 8 | 9 | 14 | 15 | 16 | 17 | 18 |

Fabric Latest Versions

19 |

Minecraft Version: 20 | 22 |

23 |

Note fabric-api version may not be the correct version for the given minecraft version. See the curseforge page.

25 | 26 |

build.gradle

27 | 28 | 29 |
30 |
dependencies {
 31 |     minecraft "com.mojang:minecraft:{minecraft_version}"
 32 |     mappings "net.fabricmc:yarn:{yarn_version}:v2"
 33 |     modImplementation "net.fabricmc:fabric-loader:{loader_version}"
 34 | 
 35 |     //Fabric api
 36 |     modImplementation "{fabric_maven}{fabric_version}"
 37 | }
38 |
39 | 40 | 41 | 42 |

gradle.properties (Example Mod)

43 |
44 |
minecraft_version={minecraft_version}
 45 | yarn_mappings={yarn_version}
 46 | loader_version={loader_version}
 47 | 
 48 | #Fabric api
 49 | fabric_version={fabric_version}
50 |
51 | 52 |

gradle.properties (My fabric-mod-template)

53 |
54 |
# Fabric Properties
 55 | 	# check these on https://fallen-breath.github.io/fabric-versions/?&version={minecraft_version}
 56 | 	minecraft_version={minecraft_version}
 57 | 	yarn_mappings={yarn_version}
 58 | 
 59 | # Fabric Mod Metadata
 60 | 	minecraft_dependency={minecraft_version}
 61 | 
 62 | # Build Information
 63 | 	# The target mc versions for the mod during mod publishing, separated with \n
 64 | 	game_versions={minecraft_version}
 65 | 
 66 | # Dependencies
 67 | 	# fabric_api_version={fabric_version}
68 |
69 | 70 |
71 |
72 | 73 | 74 |

Mappings Migration

75 |

Mappings can be auto updated by using the following command. See the wiki page for more help.

76 | 77 |

See fabricmc.net for more details

78 | 79 |

Loom Version

80 | 81 | The recommended loom version, see fabricmc.net 82 | 83 | 84 | 85 | 86 | 88 | 89 | 96 | 97 | 260 | 261 | 262 | --------------------------------------------------------------------------------