aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources
AgeCommit message (Collapse)Author
2021-05-21feat(render): active high pressure lava boiler glowLéa Gris
2021-05-21feat(render): active boiler glowLéa Gris
2021-05-21feat(render): first set of glow texturesLé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-27fix(pngfiles): .png files not in png formatLé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-27tidy(json): all .mcmeta and .infoLé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-24impr(textures): harminise cable insulationsLéa Gris
fix insulation texture was darker on cable ends than on cable sides
2021-03-24feat(cover): hide covers when holding a soldering-ironLéa Gris
2021-02-16feat(render): tile ambient occlusionLé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-01Merge pull request #429 from GTNewHorizons/autoclave-fluid-outMartin Robertz
allow autoclave to have fluid out in recipe
2021-02-01allow autoclave to have fluid out in recipekorneel vandamme
2021-01-30Merge pull request #426 from KiloJoel/shadowmetalBeeFixMartin Robertz
added GT shadowmetal block, fixed bee crash from new TM
2021-01-29added shadow block textureKiloJoel
2021-01-19ME output busrepo_alt
2021-01-17Remove assetsJason Mitchell
2021-01-11Update en_US.langElisis
Fix a whole slew of typos and general inaccuracies
2021-01-09fix entity.gregtech.GT_Entity_Arrow.name localizationboubou19
2021-01-05Add text for achievementPrometheus0000
2021-01-02Merge pull request #383 from GTNewHorizons/long_distance_transferMartin Robertz
Long distance pipelines
2021-01-01fix (GT)emitter and sensor texturesDreamMasterXXL
(cherry picked from commit 9e483b5c905ec21d8c2193f146a8789a47b17a87)
2020-12-31Merge branch 'experimental' into long_distance_transferJason Mitchell
2020-12-28Refactorbartimaeusnek
+ Added 2 more coils + Improved Tooltips
2020-12-28change texturesDreamMasterXXL
(cherry picked from commit bcd9bd8449a810cc0022fc58806d3e78f995ef56)
2020-12-27update TexturesDreamMasterXXL
bump verion (cherry picked from commit 5cd8800ac37e8cbcf0bc6578cec0c3215c7df4f9)
2020-12-26Add ~~stolen~~ borrowed textures for long distance pipesJason Mitchell
2020-12-26Adds long distance Item & Fluid pipelines and pipes. Inspired/ported from ↵Jason Mitchell
GT6 under LGPL.
2020-12-14add animated texture for the valveDreamMasterXXL
2020-12-13add texturesDreamMasterXXL
if anyone have a better one just send it to me.
2020-12-13Update for 5.09.33.59[Kiwi233]
2020-12-10add the option to disable input filter (#365)botn365
2020-11-27feat(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-20change(GT)Texture changeDreamMasterXXL
Intank texture changed Titanum Gearbox changed
2020-11-20fix(GT)change Color of the Extreme CasingsDreamMasterXXL
bump version
2020-11-20Merge branch 'experimental' into TESTDreamMasterXXL
2020-11-19Change all the multi tooltips over. Also changed tooltip class a bitPrometheus0000000
2020-11-18Add new method of displaying MB tooltips. LCR as example for nowPrometheus0000000
2020-11-03Added IV HOG only LCEPrometheus0000000
2020-10-13better localisation handelingkorneel vandamme
2020-10-12update lang filebotn365
2020-09-25fixed data bank achievementboubou19
2020-07-26fix(gregtech)machineparts uevDreamMasterXXL
fix uev machineparts texture UEV Electric Piston has 2 pixels miscoloured #6443 https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6443
2020-07-26fix(gregtech)piston uevDreamMasterXXL
fix uev piston texture UEV Electric Piston has 2 pixels miscoloured #6443 https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/6443
2020-07-23fix(Gregtech)add localizerDreamMasterXXL
add missing localizer for assembly line/tt research station
2020-07-23change(gregtech)texture from Raw DD BlockDreamMasterXXL
2020-07-23feat(Gregtech) add Raw DD Portal BlockDreamMasterXXL
Add Raw Poatal Block for DD Infusion recipe
2020-06-01Added gui's for the rest of em covers.moller21
2020-05-24Update zh_CN.lang[Kiwi233]
2020-05-16Add new Autoclave TextureDreamMasterXXL
2020-05-10more HEE bees and some fixesDreamMasterXXL
2020-05-10Merge branch 'experimental' into HEE-BeesDreamMasterXXL
2020-05-10Start to add new HEE Bees for Ender Dust, Ectoplasma and Arcane ShardsDreamMasterXXL