Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-27 | fix(textfiles): add missing neline at end of files | Léa Gris | |
git and diff tools will complain if text file does not end with a newline. Fixed all text files in the repository with Linux bash shell: ```sh git ls-files -z | while IFS= read -rd '' f; do mime="$(file --brief --mime "$f")"; if [ -z "${mime##text/*}" ]; then tail -c1 "$f" | read -r _ || printf '\n' >>"$f"; fi; done ``` | |||
2021-02-10 | Fix bit fiddling | Glease | |
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> | |||
2020-12-29 | Fixed Min/Max switcheroo | bartimaeusnek | |
2020-12-28 | Added Tier Colors | bartimaeusnek | |
2020-12-28 | Refactor | bartimaeusnek | |
+ Added 2 more coils + Improved Tooltips | |||
2020-12-24 | Heating Coil Logic Overhaul | bartimaeusnek | |