File tree Expand file tree Collapse file tree 5 files changed +17
-26
lines changed
neoforge/src/main/java/dev/wuffs/squatgrow/neoforge Expand file tree Collapse file tree 5 files changed +17
-26
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to this project will be documented in this file.
33
4+ ## [ 21.6.0]
5+
6+ ### Changed
7+
8+ - Ported to 1.21.6/7/8
9+
410## [ 21.5.0]
511
612### Changed
Original file line number Diff line number Diff line change @@ -68,12 +68,16 @@ publishMods {
6868 accessToken = providers. environmentVariable(" CURSE_TOKEN" )
6969 projectId = " ${ curseforge_id} "
7070 minecraftVersions. add(" ${ minecraft_version} " )
71+ minecraftVersions. add(" 1.21.7" )
72+ minecraftVersions. add(" 1.21.8" )
7173 }
7274
7375 def modrinthOptions = modrinthOptions {
7476 accessToken = providers. environmentVariable(" MODRINTH_TOKEN" )
7577 projectId = " ${ modrinth_id} "
7678 minecraftVersions. add(" ${ minecraft_version} " )
79+ minecraftVersions. add(" 1.21.7" )
80+ minecraftVersions. add(" 1.21.8" )
7781 }
7882
7983 curseforge(" curseforgeFabric" ) {
Original file line number Diff line number Diff line change 11org.gradle.jvmargs =-Xmx2048M
22
3- minecraft_version =1.21.5
3+ minecraft_version =1.21.6
44enabled_platforms =fabric,neoforge
55
66archives_base_name =squatgrow
7- mod_version =21.5 .0
7+ mod_version =21.6 .0
88maven_group =dev.wuffs
99
10- architectury_version =16.1.4
10+ architectury_version =17.0.6
1111
1212fabric_loader_version =0.18.4
13- fabric_api_version =0.128.2+1.21.5
13+ fabric_api_version =0.128.2+1.21.6
1414
1515# Neo
16- neo_version =21.5.96
16+ neo_version =21.6.20-beta
1717
18- cloth_config_version =18 .0.145
18+ cloth_config_version =19 .0.147
1919
2020# Publishing
2121curseforge_id =515698
Original file line number Diff line number Diff line change 1414public class SquatGrowNeoForge {
1515 private static final DeferredRegister <AttachmentType <?>> ATTACHMENT_TYPES = DeferredRegister .create (NeoForgeRegistries .ATTACHMENT_TYPES , SquatGrow .MOD_ID );
1616 public static final Supplier <AttachmentType <Boolean >> SQUAT_GROW_ENABLED = ATTACHMENT_TYPES .register (
17- "squat_grow_enabled" , () -> AttachmentType .builder (() -> true ).serialize (Codec .BOOL ).build ()
17+ "squat_grow_enabled" , () -> AttachmentType .builder (() -> true ).serialize (Codec .BOOL . fieldOf ( "squat_grow_enabled" ) ).build ()
1818 );
1919
2020 public SquatGrowNeoForge (IEventBus modBus ) {
You can’t perform that action at this time.
0 commit comments