From 6e582f8d4e1e7a9c1894f542ab7a94755d2c4cc3 Mon Sep 17 00:00:00 2001 From: GaLi Date: Wed, 26 Nov 2025 14:59:16 +0800 Subject: [PATCH] 1.4.6 --- CHANGELOG.md | 18 ++++++++++++++++++ gradle.properties | 2 +- .../gui/PatternEncodingTermScreenMixin.java | 2 +- src/main/resources/META-INF/mods.toml | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 912f25f..73deed1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ ## [Unreleased] +## [1.4.6] + +### Added / 新增 +- 添加虚拟合成卡,可在供应器升级槽中终止即将完成的合成 + - Added the Virtual Crafting Card, allowing providers to abort near-finished jobs from their upgrade slot +- 为实体加速器提供红石控制模式,支持信号启停 + - Added redstone control support for the Entity Accelerator, enabling signal-based start/stop +- 新增“中间下单”功能,允许直接在合成计划中插入新的订单 + - Added the mid-order feature so new requests can be inserted directly into ongoing crafting plans +- 样板编码终端上传至装配矩阵需按住 Shift 点击编码按钮才会触发 + - Uploading crafting patterns to the Assembler Matrix now only triggers when Shift is held during encoding + +### Fixed / 修复 +- 修复吞噬盘与 AppFlux 联动配方异常的问题 + - Fixed the Devouring Disk recipe integration issue with AppFlux +- 修复合成计划界面与 ExtendedAE 冲突导致显示异常的问题 + - Fixed visual conflicts between the crafting plan screen and ExtendedAE features + ## [1.4.5] ### Added / 新增 diff --git a/gradle.properties b/gradle.properties index 1759672..050be2c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx1G loom.platform = forge # Mod properties -mod_version = 1.4.5 +mod_version = 1.4.6 maven_group = com.extendedae_plus archives_name = extendedae_plus diff --git a/src/main/java/com/extendedae_plus/mixin/ae2/client/gui/PatternEncodingTermScreenMixin.java b/src/main/java/com/extendedae_plus/mixin/ae2/client/gui/PatternEncodingTermScreenMixin.java index 770a89e..e4f44d8 100644 --- a/src/main/java/com/extendedae_plus/mixin/ae2/client/gui/PatternEncodingTermScreenMixin.java +++ b/src/main/java/com/extendedae_plus/mixin/ae2/client/gui/PatternEncodingTermScreenMixin.java @@ -37,7 +37,7 @@ public abstract class PatternEncodingTermScreenMixin { @Unique private IconButton eap$uploadBtn; - @ModifyVariable(method = "", at = @At(value = "STORE"), ordinal = 0) + @ModifyVariable(method = "", at = @At(value = "STORE"), name = "encodeBtn") private ActionButton eap$wrapEncodeButton(ActionButton original) { return new ActionButton(ActionItems.ENCODE, act -> { ModNetwork.CHANNEL.sendToServer(new EncodeWithShiftFlagC2SPacket(Screen.hasShiftDown())); diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 217e34e..bafd540 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -8,7 +8,7 @@ displayURL="https://github.com/GaLicn/ExtendedAE_Plus" issueTrackerURL = "https://github.com/GaLicn/ExtendedAE_Plus/issues" version = "${version}" displayName = "ExtendedAE Plus" -credits = "GaLi,C-H716" +credits = "C-H716 for Code Contribution" authors = "GaLi" description = "Add more practical features and auxiliary operations to the Applied Energistics 2 mod." logoFile = "extendedae_plus.png"