Update for Minecraft 1.10
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
# Refined Storage Changelog
|
||||
|
||||
### 0.8
|
||||
**Features**
|
||||
- Recompile for Minecraft 1.10
|
||||
|
||||
### 0.7.19
|
||||
**Bugfixes**
|
||||
- Fixed controller being buggy with reconnecting
|
||||
|
@@ -12,12 +12,12 @@ buildscript {
|
||||
}
|
||||
apply plugin: 'net.minecraftforge.gradle.forge'
|
||||
|
||||
version = "0.7.19"
|
||||
version = "0.8"
|
||||
group = "refinedstorage"
|
||||
archivesBaseName = "refinedstorage"
|
||||
|
||||
minecraft {
|
||||
version = "1.9.4-12.17.0.1969"
|
||||
version = "1.10-12.18.0.1992-1.10.0"
|
||||
runDir = "run"
|
||||
useDepAts = true
|
||||
mappings = "snapshot_20160518"
|
||||
@@ -30,7 +30,7 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
deobfCompile "mezz.jei:jei_1.9.4:3.6.+"
|
||||
deobfCompile "mezz.jei:jei_1.10:3.7.+"
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 25 KiB |
BIN
screenshots/crafting.png
Executable file
BIN
screenshots/crafting.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
Before Width: | Height: | Size: 245 KiB After Width: | Height: | Size: 76 KiB |
BIN
screenshots/wireless_grid.png
Executable file
BIN
screenshots/wireless_grid.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 56 KiB |
@@ -19,7 +19,7 @@ import refinedstorage.proxy.CommonProxy;
|
||||
@Mod(modid = RefinedStorage.ID, version = RefinedStorage.VERSION)
|
||||
public final class RefinedStorage {
|
||||
public static final String ID = "refinedstorage";
|
||||
public static final String VERSION = "0.7.19";
|
||||
public static final String VERSION = "0.8";
|
||||
|
||||
public static final SimpleNetworkWrapper NETWORK = NetworkRegistry.INSTANCE.newSimpleChannel(ID);
|
||||
|
||||
|
@@ -25,7 +25,7 @@ public class GuiCraftingSettings extends GuiBase {
|
||||
private GuiButton[] incrementButtons = new GuiButton[6];
|
||||
|
||||
public GuiCraftingSettings(GuiGrid gui, EntityPlayer player, ItemStack stack) {
|
||||
super(new ContainerCraftingSettings(player, stack), 170, 99);
|
||||
super(new ContainerCraftingSettings(player, stack), 172, 99);
|
||||
|
||||
this.gui = gui;
|
||||
this.stack = stack;
|
||||
|
@@ -1,9 +1,9 @@
|
||||
package refinedstorage.jei;
|
||||
|
||||
import mezz.jei.api.gui.IGuiIngredient;
|
||||
import mezz.jei.api.gui.IRecipeLayout;
|
||||
import mezz.jei.api.recipe.transfer.IRecipeTransferError;
|
||||
import mezz.jei.api.recipe.transfer.IRecipeTransferHandler;
|
||||
import mezz.jei.gui.ingredients.IGuiIngredient;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.inventory.Container;
|
||||
import net.minecraft.inventory.InventoryCrafting;
|
||||
|
@@ -3,8 +3,8 @@
|
||||
"modid": "refinedstorage",
|
||||
"name": "Refined Storage",
|
||||
"description": "A Minecraft mod all about storage.",
|
||||
"version": "0.7.19",
|
||||
"mcversion": "1.9.4",
|
||||
"version": "0.8",
|
||||
"mcversion": "1.10",
|
||||
"url": "",
|
||||
"updateUrl": "",
|
||||
"authorList": ["Refined Storage contributors"],
|
||||
|
Reference in New Issue
Block a user