generated from isXander/FabricModTemplate
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to 1.21.4, bump deps, bump Kotlin
- Loading branch information
Showing
19 changed files
with
142 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ build | |
.gradle | ||
!.gitkeep | ||
/.architectury-transformer | ||
/.kotlin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
# YetAnotherConfigLib 3.6.1 | ||
# YetAnotherConfigLib 3.6.2 | ||
|
||
This build supports the following versions: | ||
- Fabric 1.21.2 | ||
- NeoForge 1.21.2 | ||
This version of YACL has many different version targets. | ||
Ensure you download the correct version of YACL for your MC version. | ||
|
||
- Fabric 1.21.4 | ||
- Fabric 1.21.2 (also supports 1.21.3) | ||
- Fabric 1.20.1 | ||
- Fabric 1.20.4 | ||
- Fabric 1.20.6 (also supports 1.20.5) | ||
- Fabric 1.21 | ||
- NeoForge 1.21.4 | ||
- NeoForge 1.21.2 (also supports 1.21.3) | ||
- NeoForge 1.21 | ||
- NeoForge 1.20.6 (also supports 1.20.5) | ||
- NeoForge 1.20.4 | ||
- MinecraftForge 1.20.1 | ||
|
||
## Changes | ||
|
||
- Add 1.21.2 build for NeoForge | ||
- Fix not being able to type negative numbers into number field controllers () | ||
- Fix default range of floating point field controllers being 0-MAX instead of MIN-MAX ([#213](https://github.com/isXander/YetAnotherConfigLib/pull/213)) | ||
- Update translations | ||
- Update to support 1.21.4 (many thanks to Riflusso for this port) | ||
- Add `groupIf` to `ConfigCategory.Builder` (thanks Kevin) | ||
- Pass down middle-mouse clicks to widgets in ElementListWidgetExt (thanks Protonull) | ||
- Fix Greek translation (many thanks to Darkhax for this) | ||
- Update Kotlin to 2.0.21 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/main/java/dev/isxander/yacl3/mixin/AbstractSelectionListAccessor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package dev.isxander.yacl3.mixin; | ||
|
||
import net.minecraft.client.gui.components.AbstractSelectionList; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.gen.Accessor; | ||
|
||
@Mixin(AbstractSelectionList.class) | ||
public interface AbstractSelectionListAccessor { | ||
//? if >=1.21.4 { | ||
@Accessor | ||
void setRenderHeader(boolean render); | ||
//?} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.