Skip to content

Commit 025f546

Browse files
committed
Merge branch '2022.2' into 2022.3
2 parents fed3d34 + 36cc3d4 commit 025f546

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ kotlin.code.style=official
1414
ideaVersion = 2022.3
1515
ideaVersionName = 2022.3
1616

17-
coreVersion = 1.6.2
17+
coreVersion = 1.6.3
1818
downloadIdeaSources = true
1919

2020
pluginTomlVersion = 223.7571.59

readme.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ Minecraft Development for IntelliJ
1111
<td align="right"><b>Main Build</b></td>
1212
<td colspan="2"><a href="https://ci.denwav.dev/viewType.html?buildTypeId=MinecraftDev_Build"><img src="https://ci.denwav.dev/app/rest/builds/buildType:(id:MinecraftDev_Build)/statusIcon.svg" alt="Teamcity Build Status" /></a></td>
1313
</tr>
14-
<tr>
15-
<td align="left">2022.1</td>
16-
<td align="left"><a href="https://ci.denwav.dev/viewType.html?buildTypeId=MinecraftDev_Nightly_20221"><img src="https://ci.denwav.dev/app/rest/builds/buildType:(id:MinecraftDev_Nightly_20221)/statusIcon.svg" alt="2022.1 Nightly Status" /></a></td>
17-
</tr>
1814
<tr>
1915
<td align="left">2022.2</td>
2016
<td align="left"><a href="https://ci.denwav.dev/viewType.html?buildTypeId=MinecraftDev_Nightly_20222"><img src="https://ci.denwav.dev/app/rest/builds/buildType:(id:MinecraftDev_Nightly_20222)/statusIcon.svg" alt="2022.2 Nightly Status" /></a></td>
@@ -35,7 +31,7 @@ Minecraft Development for IntelliJ
3531
</tr>
3632
</table>
3733

38-
Info and Documentation [![Current Release](https://img.shields.io/badge/release-1.6.2-orange.svg?style=flat-square)](https://plugins.jetbrains.com/plugin/8327)
34+
Info and Documentation [![Current Release](https://img.shields.io/badge/release-1.6.3-orange.svg?style=flat-square)](https://plugins.jetbrains.com/plugin/8327)
3935
----------------------
4036

4137
<a href="https://discord.gg/j6UNcfr"><img src="https://i.imgur.com/JXu9C1G.png" height="48px"></img></a>

src/main/resources/fileTemplates/j2ee/fabric/fabric_build.gradle.ft

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,14 @@ dependencies {
3232

3333
processResources {
3434
inputs.property "version", project.version
35+
inputs.property "minecraft_version", project.minecraft_version
36+
inputs.property "loader_version", project.loader_version
3537
filteringCharset "UTF-8"
3638

3739
filesMatching("fabric.mod.json") {
38-
expand "version": project.version
40+
expand "version": project.version,
41+
"minecraft_version": project.minecraft_version,
42+
"loader_version": project.loader_version
3943
}
4044
}
4145

src/main/resources/fileTemplates/j2ee/fabric/fabric_mod.json.ft

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
#end
2323

2424
"depends": {
25-
"fabricloader": ">=${LOADER_VERSION}",
25+
"fabricloader": ">=${d}{loader_version}",
2626
#if (${API_VERSION})
2727
"fabric": "*",
2828
#end
29-
"minecraft": "${MC_VERSION}"
29+
"minecraft": "${d}{minecraft_version}"
3030
}
3131
}

0 commit comments

Comments
 (0)