Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-21 | feat(render): oil drilling rig glow | Léa Gris | |
Fixed to use own previously existing texture assets | |||
2021-05-21 | feat(render): ore drilling plant glow | Léa Gris | |
2021-05-21 | feat(render): processing array glow | Léa Gris | |
2021-05-21 | feat(render): pyrolyse oven glow | Léa Gris | |
2021-05-21 | feat(render): active replicator front glow | Léa Gris | |
2021-05-21 | feat(render): active rockbreacker front glow | Léa Gris | |
Used by: - Advanced Seismic Prospector - Rock Breaker - Seismic Prospector - Charcoal Pit | |||
2021-05-21 | feat(render): scanner glow | Léa Gris | |
2021-05-21 | feat(render): active steam alloy smelters glow | Léa Gris | |
2021-05-21 | feat(render): active steam furnaces glow | Léa Gris | |
2021-05-21 | feat(render): vaccum freezer glow | Léa Gris | |
2021-05-21 | feat(render): auto maintenance hatch glow | Léa Gris | |
2021-05-21 | feat(render): activity detector covers glow | Léa Gris | |
2021-05-21 | feat(render): active naquadah reactor glow | Léa Gris | |
2021-05-21 | feat(render): magical energy converter and absorber glow textures | Léa Gris | |
2021-05-21 | feat(render): active high pressure lava boiler glow | Léa Gris | |
2021-05-21 | feat(render): active boiler glow | Léa Gris | |
2021-05-21 | feat(render): first set of glow textures | Léa Gris | |
Add glowing textures to: - Qantum or Super Tanks and Chests - Active Bronze and Bricked Blast Furnaces - Active Magical Absorber Top - Fusion Reactor Control Computer Screen - Active Yellow Glass Fusion Casing used on: - Active Fusion Reactor Controller and Hatches - Plasma Generator - Lightning Rod - Computer Screen Cover | |||
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 | 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 ' _ {} +; ``` | |||
2021-03-24 | impr(textures): harminise cable insulations | Léa Gris | |
fix insulation texture was darker on cable ends than on cable sides | |||
2021-03-24 | feat(cover): hide covers when holding a soldering-iron | Léa Gris | |
2021-02-16 | feat(render): tile ambient occlusion | Léa Gris | |
Render smooth lighting ambient occlusion on all Gregtech tiles: - Ores - Machines - Pipes, Cables, Wires, Frames Add new Client-side configuration entry in Gregtech.cfg. If false, the flat lighting rendering of older versions is used. ```yml render { B:TileAmbientOcclusion_true=true } ``` | |||
2021-02-01 | Merge pull request #429 from GTNewHorizons/autoclave-fluid-out | Martin Robertz | |
allow autoclave to have fluid out in recipe | |||
2021-02-01 | allow autoclave to have fluid out in recipe | korneel vandamme | |
2021-01-30 | Merge pull request #426 from KiloJoel/shadowmetalBeeFix | Martin Robertz | |
added GT shadowmetal block, fixed bee crash from new TM | |||
2021-01-29 | added shadow block texture | KiloJoel | |
2021-01-19 | ME output bus | repo_alt | |
2021-01-17 | Remove assets | Jason Mitchell | |
2021-01-02 | Merge pull request #383 from GTNewHorizons/long_distance_transfer | Martin Robertz | |
Long distance pipelines | |||
2021-01-01 | fix (GT)emitter and sensor textures | DreamMasterXXL | |
(cherry picked from commit 9e483b5c905ec21d8c2193f146a8789a47b17a87) | |||
2020-12-31 | Merge branch 'experimental' into long_distance_transfer | Jason Mitchell | |
2020-12-28 | Refactor | bartimaeusnek | |
+ Added 2 more coils + Improved Tooltips | |||
2020-12-28 | change textures | DreamMasterXXL | |
(cherry picked from commit bcd9bd8449a810cc0022fc58806d3e78f995ef56) | |||
2020-12-27 | update Textures | DreamMasterXXL | |
bump verion (cherry picked from commit 5cd8800ac37e8cbcf0bc6578cec0c3215c7df4f9) | |||
2020-12-26 | Add ~~stolen~~ borrowed textures for long distance pipes | Jason Mitchell | |
2020-12-26 | Adds long distance Item & Fluid pipelines and pipes. Inspired/ported from ↵ | Jason Mitchell | |
GT6 under LGPL. | |||
2020-12-14 | add animated texture for the valve | DreamMasterXXL | |
2020-12-13 | add textures | DreamMasterXXL | |
if anyone have a better one just send it to me. | |||
2020-11-27 | feat(gregtech): visual programmed circuit (#355) | Léa Gris | |
* feat(gregtech): visual programmed circuit Add: Feature a configuration display for the programmed circuit (integrated circuit). Address feature request https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6993 * fix(bug): potential out of bound index | |||
2020-11-20 | change(GT)Texture change | DreamMasterXXL | |
Intank texture changed Titanum Gearbox changed | |||
2020-11-20 | fix(GT)change Color of the Extreme Casings | DreamMasterXXL | |
bump version | |||
2020-11-03 | Added IV HOG only LCE | Prometheus0000000 | |
2020-07-26 | fix(gregtech)machineparts uev | DreamMasterXXL | |
fix uev machineparts texture UEV Electric Piston has 2 pixels miscoloured #6443 https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6443 | |||
2020-07-26 | fix(gregtech)piston uev | DreamMasterXXL | |
fix uev piston texture UEV Electric Piston has 2 pixels miscoloured #6443 https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6443 | |||
2020-07-23 | change(gregtech)texture from Raw DD Block | DreamMasterXXL | |
2020-07-23 | feat(Gregtech) add Raw DD Portal Block | DreamMasterXXL | |
Add Raw Poatal Block for DD Infusion recipe | |||
2020-06-01 | Added gui's for the rest of em covers. | moller21 | |
2020-05-16 | Add new Autoclave Texture | DreamMasterXXL | |
2020-05-04 | Added cover guis for pump/filter | moller21 | |
2020-04-19 | More Polybenzimidazole (PBI) Uses in Higher Tier Recipes #5928 | DreamMasterXXL | |
https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/5928 |