Skip to content

Commit

Permalink
Merge pull request #538 from refinedmods/feat/GH-537/jei-addon
Browse files Browse the repository at this point in the history
chore: move JEI integration to addon mod
  • Loading branch information
raoulvdberge authored Jun 3, 2024
2 parents 43b66bb + a0f3aa1 commit b80e845
Show file tree
Hide file tree
Showing 23 changed files with 4 additions and 673 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Removed

- The JEI integration has been removed and will be moved to an addon mod.

## [2.0.0-milestone.3.6] - 2024-05-18

### Added
Expand Down
8 changes: 0 additions & 8 deletions refinedstorage2-platform-common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
archivesBaseName = 'refinedstorage2-platform-common'

repositories {
maven {
name = 'JEI'
url = "https://maven.blamejared.com/"
}
}

commonProject()

dependencies {
compileOnly common.jei.api
implementation project(':refinedstorage2-platform-api')
implementation project(':refinedstorage2-core-api')
implementation project(':refinedstorage2-resource-api')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@ public interface Platform {

Optional<ContainedFluid> getContainedFluid(ItemStack stack);

Optional<FluidResource> convertJeiIngredientToFluid(Object ingredient);

Optional<ItemStack> convertToBucket(FluidResource fluidResource);

TransferManager createTransferManager(AbstractContainerMenu containerMenu);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,6 @@ public Optional<ContainedFluid> getContainedFluid(final ItemStack stack) {
return ensureLoaded().getContainedFluid(stack);
}

@Override
public Optional<FluidResource> convertJeiIngredientToFluid(final Object ingredient) {
return ensureLoaded().convertJeiIngredientToFluid(ingredient);
}

@Override
public Optional<ItemStack> convertToBucket(final FluidResource fluidResource) {
return ensureLoaded().convertToBucket(fluidResource);
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit b80e845

Please sign in to comment.