Bump to 1.5.19, update Forge and dependencies

This commit is contained in:
raoulvdberge
2017-09-26 20:45:04 +02:00
parent 8fa3551927
commit 74fda65889
6 changed files with 14 additions and 11 deletions

View File

@@ -1,5 +1,8 @@
# Refined Storage Changelog
### 1.5.19
- Updated Forge to 2493 (MC 1.12.2) (raoulvdberge)
### 1.5.18
- Added Project E integration for the External Storage on the Transmutation Table (raoulvdberge)
- Added Project E integration for the energy values of Solderer items (raoulvdberge)

View File

@@ -20,7 +20,7 @@ apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'net.minecraftforge.gradle.forge'
version = "1.5.18"
version = "1.5.19"
group = "refinedstorage"
archivesBaseName = "refinedstorage"
@@ -28,10 +28,10 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8
minecraft {
version = "1.12.1-14.22.0.2444"
version = "1.12.2-14.23.0.2493"
runDir = "run"
useDepAts = true
mappings = "snapshot_20170807"
mappings = "snapshot_20170926"
}
repositories {
@@ -54,11 +54,11 @@ repositories {
}
dependencies {
deobfCompile "mezz.jei:jei_1.12:4.7.5.84:api"
runtime "mezz.jei:jei_1.12:4.7.5.84"
deobfCompile "mezz.jei:jei_1.12.2:4.7.11.101:api"
runtime "mezz.jei:jei_1.12.2:4.7.11.101"
deobfCompile "MCMultiPart2:MCMultiPart:2.2.2"
deobfCompile "li.cil.oc:OpenComputers:MC1.12.1-1.7.0.4:api"
deobfCompile "com.jaquadro.minecraft.storagedrawers:StorageDrawers:1.12-5.2.9:api"
deobfCompile "com.jaquadro.minecraft.storagedrawers:StorageDrawers:1.12.1-5.3.3:api"
compile "inventory-tweaks:InventoryTweaks:1.63+beta.107:api"
}

View File

@@ -21,7 +21,7 @@ public final class RS {
}
public static final String ID = "refinedstorage";
public static final String VERSION = "1.5.18";
public static final String VERSION = "1.5.19";
public static final String DEPENDENCIES = "required-after:forge@[14.21.0.2363,);after:mcmultipart@[2.2.1,);after:storagedrawers@[1.12-5.2.2,);";
public static final String GUI_FACTORY = "com.raoulvdberge.refinedstorage.gui.config.ModGuiFactory";
public static final String UPDATE_JSON = "https://refinedstorage.raoulvdberge.com/update";

View File

@@ -58,6 +58,6 @@ public class SoldererRecipeLoader {
}
return true;
});
}, false, false);
}
}

View File

@@ -72,7 +72,7 @@ public class ProxyClient extends ProxyCommon {
CraftingPattern pattern = ItemPattern.getPatternFromCache(Minecraft.getMinecraft().world, stack);
if (BakedModelPattern.canDisplayPatternOutput(pattern)) {
int color = itemColors.getColorFromItemstack(pattern.getOutputs().get(0), tintIndex);
int color = itemColors.colorMultiplier(pattern.getOutputs().get(0), tintIndex);
if (color != -1) {
return color;

View File

@@ -3,8 +3,8 @@
"modid": "refinedstorage",
"name": "Refined Storage",
"description": "An elegant solution to your hoarding problem",
"version": "1.5.18",
"mcversion": "1.12.1",
"version": "1.5.19",
"mcversion": "1.12.2",
"url": "https://refinedstorage.raoulvdberge.com",
"updateUrl": "",
"authorList": ["Refined Storage contributors"],