Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-12-01 | Revert version tag automation | Johann Bernhardt | |
2021-12-01 | Add version replacement | Johann Bernhardt | |
2021-12-01 | Merge remote-tracking branch 'origin/experimental' into unify-build-script | Johann Bernhardt | |
# Conflicts: # .github/workflows/gradle.yml # build.gradle # build.properties | |||
2021-12-01 | Add a new ghost slot to single block machines for config circuits | Glease | |
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> | |||
2021-11-28 | fixed config oversight | boubou_19 | |
2021-11-28 | moved client GT config to the right place | boubou_19 | |
2021-11-25 | changed singleblock generators to use per second for more precision | boubou_19 | |
2021-11-25 | changed single block boilers to use per second for more precision | boubou_19 | |
2021-11-25 | changed the charcoal pit to use per second for more precision | boubou_19 | |
2021-11-25 | changed EBF to use per second for more precision | boubou_19 | |
2021-11-25 | changed pyrolyse oven to use per second for more precision | boubou_19 | |
2021-11-25 | changed multismelter to use per second for more precision | boubou_19 | |
2021-11-25 | changed the gas turbine to use per second for more precision | boubou_19 | |
2021-11-25 | changed the Extreme Combustion Generator to use per second for more precision | boubou_19 | |
2021-11-25 | changed the Combustion Generator to use epr second for more precision | boubou_19 | |
2021-11-25 | changed the BBF to use per second for more precision | boubou_19 | |
2021-11-25 | changed implosion compressor to user per second for more precision | boubou_19 | |
2021-11-25 | changed large boilers to use per second for more precision | boubou_19 | |
2021-11-24 | Merge remote-tracking branch 'origin/experimental' into unify-build-script | Johann Bernhardt | |
# Conflicts: # .gitignore # build.gradle # build.properties | |||
2021-11-24 | made it easier to edit default values in code | boubou_19 | |
2021-11-24 | centralized pollution for generators | boubou_19 | |
2021-11-24 | centralized pollution for GT boilers | boubou_19 | |
2021-11-23 | centralized pollution for GT multies | boubou_19 | |
2021-11-23 | added configs to disabled dirt particles and pollution fog rendering | boubou_19 | |
2021-11-17 | convert cover data storage to a full nbt tag | Glease | |
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> | |||
2021-11-16 | underground oil and pollution persistence form rework | Glease | |
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> | |||
2021-11-14 | Require each LDP endpoints to be at least 64 blocks away | Glease | |
2021-11-07 | Unify build script draft | Johann Bernhardt | |
2021-11-06 | Make GT_LanguageManager injects into correct language | Raphael | |
2021-10-30 | Add support for more fluids | D-Cysteine | |
2021-10-21 | Allow GT cells to work for any fluid | D-Cysteine | |
2021-10-13 | add indicator on hatches | GlodBlock | |
2021-09-08 | Allow configurable non-GT blocks in cleanroom structure | repo_alt | |
2021-08-12 | Added liquid rendering inside Large Fluid Pipe | TimeConqueror | |
2021-08-11 | Optionally disable automation access to the digital chests with storage ↵ | repo_alt | |
buses attached | |||
2021-07-30 | re-enable flipping, but add an option to render them not flipped | Glease | |
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> | |||
2021-07-30 | feat(texture API): integrate ExtendedFacing rotation | Léa Gris | |
Add ExtendedFacing rotation to the texture API. Rotatable ExtendedFacing textures can be created with: ```java TextureFactory.builder().addIcon(IICon).extFacing().build(); ``` Improve and unify internal implementation of standard oriented and glow textures. | |||
2021-07-30 | Initial StructureLib integration | Glease | |
2021-07-14 | Add option to not change GUI color based on paint | Glease | |
2021-05-21 | feat(render): glowing texture renderer | Léa Gris | |
Implement a glowing texture renderer class Add option to not render glowing textures | |||
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 | 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-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-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-01-19 | ME output bus | repo_alt | |
2021-01-18 | Merge pull request #411 from GTNewHorizons/remove_modular_armor | Martin Robertz | |
Debloat - Remove Modular Armor (It's buggy and not in use anyway) | |||
2021-01-17 | Optionally hide assline recipes (defaults to false). Should have no impact ↵ | Jason Mitchell | |
on the ability to craft them. | |||
2021-01-17 | Debloat - Remove Modular Armor (It's buggy and not in use anyway) | Jason Mitchell | |
2021-01-17 | Added immutable version of getOres method, which is faster due to not using ↵ | TimeConqueror | |
#addAll |