Add a new config option called 'maxReceiverDistance'. A receiver must be within that spherical distance to a sender to be added as new receiver. If 'maxReceiverDistance' is set to 0, there wont be a maximum distance (default) (#53)
If 'allowBreakOfChest' is true, removed chests which are senders or receivers are removed from Item Chest Sorter (#48)
Add an option to send items to receivers as soon as the sender chest ist full (
#26). For this a new boolean was added to the config file named
sendFromHopperOrSenderNoEmptySlot. It defaults to false.
In addition many libraries were updated and some minor typos and bugs were fixed.
Added a 'performance mode' especially for servers with slow drives (HDDs). When the performance mode is enabled, the chests.json is only saved periodically (as defined in the config.yml) and when the server shuts down.
This however means that if the server crashes, data can be lost!
if the flag allowBreakOfChest is set to false in the config.yml (must be added manually if coming from a previous version), players are not allowed to break containers which are defined as senders and/or receivers. The default value is true, as this could imply a (small) loss of performance (as all plugins which listen on the onBreakBlock Event).
added some animations so you can actually see your items flying to your receiver with options to configure:
animation.enabled: true (If true items are being animated. If false no animations will be drawn; default: true)
animateAll: false (If true all items are being animated. If false only one item will be animated (only used if enabled = true). Can have a performance impact; default: false)
now supporting all holders (chests, barrels, hoppers, etc.)
It is now possible to use regexp in sets. So if you want to move all wool colors to one chest you do not have to enter all ids manually. Just use '.*_wool' and all items containing _wool will be sorted to one chest
added the feature to automatically send items to receiver which are placed into a sender chest by a hopper. This feature however is disabled by default and has to be enabled in the config.yml.
fixed a bug where a setup would fail, when there are only 'air chests'