Skip to content

Commit 4fd729f

Browse files
committed
Port to 1.21.5
1 parent f426310 commit 4fd729f

File tree

7 files changed

+25
-21
lines changed

7 files changed

+25
-21
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
                   
55
[![GitHub issues](https://img.shields.io/github/issues/jaredlll08/searchables?style=flat-square)](https://github.com/jaredlll08/searchables/issues)
6-
[![GitHub license](https://img.shields.io/github/license/jaredlll08/searchables?color=0690ff&style=flat-square)](https://github.com/jaredlll08/searchables/blob/1.21.1/LICENSE)
7-
[![Jenkins](https://img.shields.io/jenkins/build?jobUrl=https%3A%2F%2Fci.blamejared.com%2Fjob%2FJared%2Fjob%2FMinecraft%2520Mods%2Fjob%2FSearchables%2Fjob%2F1.21.1%2F&style=flat-square)](https://ci.blamejared.com/job/Jared/job/Minecraft%20Mods/job/Searchables/job/1.21.1/)
6+
[![GitHub license](https://img.shields.io/github/license/jaredlll08/searchables?color=0690ff&style=flat-square)](https://github.com/jaredlll08/searchables/blob/1.21.5/LICENSE)
7+
[![Jenkins](https://img.shields.io/jenkins/build?jobUrl=https%3A%2F%2Fci.blamejared.com%2Fjob%2FJared%2Fjob%2FMinecraft%2520Mods%2Fjob%2FSearchables%2Fjob%2F1.21.5%2F&style=flat-square)](https://ci.blamejared.com/job/Jared/job/Minecraft%20Mods/job/Searchables/job/1.21.5/)
88
[![Discord](https://img.shields.io/badge/Discord-%237289DA?style=flat-square&logo=Discord&logoColor=white)](https://discord.blamejared.com/)
99
[![](http://cf.way2muchnoise.eu/searchables.svg?badge_style=flat)](https://minecraft.curseforge.com/projects/searchables)
1010

@@ -108,7 +108,7 @@ If you're running into a bug or have a feature request, please don't be afraid t
108108

109109
## License
110110

111-
Distributed under the MIT License. See the [LICENSE](https://github.com/jaredlll08/searchables/blob/1.21.1/LICENSE) file for more information.
111+
Distributed under the MIT License. See the [LICENSE](https://github.com/jaredlll08/searchables/blob/1.21.5/LICENSE) file for more information.
112112

113113
## Setup
114114

@@ -144,35 +144,35 @@ repositories {
144144

145145
Then, depending on what modloader you are using, you can use the following snippets, just replace `[VERSION]` with the latest version for each artifact.
146146

147-
### Fabric [![Maven](https://img.shields.io/maven-metadata/v?color=C71A36&label=Latest%20version&logo=Latest%20version&metadataUrl=https%3A%2F%2Fmaven.blamejared.com%2Fcom%2Fblamejared%2Fsearchables%2FSearchables-fabric-1.21.1%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-fabric-1.21.1/)
147+
### Fabric [![Maven](https://img.shields.io/maven-metadata/v?color=C71A36&label=Latest%20version&logo=Latest%20version&metadataUrl=https%3A%2F%2Fmaven.blamejared.com%2Fcom%2Fblamejared%2Fsearchables%2FSearchables-fabric-1.21.5%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-fabric-1.21.5/)
148148

149149
```kotlin
150150
dependencies {
151-
modImplementation("com.blamejared.searchables:Searchables-fabric-1.21.1:[VERSION]")
151+
modImplementation("com.blamejared.searchables:Searchables-fabric-1.21.5:[VERSION]")
152152
// Example:
153-
// modImplementation("com.blamejared.searchables:Searchables-fabric-1.21.1:1.0.0")
153+
// modImplementation("com.blamejared.searchables:Searchables-fabric-1.21.5:1.0.0")
154154
}
155155
```
156156

157-
### Forge [![Maven](https://img.shields.io/maven-metadata/v?color=C71A36&label=Latest%20version&logo=Latest%20version&metadataUrl=https%3A%2F%2Fmaven.blamejared.com%2Fcom%2Fblamejared%2Fsearchables%2FSearchables-forge-1.21.1%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-forge-1.21.1/)
157+
### Forge [![Maven](https://img.shields.io/maven-metadata/v?color=C71A36&label=Latest%20version&logo=Latest%20version&metadataUrl=https%3A%2F%2Fmaven.blamejared.com%2Fcom%2Fblamejared%2Fsearchables%2FSearchables-forge-1.21.5%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-forge-1.21.5/)
158158

159159

160160
```kotlin
161161
dependencies {
162-
compileOnly(fg.deobf("com.blamejared.searchables:Searchables-forge-1.21.1:[VERSION]"))
162+
compileOnly(fg.deobf("com.blamejared.searchables:Searchables-forge-1.21.5:[VERSION]"))
163163
// Example:
164-
// implementation(fg.deobf("com.blamejared.searchables:Searchables-forge-1.21.1:1.0.0"))
164+
// implementation(fg.deobf("com.blamejared.searchables:Searchables-forge-1.21.5:1.0.0"))
165165
}
166166
```
167167

168-
### Common [![Maven](https://img.shields.io/maven-metadata/v?color=C71A36&label=Latest%20version&logo=Latest%20version&metadataUrl=https%3A%2F%2Fmaven.blamejared.com%2Fcom%2Fblamejared%2Fsearchables%2FSearchables-common-1.21.1%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-common-1.21.1/)
168+
### Common [![Maven](https://img.shields.io/maven-metadata/v?color=C71A36&label=Latest%20version&logo=Latest%20version&metadataUrl=https%3A%2F%2Fmaven.blamejared.com%2Fcom%2Fblamejared%2Fsearchables%2FSearchables-common-1.21.5%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-common-1.21.5/)
169169

170170
If you are in a multi-modloader environment (Such as [MultiLoader](https://github.com/jaredlll08/MultiLoader-Template)), you can bring the Common artifact (code that does not depend on any specific mod loader but rather just the vanilla game) into your Common project like so:
171171

172172
```kotlin
173173
dependencies {
174-
compileOnly("com.blamejared.searchables:Searchables-common-1.21.1:[VERSION]")
174+
compileOnly("com.blamejared.searchables:Searchables-common-1.21.5:[VERSION]")
175175
// Example:
176-
// compileOnly("com.blamejared.searchables:Searchables-common-1.21.1:1.0.0")
176+
// compileOnly("com.blamejared.searchables:Searchables-common-1.21.5:1.0.0")
177177
}
178178
```

buildSrc/src/main/kotlin/com/blamejared/Versions.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package com.blamejared
33
object Versions {
44
const val MOD = "1.0"
55
const val JAVA = "21"
6-
const val MINECRAFT = "1.21.4"
7-
const val FABRIC_LOADER = "0.16.9"
8-
const val FABRIC = "0.112.2+1.21.4"
9-
const val FORGE = "54.0.10"
10-
const val FORGE_LOADER = "[54,)"
11-
const val NEO_FORGE = "21.4.33-beta"
6+
const val MINECRAFT = "1.21.5"
7+
const val FABRIC_LOADER = "0.16.10"
8+
const val FABRIC = "0.119.5+1.21.5"
9+
const val FORGE = "55.0.1"
10+
const val FORGE_LOADER = "[55,)"
11+
const val NEO_FORGE = "21.5.4-beta"
1212
const val NEO_FORGE_LOADER= "[4,)"
1313
}

fabric/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import net.darkhax.curseforgegradle.Constants as CFG_Constants
66

77
plugins {
88
id("blamejared-modloader-conventions")
9-
id("fabric-loom") version "1.7-SNAPSHOT"
9+
id("fabric-loom") version "1.10-SNAPSHOT"
1010
id("com.modrinth.minotaur")
1111
}
1212

gradle/wrapper/gradle-wrapper.jar

130 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
#
18+
# SPDX-License-Identifier: Apache-2.0
19+
#
1820

1921
##############################################################################
2022
#
@@ -84,7 +86,7 @@ done
8486
# shellcheck disable=SC2034
8587
APP_BASE_NAME=${0##*/}
8688
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87-
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
8890

8991
# Use the maximum available, or set MAX_FD != -1 to use that value.
9092
MAX_FD=maximum

gradlew.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
@rem See the License for the specific language governing permissions and
1414
@rem limitations under the License.
1515
@rem
16+
@rem SPDX-License-Identifier: Apache-2.0
17+
@rem
1618

1719
@if "%DEBUG%"=="" @echo off
1820
@rem ##########################################################################

0 commit comments

Comments
 (0)