From 30f25c68f82d967217f493a35dab804ea37c021d Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Thu, 29 Aug 2024 17:58:43 +0200 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 13 +++++++++++++ .../common/upgrade/UpgradeContainer.java | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7f0acf55..c5d204cb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,24 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added + +- Crafter + ### Changed - Optimized memory usage and startup time of cable models. After updating, cables will appear disconnected, but this is only visual. Cause a block update to fix this. - Optimized performance of searching in the Grid. - Custom titles that overflow will now have a marquee effect instead, for every GUI. +- You can now define a priority in the Crafter. +- You can now change the name of a Crafter in the GUI. +- Changed "Crafter mode" to "Locking mode" with following options: + - Never + - Lock until redstone pulse is received + - Lock until connected machine is empty (new, facilitates easier "blocking mode" without redstone) + - Lock until all outputs are received (new, facilitates easier "blocking mode" without redstone) + - Lock until low redstone signal + - Lock until high redstone signal ### Fixed diff --git a/refinedstorage-common/src/main/java/com/refinedmods/refinedstorage/common/upgrade/UpgradeContainer.java b/refinedstorage-common/src/main/java/com/refinedmods/refinedstorage/common/upgrade/UpgradeContainer.java index a34fef0e1..24c8c6d68 100644 --- a/refinedstorage-common/src/main/java/com/refinedmods/refinedstorage/common/upgrade/UpgradeContainer.java +++ b/refinedstorage-common/src/main/java/com/refinedmods/refinedstorage/common/upgrade/UpgradeContainer.java @@ -41,7 +41,7 @@ public class UpgradeContainer extends SimpleContainer implements UpgradeState { private final ThrottledNetworkNodeTicker ticker; public UpgradeContainer(final UpgradeDestination destination) { - this(destination, null, DEFAULT_WORK_TICK_RATE); + this(destination, null); } public UpgradeContainer(final UpgradeDestination destination, @Nullable final UpgradeContainerListener listener) {