Skip to content

Commit

Permalink
Update version, fix jeweled GUI texture
Browse files Browse the repository at this point in the history
That was really annoying.  Apparently, Git doesn't pick up case changes
as a rename
  • Loading branch information
multiplemonomials committed Jun 21, 2016
1 parent 112f5d5 commit edf24ae
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions AP Client 1.8 Template.launch → AP Client 1.8.launch
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_START_ON_FIRST_THREAD" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="GradleStart"/>
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="--username=&lt;username&gt; --password=&lt;password&gt;"/>
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="--username=[email protected] --password=Ut2WNHyAaEWA"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="AdditionalPipesBC"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Dorg.lwjgl.librarypath=${env_var:userprofile}${env_var:HOME}\.gradle\caches\minecraft\net\minecraft\minecraft_natives\1.8.9"/>
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Dorg.lwjgl.librarypath=${env_var:userprofile}${env_var:HOME}\.gradle\caches\minecraft\net\minecraft\minecraft_natives\1.8"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:AdditionalPipesBC/minecraft}"/>
</launchConfiguration>
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle.forge'

version = "5.0.0"
group= "com.buildcraft.additionalpipes" // http://maven.apache.org/guides/mini/guide-naming-conventions.html
group= "com.buildcraft.additionalpipes"
archivesBaseName = "additionalpipes"

minecraft {
Expand All @@ -22,7 +22,7 @@ minecraft {
mappings = "stable_20"

}

// http://maven.apache.org/guides/mini/guide-naming-conventions.html
repositories {
ivy {
name "BuildCraft"
Expand All @@ -31,7 +31,7 @@ repositories {
}

dependencies {
compile name: 'buildcraft', version: "7.2.5", classifier: "dev", ext: 'jar'
compile name: 'buildcraft', version: "7.2.7", classifier: "dev", ext: 'jar'
}

sourceSets {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public static void registerIcons(TextureMap map)
public static final ResourceLocation GUI_ADVANCEDWOOD = new ResourceLocation("additionalpipes", TEXTURE_PATH + "/gui/advancedWoodGui.png");
public static final ResourceLocation GUI_DISTRIBUTION = new ResourceLocation("additionalpipes", TEXTURE_PATH + "/gui/distributionGui.png");
public static final ResourceLocation GUI_PRIORITY = new ResourceLocation("additionalpipes", TEXTURE_PATH + "/gui/priorityGui.png");
public static final ResourceLocation GUI_JEWELED = new ResourceLocation("additionalpipes", TEXTURE_PATH + "/gui/jeweledPipeGui.png");
public static final ResourceLocation GUI_JEWELED = new ResourceLocation("additionalpipes", TEXTURE_PATH + "/gui/jeweledGui.png");

public static final ResourceLocation GUI_OUTLINE_JEWELED[] = new ResourceLocation[GuiJeweledPipe.NUM_TABS];

Expand Down

0 comments on commit edf24ae

Please sign in to comment.