All versions
0.6.0
Release
LogiGraph Factory Manager 0.6.03 weeks ago 2
Compatibility
Minecraft: Java Edition
26.1.2
Platform
NeoForge
Supported environments
Client and server
Changes
[0.6.0] — 2026-06-17
Added
- Scheduled auto-scan — Logistics Computers can rescan on
scan.autoScanIntervalTickswithout a player opening the GUI. - Redstone alerts — Logistics Computers emit redstone when
scan.redstoneAlertOnErroris enabled and any ERROR-level warning is active. - Per-link throughput stats — LFM returns server-owned moved counts per link; the computer syncs rolling samples to node details and the stats page.
- Configurable wire traversal depth —
scan.maxWireTraversalStepsreplaces the fixed wired traversal cap for large grids. - Shareable graph blueprints — graph import/export uses compact base64 graph JSON on the clipboard, still validated by the server on save.
- Filter item picker — filter nodes expose a searchable 3x3 ghost item grid with recents while keeping JEI/REI/EMI panels off the modal.
- Mod-aware scan providers — optional AE2, Mekanism, and Create readers augment standard capability scans when those mods are present.
- CC:Tweaked peripheral — Logistics Computers expose scan, warning, storage, power, and network data through optional reflection-based peripheral hooks.
- Multi-computer mesh — computers can link peers and merge saved peer scan snapshots without mutating the peer world or graph.
- Throughput planner — pure stats-page analysis estimates bottlenecks/starvation from route capacity and machine progress snapshots.
- Network Switchboard — connects networks with per-resource LFM permissions and priorities; connected computers show multi-network scan tabs.
- Storage Drawers / Refined Storage scan providers — optional providers read exposed item capabilities from drawer and RS controllers/interfaces when present.
- Linking Card — shift-use a Logistics Computer to copy its network id, then shift-use a router, dongle, or socket to assign it without typing.
- Switchboard canvas UI — LogiGraph-style Switchboard screen with draggable nodes, pan, zoom, saved node positions, and item/fluid/energy bridge permissions.
Fixed / Optimised
- Double chest — one dongle/socket is enough — a dongle or socket on either half of a double chest now correctly exposes the full combined 54-slot inventory. Previously the non-canonical half was silently ignored. Placing a second chest next to a connected single chest is picked up on the next scan without any extra hardware.
- Endpoint network assignment — newly placed routers, dongles, and sockets auto-join exactly one nearby computer network when unambiguous; otherwise they remain isolated until assigned.
- Graph node labels — scanned nodes now show device/block name plus id in the title and source network in smaller text at the node footer.
- GraphCanvasWidget.nodeMap() was rebuilding a
HashMapon every hit-test call (link click, port hover, etc.), ignoring the existing revision-gated cache. Now returnscachedNodesByIddirectly after callingensureModel()— zero extra allocations on frames where the graph hasn't changed. - LogiFactoryManager DFS —
outboundLinks()previously scanned the entire link list for every routing node visited during a route-through pass (O(links * nodes) per tick). Now builds oneMap<nodeId, List<links>>index at the start of each tick and reuses it for all DFS calls. - LogiFactoryManager dead code — removed
singleAcceptingSlotandisInputLikeInsertionSlot, neither of which was called anywhere in the codebase. - NetworkPowerCalculator — logs a
debugline when the wired traversal hitsMAX_COMPONENT_STEPSso large wire grids are visible in logs without flooding them at normal scale.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:RE8KiNaJ:Cqxzsrxl"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:RE8KiNaJ:Cqxzsrxl"
}

