Skip to content

Commit

Permalink
Merge pull request #10 from refinedmods/release/0.1.3
Browse files Browse the repository at this point in the history
Release v0.1.3
  • Loading branch information
raoulvdberge authored Jun 20, 2024
2 parents c301ba9 + 35e479b commit 3ac2de6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 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]

## [0.1.3] - 2024-06-20

### Fixed

- Recipe transfer not working.

## [0.1.2] - 2024-06-20

### Fixed
Expand All @@ -30,7 +36,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Support for REI collapsable entries.
- Grid / REI search box synchronization options.

[Unreleased]: https://github.com/refinedmods/refinedstorage-rei-integration/compare/v0.1.2...HEAD
[Unreleased]: https://github.com/refinedmods/refinedstorage-rei-integration/compare/v0.1.3...HEAD

[0.1.3]: https://github.com/refinedmods/refinedstorage-rei-integration/compare/v0.1.2...v0.1.3

[0.1.2]: https://github.com/refinedmods/refinedstorage-rei-integration/compare/v0.1.1...v0.1.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.awt.Color;
import java.util.List;
import java.util.stream.Collectors;

import com.mojang.blaze3d.vertex.PoseStack;
import com.refinedmods.refinedstorage2.api.resource.list.ResourceList;
Expand Down Expand Up @@ -83,7 +84,7 @@ private boolean isAvailable(final ResourceList available, final EntryIngredient
private List<List<ItemResource>> getInputs(final List<EntryIngredient> ingredients) {
return ingredients.stream()
.map(this::convertIngredientToItemStacks)
.map(list -> list.stream().map(ItemResource::ofItemStack).toList())
.map(list -> list.stream().map(ItemResource::ofItemStack).collect(Collectors.toList()))
.toList();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.awt.Color;
import java.util.List;
import java.util.stream.Collectors;

import com.mojang.blaze3d.vertex.PoseStack;
import com.refinedmods.refinedstorage2.api.resource.list.ResourceList;
Expand Down Expand Up @@ -83,7 +84,7 @@ private boolean isAvailable(final ResourceList available, final EntryIngredient
private List<List<ItemResource>> getInputs(final List<EntryIngredient> ingredients) {
return ingredients.stream()
.map(this::convertIngredientToItemStacks)
.map(list -> list.stream().map(ItemResource::ofItemStack).toList())
.map(list -> list.stream().map(ItemResource::ofItemStack).collect(Collectors.toList()))
.toList();
}

Expand Down

0 comments on commit 3ac2de6

Please sign in to comment.