Skip to content

Commit

Permalink
GTCEu 2.8.9 update (#10)
Browse files Browse the repository at this point in the history
* Remove NuclearCraft ASM (GregTechCEu#2467)

* Update zh_cn.lang (GregTechCEu#2445)

* Allow polarizing block -> magnetic block (GregTechCEu#2469)

* Fusion bloom fix & other bloom effect API modifications (GregTechCEu#2470)

* Inital Vintagium Support (GregTechCEu#2463)

* Fix Ore Dict Ingredients When Changing OreDicts with CT & GS (GregTechCEu#2456)

* Fix the large turbine rotor texture (GregTechCEu#2485)

* Small QoL Bee Update (GregTechCEu#2458)

* Fix excessive packets & re-renders with AEHostable parts (GregTechCEu#2487)

* Allow dynamic hatch placement on Distillation Tower (GregTechCEu#2477)

* Add a faster recipe for drilling fluid with distilled water (GregTechCEu#2484)

* Fix input busses saying "Item Auto-Output Enabled" instead of "Item Auto-Input Enabled" (GregTechCEu#2489)

* fix pyrolyse speed (GregTechCEu#2449)

* Brute-force Fix of RAM Usage Problem When Using Alfheim (GregTechCEu#2475)

* Clean up AEHostable part fix (GregTechCEu#2488)

* Various Cleanroom Improvements (GregTechCEu#2480)

* Updating bees using the new Mutation Condition (GregTechCEu#2486)

* Allow MTEs / recipe map workables to directly control their JEI categories (GregTechCEu#2479)

* Rounds energy displayed by TOP (GregTechCEu#1063)

* dependency updates

* Allow recipe logic to set EU/t and speed discounts (GregTechCEu#2496)

* Convert from ASM to Mixins (GregTechCEu#2192)

* Glass tube recycling (GregTechCEu#2509)

* Improve assembly line laser render (GregTechCEu#2495)

* Dynamically change the direction of the arrow in "Manual IO Mode" to reflect the direction of the "IO Mode" (GregTechCEu#2491)

* Support Creative Mode Pick Block (GregTechCEu#2428)

* Add Polybenzimidazole Block Conversion Recipes (GregTechCEu#2511)

* GroovyScript 1.1.0  (GregTechCEu#2506)

* Update build script version to 1720106721 (GregTechCEu#2503)

* workaround GHA bug for tests workflow

* Fix liquid and gas registry key functions overlapping (GregTechCEu#2514)

* Namespaced MTE Registries (GregTechCEu#2505)

* Split assembler and circuit assembler textures (GregTechCEu#2388)

* bump GHA versions (GregTechCEu#2516)

* Fix failing builds due to Vintagium (GregTechCEu#2519)

* Fix Mixin Warnings About `maxShiftBy` (GregTechCEu#2520)
  • Loading branch information
tekcay authored Jul 7, 2024
1 parent c85dd7d commit 1c1dd91
Show file tree
Hide file tree
Showing 205 changed files with 4,267 additions and 876 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build_setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
java-version: 17

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
uses: gradle/actions/setup-gradle@v3
with:
cache-write-only: ${{ inputs.update-cache }}
generate-job-summary: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: ./gradlew build --warning-mode all --build-cache

- name: Publish to GitHub
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: "build/libs/*.jar"
generate_release_notes: true
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ on:
push:
branches:
- master
paths: ['src/main/java/**', 'src/test/**', 'src/api/java/**', 'gradle/**', '**.gradle', 'gradle.properties',
'gradlew**', 'src/main/resources/*_at.cfg']
pull_request:
paths: ['src/main/java/**', 'src/test/**', 'src/api/java/**', 'gradle/**', '**.gradle', 'gradle.properties',
'gradlew**', 'src/main/resources/*_at.cfg']
branches:
- '*'

concurrency:
group: tests-${{ github.head_ref || github.ref }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/update_buildscript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,11 @@ jobs:
- name: Create Pull Request
id: create-pull-request
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.BUILDSCRIPT_UPDATER_TOKEN }}
with:
token: ${{ secrets.BUILDSCRIPT_UPDATER_TOKEN }}
committer: GitHub <[email protected]>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
commit-message: 'update build script version to ${{ steps.version-check.outputs.NEW_VERSION }}'
branch: gha-update-buildscript
title: Update build script version to ${{ steps.version-check.outputs.NEW_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_gradle_wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
uses: actions/checkout@v4

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
uses: gradle/actions/wrapper-validation
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,5 @@ local.properties
run/

logs/

libs/
19 changes: 19 additions & 0 deletions addon.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

minecraft {
injectedTags.put('DEP_VERSION_STRING', "required-after:gregtech@[${modVersion},);")
}

configurations {
compileOnly {
// exclude GNU trove, FastUtil is superior and still updated
exclude group: "net.sf.trove4j", module: "trove4j"
// exclude javax.annotation from findbugs, jetbrains annotations are superior
exclude group: "com.google.code.findbugs", module: "jsr305"
// exclude scala as we don't use it for anything and causes import confusion
exclude group: "org.scala-lang"
exclude group: "org.scala-lang.modules"
exclude group: "org.scala-lang.plugins"
}
}


Loading

0 comments on commit 1c1dd91

Please sign in to comment.