aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/GT_Mod.java
AgeCommit message (Collapse)Author
2021-12-01Revert version tag automationJohann Bernhardt
2021-12-01Add version replacementJohann Bernhardt
2021-12-01Merge remote-tracking branch 'origin/experimental' into unify-build-scriptJohann Bernhardt
# Conflicts: # .github/workflows/gradle.yml # build.gradle # build.properties
2021-12-01Add a new ghost slot to single block machines for config circuitsGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-11-28fixed config oversightboubou_19
2021-11-28moved client GT config to the right placeboubou_19
2021-11-25changed singleblock generators to use per second for more precisionboubou_19
2021-11-25changed single block boilers to use per second for more precisionboubou_19
2021-11-25changed the charcoal pit to use per second for more precisionboubou_19
2021-11-25changed EBF to use per second for more precisionboubou_19
2021-11-25changed pyrolyse oven to use per second for more precisionboubou_19
2021-11-25changed multismelter to use per second for more precisionboubou_19
2021-11-25changed the gas turbine to use per second for more precisionboubou_19
2021-11-25changed the Extreme Combustion Generator to use per second for more precisionboubou_19
2021-11-25changed the Combustion Generator to use epr second for more precisionboubou_19
2021-11-25changed the BBF to use per second for more precisionboubou_19
2021-11-25changed implosion compressor to user per second for more precisionboubou_19
2021-11-25changed large boilers to use per second for more precisionboubou_19
2021-11-24Merge remote-tracking branch 'origin/experimental' into unify-build-scriptJohann Bernhardt
# Conflicts: # .gitignore # build.gradle # build.properties
2021-11-24made it easier to edit default values in codeboubou_19
2021-11-24centralized pollution for generatorsboubou_19
2021-11-24centralized pollution for GT boilersboubou_19
2021-11-23centralized pollution for GT multiesboubou_19
2021-11-23added configs to disabled dirt particles and pollution fog renderingboubou_19
2021-11-17convert cover data storage to a full nbt tagGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-11-16underground oil and pollution persistence form reworkGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-11-14Require each LDP endpoints to be at least 64 blocks awayGlease
2021-11-07Unify build script draftJohann Bernhardt
2021-11-06Make GT_LanguageManager injects into correct languageRaphael
2021-10-30Add support for more fluidsD-Cysteine
2021-10-21Allow GT cells to work for any fluidD-Cysteine
2021-10-13add indicator on hatchesGlodBlock
2021-09-08Allow configurable non-GT blocks in cleanroom structurerepo_alt
2021-08-12Added liquid rendering inside Large Fluid PipeTimeConqueror
2021-08-11Optionally disable automation access to the digital chests with storage ↵repo_alt
buses attached
2021-07-30re-enable flipping, but add an option to render them not flippedGlease
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-07-30feat(texture API): integrate ExtendedFacing rotationLé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-30Initial StructureLib integrationGlease
2021-07-14Add option to not change GUI color based on paintGlease
2021-05-21feat(render): glowing texture rendererLéa Gris
Implement a glowing texture renderer class Add option to not render glowing textures
2021-05-15Merge pull request #533 from GTNewHorizons/update-fluid-displayMartin Robertz
Allow client to proactively request fluid display updates
2021-05-16Remove ic2 iridium ore to iridium ingot recipeGlease
2021-05-15Allow client to proactively request fluid display updatesGlease
Currently client will only request update on blocks being looked at. Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
2021-04-27fix(textfiles): add missing neline at end of filesLé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-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-01-19ME output busrepo_alt
2021-01-18Merge pull request #411 from GTNewHorizons/remove_modular_armorMartin Robertz
Debloat - Remove Modular Armor (It's buggy and not in use anyway)
2021-01-17Optionally hide assline recipes (defaults to false). Should have no impact ↵Jason Mitchell
on the ability to craft them.
2021-01-17Debloat - Remove Modular Armor (It's buggy and not in use anyway)Jason Mitchell
2021-01-17Added immutable version of getOres method, which is faster due to not using ↵TimeConqueror
#addAll