Skip to content

Commit

Permalink
Port to 1.20.6
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed May 6, 2024
1 parent d23bedf commit 9c81a6d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

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

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

## License

Distributed under the MIT License. See the [LICENSE](https://github.com/jaredlll08/searchables/blob/1.20.5/LICENSE) file for more information.
Distributed under the MIT License. See the [LICENSE](https://github.com/jaredlll08/searchables/blob/1.20.6/LICENSE) file for more information.

## Setup

Expand Down Expand Up @@ -144,35 +144,35 @@ repositories {

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

### 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.20.5%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-fabric-1.20.5/)
### 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.20.6%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-fabric-1.20.6/)

```kotlin
dependencies {
modImplementation("com.blamejared.searchables:Searchables-fabric-1.20.5:[VERSION]")
modImplementation("com.blamejared.searchables:Searchables-fabric-1.20.6:[VERSION]")
// Example:
// modImplementation("com.blamejared.searchables:Searchables-fabric-1.20.5:1.0.0")
// modImplementation("com.blamejared.searchables:Searchables-fabric-1.20.6:1.0.0")
}
```

### 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.20.5%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-forge-1.20.5/)
### 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.20.6%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-forge-1.20.6/)


```kotlin
dependencies {
compileOnly(fg.deobf("com.blamejared.searchables:Searchables-forge-1.20.5:[VERSION]"))
compileOnly(fg.deobf("com.blamejared.searchables:Searchables-forge-1.20.6:[VERSION]"))
// Example:
// implementation(fg.deobf("com.blamejared.searchables:Searchables-forge-1.20.5:1.0.0"))
// implementation(fg.deobf("com.blamejared.searchables:Searchables-forge-1.20.6:1.0.0"))
}
```

### 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.20.5%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-common-1.20.5/)
### 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.20.6%2Fmaven-metadata.xml&style=flat-square)](https://maven.blamejared.com/com/blamejared/searchables/Searchables-common-1.20.6/)

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:

```kotlin
dependencies {
compileOnly("com.blamejared.searchables:Searchables-common-1.20.5:[VERSION]")
compileOnly("com.blamejared.searchables:Searchables-common-1.20.6:[VERSION]")
// Example:
// compileOnly("com.blamejared.searchables:Searchables-common-1.20.5:1.0.0")
// compileOnly("com.blamejared.searchables:Searchables-common-1.20.6:1.0.0")
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ package com.blamejared.searchables.gradle
object Versions {
const val MOD = "1.0"
const val JAVA = "21"
const val MINECRAFT = "1.20.5"
const val FABRIC_LOADER = "0.15.10"
const val FABRIC = "0.97.6+1.20.5"
const val MINECRAFT = "1.20.6"
const val FABRIC_LOADER = "0.15.11"
const val FABRIC = "0.97.8+1.20.6"
const val FORGE = "49.0.19" // 1.20.4
const val FORGE_LOADER = "[49,)" // 1.20.4
const val NEO_FORGE = "20.5.0-beta"
const val NEO_FORGE = "20.6.42-beta"
const val NEO_FORGE_LOADER= "[2,)"
}

0 comments on commit 9c81a6d

Please sign in to comment.