File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed
src/main/kotlin/dev/dediamondpro/resourcify Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,8 @@ val modMenuVersion = VersionDefinition(
107107val 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)
112113val 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)
129131val 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
Original file line number Diff line number Diff line change 1- ## Resourcify 1.7.3
1+ ## Resourcify 1.7.4
22
33Please make sure to report any bugs and/or visual anomalies
44on [ Resourcify's GitHub] ( https://github.com/DeDiamondPro/Resourcify/issues ) or in
55the [ 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -23,6 +23,6 @@ import org.slf4j.LoggerFactory
2323object 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}
You can’t perform that action at this time.
0 commit comments