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 ``` | |||
2016-09-25 | Cleanup, disable auto TE recipes with config and fixes | Muramasa | |
2016-09-24 | Update with exp changes | Muramasa | |
2016-09-15 | Update Part 1 | Muramasa | |
2016-08-17 | Initial | Muramasa | |
Fixed Materials limitation Added ability to add Materials via a config Added ability to change all properties of a Material via a config | |||
2016-08-14 | Bugfixes 9 | Muramasa | |
2016-08-13 | HashMap > ConcurrentHashMap & String vars | Muramasa | |
2015-10-21 | Reformat code | Shawn Buckley | |
2015-10-21 | Move source files | Shawn Buckley | |