Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-18 | Fix NPE in GT_Client | Glease | |
2021-05-17 | Increase transformer eu storage cap | Glease | |
2021-05-16 | Dirty fix for ore drill not mining certain ore | Glease | |
2021-05-16 | Generate EBF recipe for calcium ingot | Glease | |
2021-05-15 | Merge pull request #534 from GTNewHorizons/safe-mode-gui-fix | Martin Robertz | |
Fix machine controller gui not being properly initialized | |||
2021-05-15 | Merge pull request #533 from GTNewHorizons/update-fluid-display | Martin Robertz | |
Allow client to proactively request fluid display updates | |||
2021-05-16 | Remove ic2 iridium ore to iridium ingot recipe | Glease | |
2021-05-15 | Fix machine controller gui not being properly initialized | Glease | |
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> | |||
2021-05-15 | Allow client to proactively request fluid display updates | Glease | |
Currently client will only request update on blocks being looked at. Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> | |||
2021-05-13 | Merge pull request #532 from Prometheus0000/trans | Martin Robertz | |
Change UV transformer cable to bedrockium so you can actually make it in UV | |||
2021-05-13 | Allow annealed again | Prometheus0000 | |
2021-05-13 | Merge pull request #528 from Prometheus0000/remove_useless | Martin Robertz | |
Remove useless recipes in GT5U involving tiny/small dusts | |||
2021-05-13 | Remove commented out code | Prometheus0000 | |
2021-05-13 | Change UV transformer cable to bedrockium so you can actually make it in | Prometheus0000 | |
UV Change anycopper to copper for LV one to reduce confusion, and because I doubt anyone would use annealed Change size from x2 or x4 to x1, because it doesn't make sense for them to be larger, they're not high-amp transformers, they send the same amount of amps as the earlier tiers | |||
2021-05-13 | Merge pull request #493 from johnch18/bufferFix2 | Martin Robertz | |
Made higher tier buffers attempt to move multiple stacks/tick | |||
2021-05-13 | Merge pull request #515 from GTNewHorizons/files_format | Martin Robertz | |
Normalize all repository files format | |||
2021-05-12 | Removed redundant loop. | charles | |
2021-05-09 | Merge pull request #531 from Prometheus0000/dimeth | Martin Robertz | |
Add LCR dimethylbenzene recipe | |||
2021-05-08 | Forgot to adjust recipe time/EU | Prometheus0000 | |
2021-05-08 | Also fix assembler one while at it | Prometheus0000 | |
2021-05-08 | Fix help message more | Prometheus0000 | |
2021-05-08 | Add LCR dimethylbenzene recipe | Prometheus0000 | |
2021-05-08 | Fix help message thing for LCR recipes | Prometheus0000 | |
2021-05-08 | Fix name of americium | Prometheus0000 | |
2021-05-08 | Fix soft mallet mishandling vanilla hopper | Glease | |
2021-05-06 | Removes autogeneration of tiny dust to nugget smelting recipe for | Prometheus0000 | |
non-EBF materials Does anyone use this? | |||
2021-05-06 | Removes autogenerating of alloy smelter tiny/small dust recipes for | Prometheus0000 | |
non-EBF materials It seems you can't use the normal size ones in the AS to make ingots, but does anyone care? | |||
2021-05-06 | Removes autogenerating of EBF tiny/small dust recipes | Prometheus0000 | |
2021-05-06 | Remove useless tiny/small mixer recipes | Prometheus0000 | |
It was done in a neat way though | |||
2021-05-06 | Actually make the buffer sort config work | Glease | |
2021-05-05 | Merge pull request #526 from Prometheus0000/schem | Martin Robertz | |
Remove duplicate and erroneous recipe for the base schematic | |||
2021-05-05 | Remove duplicate and erroneous recipe for the base schematic | Prometheus0000 | |
2021-05-05 | Merge pull request #525 from Prometheus0000/card | Martin Robertz | |
Remove duplicate and fix existing sensor card recycling recipe | |||
2021-05-05 | Remove duplicate and fix existing sensor card recycling recipe | Prometheus0000 | |
Well, 'fix' is more like, 'be fair' | |||
2021-05-05 | Merge pull request #524 from Prometheus0000/BpW | Martin Robertz | |
Add water to bisphenol MB recipe | |||
2021-05-05 | Merge pull request #522 from Prometheus0000/styrene | Martin Robertz | |
Re-add styrene recipes | |||
2021-05-05 | Add water to bisphenol MB recipe | Prometheus0000 | |
2021-05-05 | Sets shadowiron and shadowsteel to centrifuge only | Prometheus0000 | |
I couldn't figure out how to lower the time, as it's auto-generated somehow Add spaces to the names. This is just visual Change Shadow to Shadow Metal to help differentiate the three. Also just visual | |||
2021-05-05 | Re-add styrene recipes | Prometheus0000 | |
2021-05-04 | Scanner info for the output hatch | repo_alt | |
2021-05-01 | Merge pull request #519 from Prometheus0000/plascrete_fix | Martin Robertz | |
Fix plascrete needing a pickaxe and having too much hardness and BR | |||
2021-05-01 | Change to 1.5 | Prometheus0000 | |
2021-05-01 | Fix plascrete needing a wrench and having too much hardness and BR | Prometheus0000 | |
2021-05-01 | Change hardness from 5 to 0.8 | Prometheus0000 | |
2021-04-29 | fix(charcoalpit): stop the igniter from capturing right-click (#517) | Léa Gris | |
The Charcoal-Pit Igniter has no GUI but was needlessly capturing player's right-clicks. It was an inconvenience when right-clicking on the pit's ceiling because when reaching the Igniter, the right-click was captured and player needed to sneak to place a log block under the Igniter. | |||
2021-04-29 | Merge pull request #513 from Prometheus0000/oredict | Martin Robertz | |
Adds oredicting of synthetic rubber to conveyors and standardizes pumps | |||
2021-04-27 | Remove debug print statement in ScanPipes | Jason Mitchell | |
2021-04-27 | fix(pngfiles): .png files not in png format | Léa Gris | |
Convert to png all .png files that were not in image/png format using Linux shell ```sh git ls-files -z | while IFS= read -rd '' f; do mime="$(file --brief --mime "$f")"; if [ -z "${f%%*.png}" ] && [ -n "${mime##image/png;*}" ]; then convert "$f" /tmp/a.png; cat /tmp/a.png >"$f"; fi; done; rm -f -- /tmp/a.png ``` | |||
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-04-27 | tidy(json): all .mcmeta and .info | Léa Gris | |
Normalise all these json files with jq Used Linux shell ```sh find ./src -type f \( -iname '*.mcmeta' -o -iname '*.info' \) -execdir bash -c ' for f; do if jq "." "$f" >/tmp/a.json; then cat /tmp/a.json >"$f"; fi; done; rm -f -- /tmp/a.json ' _ {} +; ``` |