Skip to content

Commit

Permalink
1.3.6 final
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSpring committed Dec 9, 2014
1 parent 3f06684 commit 7481c98
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
42 changes: 21 additions & 21 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ buildscript {

apply plugin: 'forge'

version = "1.3.5-1.7.2-10"
group= "dk.mrspring.kitchen" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
version = "1.3.6-1.7.2-10"
group = "dk.mrspring.kitchen" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = "TheKitchenMod"

minecraft {
Expand All @@ -31,7 +31,7 @@ dependencies {
// or you may define them like so..
//compile "some.group:artifact:version:classifier"
//compile "some.group:artifact:version"

// real examples
//compile 'com.mod-buildcraft:buildcraft:6.0.8:dev' // adds buildcraft to the dev env
//compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env
Expand All @@ -43,21 +43,21 @@ dependencies {
}

processResources
{
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version

// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
// replace version and mcversion
expand 'version':project.version, 'mcversion':project.minecraft.version
}
// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
{
// this will ensure that this task is redone when the versions change.
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version

// replace stuff in mcmod.info, nothing else
from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'

// replace version and mcversion
expand 'version': project.version, 'mcversion': project.minecraft.version
}

// copy everything else, thats not the mcmod.info
from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
2 changes: 1 addition & 1 deletion src/main/java/dk/mrspring/kitchen/ModInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class ModInfo
// The name of the Mod
public static final String name = "Kitchen";
// The version of the Mod
public static final String version = "1.3.5";
public static final String version = "1.3.6";

public static String toTexture(String name)
{
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "kitchen",
"name": "The Kitchen Mod",
"description": "The Kitchen Mod allows you to make fully customizable modular sandwiches. With each layer you put in it, the more it heals your hunger. And you might be lucky to uncover on of the special cominations.",
"version": "1.3.5",
"version": "1.3.6",
"mcversion": "1.7.10",
"url": "http://www.mrspring.dk/mods/kitchen/",
"updateUrl": "",
Expand Down

0 comments on commit 7481c98

Please sign in to comment.