12 Commits

Author SHA1 Message Date
4ea309bbe9 Update to Minecraft 1.21.5
Some checks failed
Java CI with Gradle / build (push) Failing after 15m56s
2025-04-23 22:12:34 +01:00
f186c66ad7 remove permissions specification from workflow
Some checks failed
Java CI with Gradle / build (push) Failing after 25m2s
2025-04-23 21:14:15 +01:00
f88b167931 specify artifact retention and compression level in workflow
Some checks failed
Java CI with Gradle / build (push) Has been cancelled
2025-04-23 21:12:00 +01:00
45c65560f1 Update GitHub (Gitea) workflow
Some checks failed
Java CI with Gradle / build (push) Failing after 25m5s
2025-04-23 19:33:24 +01:00
83d42630d8 Update GitHub (Gitea) workflow
Some checks failed
Java CI with Gradle / build (push) Failing after 15s
2025-04-23 19:32:43 +01:00
62bccc2452 Update .github/workflows/gradle.yml
Some checks failed
Java CI with Gradle / build (push) Failing after 3m11s
2025-04-23 19:24:01 +01:00
92f9a82ee5 Update README.md
Some checks failed
Java CI with Gradle / build (push) Has been cancelled
2025-04-23 19:22:04 +01:00
Adam Macdonald
17aa218b6c Update "known issues" in README 2024-07-22 17:46:04 +01:00
Adam Macdonald
7114e853b8 Remove dependency graph generation from CI steps 2024-07-22 17:42:29 +01:00
Adam Macdonald
4d6dbc594d Add CI status badge 2024-07-22 17:39:47 +01:00
Adam Macdonald
d79f9b4edc Add GitHub action for building w/ Gradle 2024-07-22 17:36:16 +01:00
Adam Macdonald
064f65d50d Add link to the project on Modrinth in README 2024-07-22 17:24:49 +01:00
9 changed files with 57 additions and 13 deletions

View File

@@ -0,0 +1,38 @@
name: Java CI with Gradle
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: archlinux-latest
steps:
- name: Install prerequisite packages
run: pacman -Syu --noconfirm && pacman -S --noconfirm git nodejs
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: "21"
distribution: "temurin"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build with Gradle Wrapper
run: ./gradlew build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: JARs
path: build/libs
retention-days: 30
compression-level: 9

View File

@@ -1,11 +1,18 @@
## HotbarReplace ## HotbarReplace
[![Java CI with Gradle](https://git.2khz.xyz/adam/HotbarReplace/actions/workflows/gradle.yml/badge.svg)](https://git.2khz.xyz/adam/HotbarReplace/actions/workflows/gradle.yml)
HotbarReplace is a Minecraft mod for the Fabric modding framework which replaces blocks in your hotbar with blocks of the same type from your inventory upon running out while placing, see demo GIF below to see how it works! HotbarReplace is a Minecraft mod for the Fabric modding framework which replaces blocks in your hotbar with blocks of the same type from your inventory upon running out while placing, see demo GIF below to see how it works!
### Known issues/Improvements ### Known issues/Improvements
* Make the mod more resilient to network delay and packet loss (don't hardcode a 50 ms delay) * [You tell me!](https://git.2khz.xyz/adam/HotbarReplace/issues) I'd like to see this mod be as simple & bug-free as possible!
### Demo GIF ### Where to find it?
- Here! On GitHub you can grab whichever release you like from the sidebar on the right-hand side.
- Otherwise, also on [Modrinth](https://modrinth.com/mod/hotbarreplace).
#### Demo GIF
![HotbarReplace Demo GIF](./docs/hotbarreplace-demo.gif) ![HotbarReplace Demo GIF](./docs/hotbarreplace-demo.gif)

View File

@@ -1,5 +1,5 @@
plugins { plugins {
id 'fabric-loom' version '1.7-SNAPSHOT' id 'fabric-loom' version '1.10-SNAPSHOT'
id 'maven-publish' id 'maven-publish'
} }

View File

@@ -3,9 +3,9 @@ org.gradle.jvmargs=-Xmx1G
org.gradle.parallel=true org.gradle.parallel=true
# Fabric Properties # Fabric Properties
minecraft_version=1.21 minecraft_version=1.21.5
yarn_mappings=1.21+build.9 yarn_mappings=1.21.5+build.1
loader_version=0.15.11 loader_version=0.16.13
# Mod Properties # Mod Properties
mod_version = 0.1.3 mod_version = 0.1.3
@@ -13,4 +13,4 @@ maven_group = xyz.twokilohertz
archives_base_name = HotbarReplace archives_base_name = HotbarReplace
# Dependencies # Dependencies
fabric_version=0.100.7+1.21 fabric_version=0.121.0+1.21.5

Binary file not shown.

View File

@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
networkTimeout=10000 networkTimeout=10000
validateDistributionUrl=true validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME

5
gradlew vendored
View File

@@ -86,8 +86,7 @@ done
# shellcheck disable=SC2034 # shellcheck disable=SC2034
APP_BASE_NAME=${0##*/} APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
' "$PWD" ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value. # Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum MAX_FD=maximum
@@ -206,7 +205,7 @@ fi
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command: # Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, # * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped. # and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line. # treated as '${Hostname}' itself on the command line.

View File

@@ -65,7 +65,7 @@ public class HotbarReplace implements ClientModInitializer {
scheduler.schedule(() -> { scheduler.schedule(() -> {
client.interactionManager.clickSlot(player.currentScreenHandler.syncId, client.interactionManager.clickSlot(player.currentScreenHandler.syncId,
inventory.selectedSlot + PlayerInventory.MAIN_SIZE, GLFW.GLFW_MOUSE_BUTTON_1, inventory.getSelectedSlot() + PlayerInventory.MAIN_SIZE, GLFW.GLFW_MOUSE_BUTTON_1,
SlotActionType.PICKUP, player); SlotActionType.PICKUP, player);
}, click_delay, TimeUnit.MILLISECONDS); }, click_delay, TimeUnit.MILLISECONDS);
} }

View File

@@ -20,7 +20,7 @@ public class BlockItemMixin {
} }
@Inject(at = @At("TAIL"), method = "Lnet/minecraft/item/BlockItem;place(Lnet/minecraft/item/ItemPlacementContext;)Lnet/minecraft/util/ActionResult;") @Inject(at = @At("TAIL"), method = "Lnet/minecraft/item/BlockItem;place(Lnet/minecraft/item/ItemPlacementContext;)Lnet/minecraft/util/ActionResult;")
private void mixin_BlockItem_place_tail(ItemPlacementContext context, CallbackInfoReturnable<ActionResult> info) { private void BlockItem_place_tail(ItemPlacementContext context, CallbackInfoReturnable<ActionResult> info) {
// Early return if the block place action would fail // Early return if the block place action would fail
if (info.getReturnValue() != ActionResult.SUCCESS) if (info.getReturnValue() != ActionResult.SUCCESS)
return; return;