Skip to content

Commit 55dda52

Browse files
committed
add neoforge support
1 parent 3f2655a commit 55dda52

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,8 @@ val modMenuVersion = VersionDefinition(
107107
val neoForgeVersion = VersionDefinition(
108108
"1.21.1" to "21.1.95",
109109
"1.21.4" to "21.4.124",
110-
"1.21.5" to "21.5.34-beta"
110+
"1.21.5" to "21.5.34-beta",
111+
"1.21.8" to "21.8.2-beta",
111112
)
112113
val minimumNeoForgeVersion = VersionDefinition(
113114
// We need this version or higher on 1.21.4, on other versions we don't care
@@ -125,10 +126,13 @@ val kotlinForForgeVersion = VersionDefinition(
125126
"1.21.1" to "5.7.0",
126127
"1.21.4" to "5.7.0",
127128
"1.21.5" to "5.7.0",
129+
"1.21.8" to "5.9.0",
128130
)
129131
val universalVersion = VersionDefinition(
130132
"1.21.1" to "1.21-${mcPlatform.loaderString}:421",
131133
"1.21.8" to "1.21.7-${mcPlatform.loaderString}:421",
134+
"1.21.8-forge" to "1.21.7-forge:422+feature-1.21.7-forge-neoforge",
135+
"1.21.8-neoforge" to "1.21.7-neoforge:422+feature-1.21.7-forge-neoforge",
132136
default = "${mcPlatform.name}:421"
133137
)
134138

changelog.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
## Resourcify 1.7.3
1+
## Resourcify 1.7.4
22

33
Please make sure to report any bugs and/or visual anomalies
44
on [Resourcify's GitHub](https://github.com/DeDiamondPro/Resourcify/issues) or in
55
the [Discord](https://discord.gg/XtAuqsJWby).
66

7-
- Added support for 1.21.6 fabric
8-
- Updated Portuguese (Brazil) translations
9-
by [seriousfreezing](https://github.com/seriousfreezing) ([#92](https://github.com/DeDiamondPro/Resourcify/pull/92))
10-
- Improved stability of the manual download system in cases where Resourcify does not have permission to delete the
11-
downloaded file.
7+
- Added support for 1.21.8 NeoForge
8+
- Marked VulkanMod as incompatible, this incompatibility lies at how one of the libraries that Resourcify uses works,
9+
and unfortunately there is not much that can be done about it for now.
10+
- Updated some dependencies
1211

1312
----------------------------------------------------------------------------------------------------
1413

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ val platforms = listOf(
4242
"1.21.5-forge",
4343
"1.21.5-neoforge",
4444
"1.21.5-fabric",
45+
"1.21.8-neoforge",
4546
"1.21.8-fabric",
4647
)
4748

src/main/kotlin/dev/dediamondpro/resourcify/Constants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ import org.slf4j.LoggerFactory
2323
object Constants {
2424
const val NAME = /*$ mod_name*/ "Resourcify"
2525
const val ID = /*$ mod_id*/ "resourcify"
26-
const val VERSION = /*$ mod_version*/ "1.7.3"
26+
const val VERSION = /*$ mod_version*/ "1.7.4"
2727
val LOGGER: Logger = LoggerFactory.getLogger(NAME)
2828
}

0 commit comments

Comments
 (0)