Skip to content

Commit

Permalink
1.16.1 + hopefully fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
modmuss50 committed Jun 25, 2020
1 parent cfd9f68 commit 4d66bed
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- uses: eskatos/gradle-command-action@v1
- uses: eskatos/gradle-command-action@v1.3.2
with:
gradle-version: wrapper
arguments: check build publishToMavenLocal --stacktrace
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def ENV = System.getenv()

class Globals {
static def baseVersion = "0.13.1"
static def mcVersion = "1.16"
static def yarnVersion = "+build.1"
static def mcVersion = "1.16.1"
static def yarnVersion = "+build.5"
}

version = Globals.baseVersion + "+" + (ENV.BUILD_NUMBER ? ("build." + ENV.BUILD_NUMBER) : "local") + "-" + getBranch()
Expand Down Expand Up @@ -262,8 +262,8 @@ curseforge {
project {
id = '306612'
changelog = 'A changelog can be found at https://github.com/FabricMC/fabric/commits'
releaseType = 'beta'
addGameVersion '1.16-Snapshot'
releaseType = 'release'
addGameVersion '1.16.1'
addGameVersion 'Fabric'
mainArtifact(file("${project.buildDir}/libs/${archivesBaseName}-${version}.jar")) {
displayName = "[$Globals.mcVersion] Fabric API $Globals.baseVersion build $ENV.BUILD_NUMBER"
Expand Down
2 changes: 1 addition & 1 deletion fabric-renderer-indigo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
archivesBaseName = "fabric-renderer-indigo"
version = getSubprojectVersion(project, "0.3.1")
version = getSubprojectVersion(project, "0.3.2")

dependencies {
compile project(path: ':fabric-api-base', configuration: 'dev')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void renderModel(ItemStack itemStack, Mode transformMode, boolean invert,
*/
private VertexConsumer selectVertexConsumer(RenderLayer layerIn) {
final RenderLayer layer = transformMode == ModelTransformation.Mode.GUI ? TexturedRenderLayers.getEntityTranslucentCull() : layerIn;
return ItemRenderer.getArmorVertexConsumer(vertexConsumerProvider, layer, true, itemStack.hasEnchantmentGlint());
return ItemRenderer.getArmorVertexConsumer(vertexConsumerProvider, layer, true, itemStack.hasGlint());
}

private class Maker extends MutableQuadViewImpl implements QuadEmitter {
Expand Down

0 comments on commit 4d66bed

Please sign in to comment.