Skip to content

Commit

Permalink
Update to 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthegreat1 committed Dec 4, 2024
1 parent 5df2806 commit b382bf2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Folders! 1.2.6 for 1.21.4
Support for 1.21.4

## Folders! 1.2.5 for 1.21.2 & 1.21.3
Support for 1.21.2 and 1.21.3

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,17 +94,17 @@ publishMods {
projectSlug = "organizable-play-screens" // Required for discord webhook
accessToken = providers.environmentVariable("CURSEFORGE_TOKEN")
minecraftVersionRange {
start = "1.21.2"
end = "1.21.3"
start = "1.21.4"
end = "1.21.4"
}
requires("fabric-api")
}
modrinth {
projectId = "zKrZtg3n"
accessToken = providers.environmentVariable("MODRINTH_TOKEN")
minecraftVersionRange {
start = "1.21.2"
end = "1.21.3"
start = "1.21.4"
end = "1.21.4"
}
}
github {
Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version = 1.21.3
yarn_mappings = 1.21.3+build.2
loader_version = 0.16.7
minecraft_version = 1.21.4
yarn_mappings = 1.21.4+build.1
loader_version = 0.16.9

# Mod Properties
mod_version = 1.2.5
mod_version = 1.2.6
maven_group = com.kevinthegreat
archives_base_name = organizable-play-screens

# Dependencies
fabric_version = 0.107.0+1.21.3
fabric_version = 0.110.5+1.21.4
# Mod Menu (https://modrinth.com/mod/modmenu/versions)
modmenu_version = 12.0.0-beta.1
# Essential (https://repo.essential.gg/repository/maven-public/gg/essential/essential-1.20.6-fabric/maven-metadata.xml)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ private void organizableplayscreens_updateEntries(CallbackInfo ci) {
children().add(scanningEntry);
children().addAll(lanServers);
if (getSelectedOrNull() == null) {
setScrollAmount(0);
setScrollY(0);
}
organizableplayscreens_updateCurrentPath();
ci.cancel();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ private void organizableplayscreens_updateEntries(String search) {
}
WorldListWidget.Entry selected = getSelectedOrNull();
if (selected == null) {
setScrollAmount(0);
setScrollY(0);
} else {
ensureVisible(selected);
}
Expand Down

0 comments on commit b382bf2

Please sign in to comment.