Skip to content

Commit

Permalink
Merge pull request #3266 from refinedmods/develop
Browse files Browse the repository at this point in the history
v1.10.1
  • Loading branch information
raoulvdberge authored Mar 26, 2022
2 parents 0a5ae5b + 6aa8b6f commit 5ae9924
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
12 changes: 8 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,14 @@ body:
- type: dropdown
id: minecraft
attributes:
label: What Minecraft version is this happening on?
options:
- Minecraft 1.18.1
- Minecraft 1.16.5
label: What Minecraft version is this happening on?
description: |
If your Minecraft version isn't listed here, it means that it's no longer supported. In that case, don't create an issue.
options:
- Minecraft 1.18.1
- Minecraft 1.16.5
validations:
required: true
- type: input
id: forge
attributes:
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
blank_issues_enabled: true
blank_issues_enabled: false
contact_links:
- name: Discord Community Support
url: https://discordapp.com/invite/VYzsydb
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### Fixed

- Fixed crash when opening alternatives screen

## [v1.10.0] - 2022-01-25

### Fixed

- Fixed multiple bugs related to transferring recipes into the Crafting Grid.
- Processing patterns now use the order of items/fluids specified in the pattern
by [@necauqua](https://github.com/necauqua) and [@Darkere](https://github.com/Darkere).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ apply plugin: 'maven-publish'

group = 'com.refinedmods'
archivesBaseName = 'refinedstorage'
version = '1.10.0'
version = '1.10.1'

if (System.getenv('GITHUB_SHA') != null) {
version += '+' + System.getenv('GITHUB_SHA').substring(0, 7)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
import com.mojang.blaze3d.systems.RenderSystem;
import com.mojang.blaze3d.vertex.PoseStack;
import com.refinedmods.refinedstorage.RS;
import com.refinedmods.refinedstorage.blockentity.config.IType;
import com.refinedmods.refinedstorage.blockentity.data.BlockEntitySynchronizationManager;
import com.refinedmods.refinedstorage.blockentity.grid.GridBlockEntity;
import com.refinedmods.refinedstorage.container.AlternativesContainerMenu;
import com.refinedmods.refinedstorage.render.FluidRenderer;
import com.refinedmods.refinedstorage.screen.BaseScreen;
import com.refinedmods.refinedstorage.screen.widget.CheckboxWidget;
import com.refinedmods.refinedstorage.screen.widget.ScrollbarWidget;
import com.refinedmods.refinedstorage.blockentity.config.IType;
import com.refinedmods.refinedstorage.blockentity.data.BlockEntitySynchronizationManager;
import com.refinedmods.refinedstorage.blockentity.grid.GridBlockEntity;
import com.refinedmods.refinedstorage.util.RenderUtils;
import net.minecraft.client.gui.components.Button;
import net.minecraft.client.gui.screens.Screen;
Expand Down Expand Up @@ -47,7 +47,7 @@ public class AlternativesScreen extends BaseScreen<AlternativesContainerMenu> {
private FluidStack fluid;

private AlternativesScreen(Screen parent, Player player, Component title) {
super(new AlternativesContainerMenu(player), 175, 143, null, title);
super(new AlternativesContainerMenu(player), 175, 143, player.getInventory(), title);

this.parent = parent;
this.scrollbar = new ScrollbarWidget(this, 155, 20, 12, 89);
Expand Down

0 comments on commit 5ae9924

Please sign in to comment.