Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-02-16 | add listring to chest (#46)HEADorigin/masterorigin/HEADmaster | DS | |
* add listring to chest | |||
2017-03-14 | lcd: make lettering nearer to display | DS-Minetest | |
2017-03-14 | Backwards compat code. | Diego Martínez | |
2017-03-14 | Remove unused args. | Diego Martínez | |
2017-03-14 | Add `.luacheckrc` and fix warnings. | Diego Martínez | |
2017-03-14 | Change to `.`. | Diego Martínez | |
2017-03-14 | Rename global table to `digilines`. | Diego Martínez | |
This also adds a backwards compat alias so other mods shouldn't break. | |||
2017-03-06 | Add `settingtypes.txt`. | Diego Martínez | |
This allows configuring the mod from the GUI. | |||
2017-02-28 | Use `minetest.hash_node_position` for searches. | Christopher Head | |
Previously, Digilines used concatenations of X/Y/Z coordinates into strings as keys to check for repeatedly visiting the same node during a graph search. Replace them with integer keys generated by `minetest.hash_node_position`, which should be more efficient. | |||
2017-02-28 | Use VoxelManipulators to force-load nodes. | Christopher Head | |
If a node needed during wire traversal is not currently loaded, it is loaded from disk using a VoxelManipulator. | |||
2017-02-28 | Replace DFS with BFS. | Christopher Head | |
Replace the recursive depth-first search of a wire network with an iterative breadth-first search, primarily to reduce memory footprint and eliminate the possibility of stack overflow. | |||
2016-05-27 | Convert digilines to a mod (not modpack). (#32) | Auke Kok | |
Digilines is probably used by most people in its entirety. I've retained the ability to disable inventory, rtc, lightsensor and LCD by the minetest settings "diglines_enable_rtc" etc.. If set to "false", these components will not be loaded. It is assumed by default that these are enabled. In the conversion the digilines_lcd:lcd node was renamed to digilines:lcd (same for all the other nodes). To retain backwards compatibility I've provided aliases for each of these nodes. | |||
2016-05-23 | Add protection support to channel fields (#33) | cheapie | |
2016-04-11 | Adding a screenshot and description.txt | Auke Kok | |
This is for the toplevel folder alone. Subfolders could each use a separate one, but I feel they are not needed atm. | |||
2016-04-11 | Merge pull request #30 from Rui914/master | Auke Kok | |
Fix undeclared global variable "rules" | |||
2016-04-10 | Fix undeclared global variable "rules" | Rui914 | |
2016-01-19 | Merge pull request #28 from electrodude/bugs | Florian Euchner | |
Add missing local variable | |||
2016-01-18 | Removed redundant minetest.get_meta(pos) | electrodude | |
2016-01-18 | Added missing local variable | electrodude | |
The on_metadata_inventory_take method of digiline_inventory:chest was broken, since it used a `channel` local variable that was never defined, but should have been fetched from the node's meta | |||
2015-08-23 | Merge branch 'Rui914-patch-1' | Jeija | |
2015-08-21 | Fix digilines_lcd problems | Rui914 | |
2015-02-14 | Merge pull request #23 from MT-Modder/infotext-lcd | Florian Euchner | |
Add infotext to lcd, like signs | |||
2015-02-14 | Add infotext to lcd like signs | MT-Modder | |
2015-02-13 | Merge pull request #22 from MT-Modder/chest-craft | Florian Euchner | |
Add craft recipe for digiline chest | |||
2015-02-05 | Add craft recipe for digiline chest | MT-Modder | |
2015-01-12 | Fix #21, undeclared variables | Jeija | |
2014-12-08 | Merge pull request #20 from 163140/master | Florian Euchner | |
Added signal "empty" | |||
2014-12-08 | Added signal "empty" | 163140 | |
"Empty" signal useful for automated factories | |||
2014-11-22 | Fix minetest-mod-mesecons issue #188: Use digiline:tablecopy | Jeija | |
2014-11-19 | Define digiline chest from scratch by Zefram, posted in #16 | Jeija | |
2014-11-19 | Merge pull request #3 from lordcirth/master | Florian Euchner | |
Added crafting recipes for digiline and lcd. | |||
2014-07-01 | Merge pull request #15 from ShadowNinja/fix-unknown-nodes | Florian Euchner | |
Add a missing check for unknown nodes | |||
2014-06-30 | Add a missing check for unknown nodes | ShadowNinja | |
2014-06-05 | Merge pull request #14 from cheapie/master | Florian Euchner | |
Fix #13 | |||
2014-06-05 | Don't change the channel if the new channel is nil | Carter Kolwey | |
2014-04-24 | Make spec variable local | Jeija | |
2014-04-24 | Fix channel value getting deleted when quitting without editing the value in ↵ | Jeija | |
LCD, RTC and Light Sensor | |||
2014-04-24 | Merge branch 'master' of https://github.com/Jeija/minetest-mod-digilines | Jeija | |
2014-04-24 | Allow for non-autoconnecting wires; only if digiline.wire.use_autoconnect is ↵ | Jeija | |
set, autoconnection will be used | |||
2014-03-12 | Merge pull request #10 from CiaranG/gmatch | Jeija | |
Replace chunk of unnecessary code with gmatch | |||
2014-03-12 | Replace chunk of unnecessary code with gmatch | Ciaran Gultnieks | |
2014-03-03 | Merge pull request #9 from CiaranG/lcdcolon | Jeija | |
Add colon to lcd characters | |||
2014-03-03 | Add colon to lcd characters | Ciaran Gultnieks | |
2014-02-26 | Use tabs instead of spaces and remove unnecessary return | Jeija | |
2014-02-26 | Merge remote-tracking branch 'CiaranG/tableperf' | Jeija | |
2014-02-26 | Use tabs instead of spaces, remove unnecessary spaces | Jeija | |
2014-02-26 | Make lcd text persist properly | Ciaran Gultnieks | |
2014-02-26 | Update deprecated api calls | Ciaran Gultnieks | |
2014-02-15 | Performance improvement when transmitting | Ciaran Gultnieks | |
The 'checked' table is passed by reference anyway, so reassigning it at every step along the network is just wasting time by creating more and more copies of it. | |||
2014-01-26 | Fix digilines_chest and crashes of it if pipeworks is not installed | Jeija | |