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