Skip to content

Commit eb3705c

Browse files
committed
(1.19.x) 1.19.2 port
1 parent 72b9944 commit eb3705c

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Version 1.4.0 for MC 1.19.2
2+
3+
- Updated mod to 1.19.2
4+
15
## Version 1.4.0 for MC 1.18.2
26

37
- Updated mod to 1.18.2

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ plugins {
1717
}
1818
apply plugin: 'net.minecraftforge.gradle'
1919

20-
version = '1.4.0-MC1.18.x'
20+
version = '1.4.0-MC1.19.x'
2121
group = 'dev.gallon.aimassistance' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
2222
archivesBaseName = 'aimassistance'
2323

@@ -26,7 +26,7 @@ java.toolchain.languageVersion = JavaLanguageVersion.of(17)
2626
println('Java: ' + System.getProperty('java.version') + ' JVM: ' + System.getProperty('java.vm.version') + '(' + System.getProperty('java.vendor') + ') Arch: ' + System.getProperty('os.arch'))
2727

2828
minecraft {
29-
mappings channel: 'official', version: '1.18.2'
29+
mappings channel: 'official', version: '1.19.2'
3030

3131
runs {
3232
client {
@@ -57,6 +57,6 @@ repositories {
5757
}
5858

5959
dependencies {
60-
minecraft 'net.minecraftforge:forge:1.18.2-40.1.0'
61-
compileOnly fg.deobf('curse.maven:controllable-317269:3936914')
60+
minecraft 'net.minecraftforge:forge:1.19.2-43.1.1'
61+
compileOnly fg.deobf('curse.maven:controllable-317269:3936915')
6262
}

src/main/resources/META-INF/mods.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
modLoader="javafml"
2-
loaderVersion="[40,)"
2+
loaderVersion="[43,)"
33
issueTrackerURL="https://github.com/lilgallon/AimAssistanceMod/issues"
44
license="MIT License"
55

66
[[mods]]
77
modId="aimassistancemod"
88
version="1.4.0"
99
displayName="Aim Assistance"
10-
updateJSONURL="https://raw.githubusercontent.com/lilgallon/AimAssistanceMod/MC_1.18.x/update.json"
10+
updateJSONURL="https://raw.githubusercontent.com/lilgallon/AimAssistanceMod/MC_1.19.x/update.json"
1111
displayURL="https://github.com/lilgallon/AimAssistanceMod/"
1212
# logoFile="examplemod.png"
1313
# credits="someone"

update.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"homepage": "https://github.com/lilgallon/AimAssistanceMod/releases",
33
"promos": {
4+
"1.19.2-latest": "1.4.0",
5+
"1.19.2-recommended": "1.4.0",
46
"1.18.2-latest": "1.4.0",
57
"1.18.2-recommended": "1.4.0",
68
"1.16.3-latest": "1.4.0",

0 commit comments

Comments
 (0)