Skip to content

Commit

Permalink
Merge pull request #560 from refinedmods/release/2.0.0-milestone.3.11
Browse files Browse the repository at this point in the history
Release v2.0.0-milestone.3.11
  • Loading branch information
raoulvdberge authored Jun 16, 2024
2 parents 37e7c96 + 0ec7f4a commit 3013a6f
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 163 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.0.0-milestone.3.11] - 2024-06-16

### Removed

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

## [2.0.0-milestone.3.10] - 2024-06-16

## [2.0.0-milestone.3.9] - 2024-06-09
Expand Down Expand Up @@ -592,7 +598,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- The Grid can now use smooth scrolling.
- The Grid now has syntax highlighting for the search query.

[Unreleased]: https://github.com/refinedmods/refinedstorage2/compare/v2.0.0-milestone.3.10...HEAD
[Unreleased]: https://github.com/refinedmods/refinedstorage2/compare/v2.0.0-milestone.3.11...HEAD

[2.0.0-milestone.3.11]: https://github.com/refinedmods/refinedstorage2/compare/v2.0.0-milestone.3.10...v2.0.0-milestone.3.11

[2.0.0-milestone.3.10]: https://github.com/refinedmods/refinedstorage2/compare/v2.0.0-milestone.3.9...v2.0.0-milestone.3.10

Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
noIndiumVersion=1.1.0+1.20.4
trinketsVersion=3.8.0
cardinalComponentsVersion=5.4.0
curiosVersion=7.1.0+1.20.4
# Gradle
org.gradle.jvmargs=-Xmx1G
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@
"key.refinedstorage2.clear_crafting_grid_matrix_to_inventory": "Clear Crafting Grid matrix to inventory",
"key.refinedstorage2.open_wireless_grid": "Open Wireless Grid",
"refinedstorage2.subtitle.wrench": "Wrench used",
"curios.identifier.refinedstorage2": "Refined Storage 2",
"trinkets.slot.refinedstorage2.wireless": "Refined Storage 2",
"permission.refinedstorage2.insert": "Insert",
"permission.refinedstorage2.insert.description": "Whether the player can insert resources in a network.",
Expand Down
16 changes: 0 additions & 16 deletions refinedstorage2-platform-forge/build.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
plugins {
id 'java-library'
}

repositories {
maven {
name = 'Curios'
url = "https://maven.theillusivec4.top/"
}
}

forgeProject("refinedstorage2", project(":refinedstorage2-platform-common"), apis, compileApis)

archivesBaseName = 'refinedstorage2-platform-forge'

dependencies {
runtimeOnly "top.theillusivec4.curios:curios-neoforge:${curiosVersion}"
compileOnlyApi "top.theillusivec4.curios:curios-neoforge:${curiosVersion}:api"
}

enablePublishing()
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
import com.refinedmods.refinedstorage2.platform.forge.storage.externalstorage.ItemHandlerPlatformExternalStorageProviderFactory;
import com.refinedmods.refinedstorage2.platform.forge.storage.portablegrid.ForgePortableGridBlockEntity;
import com.refinedmods.refinedstorage2.platform.forge.support.energy.EnergyStorageAdapter;
import com.refinedmods.refinedstorage2.platform.forge.support.network.bounditem.CuriosSlotReferenceFactory;
import com.refinedmods.refinedstorage2.platform.forge.support.network.bounditem.CuriosSlotReferenceProvider;
import com.refinedmods.refinedstorage2.platform.forge.support.packet.c2s.CraftingGridClearPacket;
import com.refinedmods.refinedstorage2.platform.forge.support.packet.c2s.CraftingGridRecipeTransferPacket;
import com.refinedmods.refinedstorage2.platform.forge.support.packet.c2s.GridExtractPacket;
Expand Down Expand Up @@ -383,18 +381,6 @@ private void registerTickHandler() {
NeoForge.EVENT_BUS.addListener(this::onServerTick);
}

@Override
protected void registerSlotReferenceProviders() {
super.registerSlotReferenceProviders();
CuriosSlotReferenceProvider.create().ifPresent(slotReferenceProvider -> {
PlatformApi.INSTANCE.getSlotReferenceFactoryRegistry().register(
createIdentifier("curios"),
CuriosSlotReferenceFactory.INSTANCE
);
PlatformApi.INSTANCE.addSlotReferenceProvider(slotReferenceProvider);
});
}

@SubscribeEvent
public void onCommonSetup(final FMLCommonSetupEvent e) {
registerUpgradeMappings();
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 3013a6f

Please sign in to comment.