Skip to content

Commit ab3b2db

Browse files
author
Marko Dujović
committed
1.3.6 Update:
- German translations by Zijuna - Compatible with Forge 31.2.9
1 parent 97d4807 commit ab3b2db

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ apply plugin: 'net.minecraftforge.gradle'
1313
apply plugin: 'idea'
1414
apply plugin: 'maven-publish'
1515

16-
version = '1.3.5'
16+
version = '1.3.6'
1717
group = 'com.codenamerevy.additionalbars' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
1818
archivesBaseName = 'additionalbars'
1919

2020
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.
2121

2222
minecraft {
23-
mappings channel: 'snapshot', version: '20200429-1.15.1'
23+
mappings channel: 'snapshot', version: '20200609-1.15.1'
2424
runs {
2525
client {
2626
workingDirectory project.file('run')
@@ -75,7 +75,7 @@ minecraft {
7575
}
7676

7777
dependencies {
78-
minecraft 'net.minecraftforge:forge:1.15.2-31.1.63'
78+
minecraft 'net.minecraftforge:forge:1.15.2-31.2.9'
7979
}
8080

8181
// Example for how to get properties into the manifest for reading by the runtime..

changelog.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Release: 1.3.6
2+
3+
- German translations by Zijuna
4+
- Compatible with Forge 31.2.9
5+
6+
=========
7+
Release: 1.3.5
8+
9+
- Reworked model JSONs (Greatly reduced mod size)
10+
- Added vanilla Iron Bars to "metallic" tags
11+
12+
=========
113
Release: 1.3.4
214

315
- Same changes as before

src/main/java/com/codenamerevy/additionalbars/AdditionalBars.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@
1515
import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent;
1616
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;
1717

18-
//Note to self: Never and I repeat NEVER copy and paste large-code model JSONs. ALWAYS use parent models.
19-
//TODO #2: Make some of the Horizontal bars orientable (Related to #1)
20-
21-
@SuppressWarnings("all")
18+
//TODO #1: Make some of the Horizontal bars orientable
19+
//@SuppressWarnings("all")
2220
@Mod(Ref.MODID)
2321
public class AdditionalBars
2422
{
@@ -43,7 +41,7 @@ private void commonSetup(final FMLCommonSetupEvent event)
4341

4442
private void clientSetup(final FMLClientSetupEvent event)
4543
{
46-
//TODO #3: This. WTF is this mess here?!?
44+
//TODO #2: This. WTF is this mess here?!?
4745

4846
//Dev
4947
RenderTypeLookup.setRenderLayer(BlockInit.DEV_HORIZONTAL_BARS, RenderType.getCutout());

src/main/resources/META-INF/mods.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ logoFile="logo.png" #optional
1010
credits='''
1111
CodenameRevy (Mod Developer),
1212
ruchom4u (Spanish Translations),
13-
fantasyair18 (Chinese Traditional (Taiwan) Translations)
14-
TheDirectorX (Russian Translations)
13+
fantasyair18 (Chinese Traditional (Taiwan) Translations),
14+
TheDirectorX (Russian Translations),
15+
Zijuna (German Translations),
1516
WadeMason''' #optional
1617
authors="CodenameRevy" #optional
1718
description='''

0 commit comments

Comments
 (0)