├── .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 |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 |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 | minecraft_version={minecraft_version}
45 | yarn_mappings={yarn_version}
46 | loader_version={loader_version}
47 |
48 | #Fabric api
49 | fabric_version={fabric_version}
50 | # 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 | 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 |