Skip to content

Commit aef549b

Browse files
authored
Merge pull request #61 from Merennor/1.21.11
1.21.11 Update
2 parents 9dbb2bc + 196b637 commit aef549b

21 files changed

Lines changed: 259 additions & 216 deletions

.github/workflows/dev_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
uses: marvinpinto/action-automatic-releases@latest
2727
with:
2828
repo_token: '${{ secrets.GITHUB_TOKEN }}'
29-
automatic_release_tag: "1.21.10_1.0.9.5"
29+
automatic_release_tag: "1.21.11_1.0.9.5"
3030
prerelease: true
31-
title: "1.21.10 | 1.0.9.5"
31+
title: "1.21.11 | 1.0.9.5"
3232
files: |
3333
./build/libs/*.jar

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<a href="https://www.minecraft.net/"><img src="https://img.shields.io/github/license/MeteorClientPlus/MeteorPlus?logo=mdBook&color=FF8C00" alt="Minecraft version"/></a>
1010
<br>
1111
<a href="https://www.meteoraddons.com/?addon=MeteorClientPlus%2FMeteorPlus"><img src="https://img.shields.io/badge/verified%20addon-yes-brightgreen" alt="Verified Addon"></a>
12-
<a href="https://www.minecraft.net/"><img src="https://img.shields.io/badge/minecraft%20version-1.20.4 -- 1.21.10-brightgreen" alt="Minecraft version"/></a>
12+
<a href="https://www.minecraft.net/"><img src="https://img.shields.io/badge/minecraft%20version-1.20.4 -- 1.21.11-brightgreen" alt="Minecraft version"/></a>
1313
<a href="https://github.com/Nekiplay/MeteorClientPlus/releases"><img src="https://img.shields.io/github/downloads/MeteorClientPlus/MeteorPlus/total" alt="Downloads"/></a>
1414
<a href="https://github.com/Nekiplay/MeteorClientPlus/stargazers"><img src="https://badgen.net/github/stars/MeteorClientPlus/MeteorPlus" alt="GitHub stars"/></a>
1515
<br>
@@ -30,7 +30,7 @@
3030
| **Spider+** | **Spider for Anti-Cheats** | **Matrix, Vulcan** |
3131
| **Jesus+** | **Jesus for Anti-Cheats** | **Matrix, Vulcan** |
3232
| **No Slow+** | **No Slow for Anti-Cheats** | **Matrix, Vulcan, Grim, NCP** |
33-
| **Fast Climb+** | **Fast Climb for Anti-Cheats** | **Spartan** |
33+
| **Fast Climb+** | **Fast Climb for Anti-Cheats** | **Spartan** |
3434
| **Gui Move+** | **Gui Move for Anti-Cheats** | **Matrix, NCP** |
3535
| **Timer+** | **Timer for Anti-Cheats** | **NCP, Intave, Vulcan** |
3636
| **Safe mine** | **Prevents player from lava** | **Matrix** |
@@ -46,16 +46,15 @@
4646
| **Teams** | **Does not beat teammates on BedWars and other modes** | |
4747

4848
## Integrations
49-
| Module | Description |
50-
|---------------------|---------------------------------------------------|
51-
| **Chest Tracker** | **Colors support, background disabler, y offset** |
52-
| **Xaero's MiniMap** | **Support baritone control on context** |
49+
| Module | Description |
50+
|---------------------------------------|---------------------------------------------------|
51+
| **Chest Tracker (Unofficial Port)** | **Colors support, background disabler, y offset** |
52+
| **Xaero's MiniMap** | **Support baritone control on context** |
5353

5454
## Commands
5555
| Command | Description | Bypasses anti cheats |
5656
|----------------|---------------------------------------------------|-----------------------------------------|
5757
| **eclip** | **Vertical clip** | **Matrix, Wraith, Spartan, Negativity** |
58-
| **gpt** | **Use ChatGPT module** | |
5958
| **clearinv** | **Clear inventory exploit not work after 1.20.3** | **NCP** |
6059
| **rawitemid** | **Get raw item id for holograms module** | |
6160
| **rawblockid** | **Get raw block id for custom blocks module** | |
@@ -77,10 +76,10 @@
7776
| **KeyBinds** | **Now allow binding function to LMB, RMB, ESC** |
7877

7978
# Installation Guide
80-
1. Install [minecraft](https://www.minecraft.net)
81-
2. Install [fabric](https://fabricmc.net) and [fabric api](https://www.curseforge.com/minecraft/mc-mods/fabric-api) for your version of minecraft
82-
3. Download [meteor client](https://meteorclient.com) for your version of minecraft
83-
4. Download [meteor plus](https://github.com/MeteorClientPlus/MeteorPlus/releases) for your version of minecraft
84-
5. Place the meteor client and meteor plus in your mods folder
79+
1. Install [Minecraft](https://www.minecraft.net)
80+
2. Install [Fabric](https://fabricmc.net) and [Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api) for your version of minecraft
81+
3. Download [Meteor Client](https://meteorclient.com) for your version of minecraft
82+
4. Download [Meteor Plus](https://github.com/MeteorClientPlus/MeteorPlus/releases) for your version of minecraft
83+
5. Place the Meteor Client and Meteor Plus in your mods folder
8584

8685
A: Make Commit we welcome anyone who makes a useful contribution to our free open source product

build.gradle

Lines changed: 0 additions & 105 deletions
This file was deleted.

build.gradle.kts

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
plugins {
2+
alias(libs.plugins.fabric.loom)
3+
id("maven-publish")
4+
}
5+
6+
base {
7+
archivesName = properties["archives_name"] as String
8+
version = libs.versions.mod.version.get()
9+
group = properties["maven_group"] as String
10+
}
11+
12+
configurations.all {
13+
// Check for snapshots more frequently than Gradle's default of 1 day. 0 = every build.
14+
resolutionStrategy.cacheChangingModulesFor(0, "seconds")
15+
}
16+
17+
repositories {
18+
maven {
19+
url = uri("https://jm.gserv.me/repository/maven-public/")
20+
content {
21+
includeGroup("info.journeymap")
22+
}
23+
}
24+
maven {
25+
url = uri("https://api.modrinth.com/maven/")
26+
content {
27+
includeGroup("maven.modrinth")
28+
}
29+
}
30+
maven {
31+
url = uri("https://www.cursemaven.com")
32+
}
33+
maven {
34+
url = uri("https://masa.dy.fi/maven")
35+
}
36+
// YACL
37+
maven {
38+
url = uri("https://maven.isxander.dev/releases")
39+
}
40+
// YACL Snapshots
41+
maven {
42+
name = "Xander Snapshot Maven"
43+
url = uri("https://maven.isxander.dev/snapshots")
44+
}
45+
// Where Is It, JackFredLib
46+
maven {
47+
url = uri("https://maven.jackf.red/releases/")
48+
}
49+
// Meteor Client
50+
maven {
51+
name = "meteor-maven"
52+
url = uri("https://maven.meteordev.org/releases")
53+
}
54+
maven {
55+
name = "meteor-maven-snapshots"
56+
url = uri("https://maven.meteordev.org/snapshots")
57+
}
58+
mavenCentral()
59+
gradlePluginPortal()
60+
}
61+
62+
dependencies {
63+
// Fabric
64+
minecraft(libs.minecraft)
65+
mappings(variantOf(libs.yarn) { classifier("v2") })
66+
modImplementation(libs.fabric.loader)
67+
68+
// Fabric API
69+
modImplementation(libs.fabric.api)
70+
71+
// Mixin extras
72+
annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.5.0")
73+
74+
// Meteor Client
75+
modImplementation(files("libs\\baritone-unoptimized-fabric-1.15.0-2-gf7a53504.jar"))
76+
modImplementation(libs.meteor.client)
77+
implementation(libs.starscript)
78+
implementation(libs.orbit)
79+
80+
// Xaero's Mods
81+
modCompileOnly(libs.xwm) // Xaero's World Map
82+
modCompileOnly(libs.xmm) // Xaero's Minimap
83+
modCompileOnly(files("libs\\xaerolib-fabric-1.21.11-1.0.38.jar"))
84+
85+
// Chest Tracker
86+
modImplementation(libs.whereisit)
87+
}
88+
89+
loom {
90+
accessWidenerPath = file("src/main/resources/meteorplus.accesswidener")
91+
}
92+
93+
tasks {
94+
processResources {
95+
val propertyMap = mapOf(
96+
"version" to project.version,
97+
"mc_version" to libs.versions.minecraft.get(),
98+
"gh_hash" to (System.getenv("GITHUB_SHA") ?: ""),
99+
)
100+
101+
filesMatching("fabric.mod.json") {
102+
expand (propertyMap)
103+
}
104+
}
105+
jar {
106+
val licenseSuffix = project.base.archivesName.get()
107+
from("LICENSE") {
108+
rename { "${it}_${licenseSuffix}" }
109+
}
110+
}
111+
java {
112+
sourceCompatibility = JavaVersion.VERSION_21
113+
targetCompatibility = JavaVersion.VERSION_21
114+
}
115+
withType<JavaCompile> {
116+
options.encoding = "UTF-8"
117+
options.release = 21
118+
}
119+
}

gradle.properties

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,5 @@
11
org.gradle.jvmargs=-Xmx4G
22

3-
# Fabric (https://fabricmc.net/versions.html)
4-
minecraft_version=1.21.10
5-
yarn_mappings=1.21.10+build.2
6-
loader_version=0.17.3
7-
loom_version=1.13-SNAPSHOT
8-
9-
# Fabric API
10-
fabric_version=0.135.0+1.21.10
11-
123
# Mod Properties
13-
mod_version=1.21.10_1.0.9.5
144
maven_group=nekiplay.meteorplus
15-
archives_name=meteor-plus
16-
17-
# Dependency Versions
18-
19-
# Xaero's Mods
20-
# Xaero's World Map (https://modrinth.com/mod/xaeros-world-map/versions)
21-
xwm_fabric_version=1.39.17_Fabric_1.21.9
22-
# Xaero's Minimap (https://modrinth.com/mod/xaeros-minimap/versions)
23-
xmm_fabric_version=25.2.15_Fabric_1.21.9
24-
25-
# Where Is It (https://modrinth.com/mod/where-is-it/versions)
26-
where_is_it_version=2.6.4+1.21.2
27-
# YetAnotherConfigLib (https://github.com/JackFred2/WhereIsIt/blob/1.20.6/gradle.properties)
28-
yacl_version=3.3.2+1.20.4+update.1.20.5-SNAPSHOT+update.1.20.5-SNAPSHOT
29-
30-
# MaLiLib (https://www.curseforge.com/minecraft/mc-mods/malilib/files/all?page=1&pageSize=20)
31-
malilib_fileid=4946328
32-
malilib_projectid=303119
5+
archives_name=meteor-plus

gradle/libs.versions.toml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
[versions]
2+
mod-version = "1.21.11_1.0.9.5"
3+
4+
# Fabric (https://fabricmc.net/develop)
5+
minecraft = "1.21.11"
6+
yarn-mappings = "1.21.11+build.3"
7+
fabric-loader = "0.18.4"
8+
fabric-api = "0.140.2+1.21.11"
9+
10+
# Plugins
11+
# Loom (https://github.com/FabricMC/fabric-loom)
12+
loom = "1.14-SNAPSHOT"
13+
14+
# Meteor (https://github.com/MeteorDevelopment/meteor-client)
15+
meteor = "1.21.11-SNAPSHOT"
16+
# Starscript (https://github.com/MeteorDevelopment/starscript)
17+
starscript = "0.2.5"
18+
# Orbit (https://github.com/MeteorDevelopment/orbit)
19+
orbit = "0.2.4"
20+
21+
# Xaero's Mods
22+
# Xaero's World Map (https://modrinth.com/mod/xaeros-world-map/versions)
23+
xwm = "1.40.1_Fabric_1.21.11"
24+
# Xaero's Minimap (https://modrinth.com/mod/xaeros-minimap/versions)
25+
xmm = "25.3.1_Fabric_1.21.11"
26+
27+
# Where Is It (https://modrinth.com/mod/where-is-it-port/versions)
28+
whereisit = "2.6.8+1.21.11"
29+
# YetAnotherConfigLib (https://github.com/ponuing/WhereIsIt/blob/1.21.11/gradle.properties)
30+
yacl = "3.8.1+1.21.11-fabric"
31+
32+
# MaLiLib (https://www.curseforge.com/minecraft/mc-mods/malilib)
33+
malilib = "7130809"
34+
35+
[libraries]
36+
# Fabric base
37+
minecraft = { module = "com.mojang:minecraft", version.ref = "minecraft" }
38+
yarn = { module = "net.fabricmc:yarn", version.ref = "yarn-mappings" }
39+
fabric-loader = { module = "net.fabricmc:fabric-loader", version.ref = "fabric-loader" }
40+
41+
# Fabric API
42+
fabric-api = { module = "net.fabricmc.fabric-api:fabric-api", version.ref = "fabric-api" }
43+
44+
# Meteor Client
45+
meteor-client = { module = "meteordevelopment:meteor-client", version.ref = "meteor" }
46+
starscript = { module = "org.meteordev:starscript", version.ref = "starscript" }
47+
orbit = { module = "meteordevelopment:orbit", version.ref = "orbit" }
48+
49+
# Xaero's Mods
50+
xwm = { module = "maven.modrinth:xaeros-world-map", version.ref = "xwm" }
51+
xmm = { module = "maven.modrinth:xaeros-minimap", version.ref = "xmm" }
52+
53+
# Where Is It
54+
whereisit = { module = "maven.modrinth:where-is-it-port", version.ref = "whereisit" }
55+
# YetAnotherConfigLib
56+
yacl = { module = "dev.isxander.yacl:yet-another-config-lib-fabric", version.ref = "yacl" }
57+
58+
# MaLiLib
59+
malilib = { module = "curse.maven:malilib-303119", version.ref = "malilib" }
60+
61+
[plugins]
62+
fabric-loom = { id = "fabric-loom", version.ref = "loom" }

gradle/wrapper/gradle-wrapper.jar

176 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-9.1.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME
1.72 MB
Binary file not shown.
555 KB
Binary file not shown.

0 commit comments

Comments
 (0)