File tree Expand file tree Collapse file tree 4 files changed +15
-8
lines changed
build-logic/src/main/kotlin Expand file tree Collapse file tree 4 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 5454
5555/docs /
5656/.gradle-home /
57+ /.gradle-user-home /
Original file line number Diff line number Diff line change 11# ExtraSounds Next - Changelog
22
3- ## [ 1.5.0]
3+ ## [ 1.5.0 - 1.5.2 ]
44
55** New Features**
66- Added sound support for popular mods:
1515** Technical Changes**
1616- Migrated to Stonecutter architecture for better multi-version support
1717
18- ## [ 1.5.1]
19-
2018** Fixes**
2119- Sound switches not working properly
22-
23- ## [ 1.5.2]
24-
2520** Chores**
2621- Correct mixin refmap configuration
22+
23+ ## [ 1.5.3]
24+
25+ ** Fixes**
26+ - Fixed Forge jar used development version instead of release version
Original file line number Diff line number Diff line change @@ -87,7 +87,13 @@ abstract class ModPlatformPlugin @Inject constructor() : Plugin<Project> {
8787
8888 val extension = extensions.create(" platform" , ModPlatformExtension ::class .java).apply {
8989 loader.convention(inferredLoader)
90- jarTask.convention(if (inferredLoaderIsFabric) " remapJar" else " jar" )
90+ jarTask.convention(
91+ when (inferredLoader) {
92+ " fabric" -> " remapJar"
93+ " forge" -> " reobfJar"
94+ else -> " jar"
95+ }
96+ )
9197 sourcesJarTask.convention(if (inferredLoaderIsFabric) " remapSourcesJar" else " sourcesJar" )
9298 }
9399
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ org.gradle.configuration-cache=false
55mod.id =extrasounds
66mod.name =ExtraSounds Next
77mod.group =dev.arbor
8- mod.version =1.5.2
8+ mod.version =1.5.3
99mod.channel_tag =
1010mod.authors =Arborsm, stashymane
1111mod.contributors =
You can’t perform that action at this time.
0 commit comments