Skip to content

Commit 91f6324

Browse files
committed
final 1.21.11 port
1 parent 0eb3efd commit 91f6324

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ val shadeModImplementation: Configuration by configurations.creating {
7070

7171
// Version definitions
7272
val mcVersion = VersionDefinition( // Used for pre releases and release candidates
73-
"1.21.11" to "1.21.11-rc3",
7473
default = mcPlatform.versionString
7574
)
7675
val compatibleMcVersion = VersionDefinition(
@@ -82,7 +81,7 @@ val compatibleMcVersion = VersionDefinition(
8281
"1.21.5" to VersionRange("1.21.5", "1.21.5", name = "1.21.5"),
8382
"1.21.8" to VersionRange("1.21.6", "1.21.8", name = "1.21.8"),
8483
"1.21.10" to VersionRange("1.21.9", "1.21.10", name = "1.21.10"),
85-
"1.21.11" to VersionRange("1.21.11", "1.21.11", name = "1.21.11", allowAll = true), // TODO: make strict once final build
84+
"1.21.11" to VersionRange("1.21.11", "1.21.11", name = "1.21.11"),
8685
)
8786
val javaVersion = VersionDefinition(
8887
"1.20.1" to "17",

changelog.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
1-
## Resourcify 1.7.5
1+
## Resourcify 1.7.6
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-
- Fixed not being able to read some zips when download worlds
8-
- Improved world extraction handling by locating `level.dat` to determine the folder root.
9-
- (1.21.10) Fix clicking links to other Modrinth projects not opening project and going to main menu instead
10-
- Make images in markdown descriptions use linear scaling, this should improve overall quality of enlarged images
11-
- Update hit boxes of some buttons to make them easier to click (back and forward buttons, search bar and buttons for
12-
the pages in the project screen)
13-
- Fix a rare crash in the screen that watches your download folder for a manual install
7+
- Ported to 1.21.11
148

159
----------------------------------------------------------------------------------------------------
1610

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
mod_name = Resourcify
22
mod_id = resourcify
3-
mod_version = 1.7.5
3+
mod_version = 1.7.6
44

55
org.gradle.jvmargs=-Xmx4G
66
org.gradle.parallel=true

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.5"
26+
const val VERSION = /*$ mod_version*/ "1.7.6"
2727
val LOGGER: Logger = LoggerFactory.getLogger(NAME)
2828
}

0 commit comments

Comments
 (0)