Skip to content

Commit

Permalink
Removed unfinished tag and upgraded forge to 43.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Majrusz committed Aug 28, 2022
1 parent 55cd839 commit 1860e3e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
- [Planet Minecraft](https://www.planetminecraft.com/mod/majrusz-s-progressive-difficulty/)

## Current Mod Releases (Source Code)
- [v1.5.9 for Minecraft 1.19.1](https://github.com/Majrusz/MajruszsProgressiveDifficultyMod/tree/1.19.X/)
- [v1.5.10 for Minecraft 1.19.2](https://github.com/Majrusz/MajruszsProgressiveDifficultyMod/tree/1.19.X/)
- [v1.4.2 for Minecraft 1.18.2](https://github.com/Majrusz/MajruszsProgressiveDifficultyMod/tree/1.18.2/)
- [v1.4.0 for Minecraft 1.18.1](https://github.com/Majrusz/MajruszsProgressiveDifficultyMod/tree/1.18.1/) *(not supported anymore)*
- [v1.3.0 for Minecraft 1.17.1](https://github.com/Majrusz/MajruszsProgressiveDifficultyMod/tree/1.17.1/) *(not supported anymore)*
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.+', changing: true
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '5.1.+', changing: true
classpath 'org.spongepowered:mixingradle:0.7-SNAPSHOT'
}
}
Expand All @@ -14,15 +14,15 @@ apply plugin: 'eclipse'
apply plugin: 'maven-publish'
apply plugin: 'org.spongepowered.mixin'

version = '1.5.10-unfinished'
version = '1.5.10'
group = 'com.majruszsdifficulty'
archivesBaseName = 'majruszs-difficulty-1.19.1'
archivesBaseName = 'majruszs-difficulty-1.19.2'

// Mojang ships Java 16 to end users in 1.17+ instead of Java 8 in 1.16 or lower, so your mod should target Java 16.
java.toolchain.languageVersion = JavaLanguageVersion.of(17)

minecraft {
mappings channel: 'official', version: '1.19.1'
mappings channel: 'official', version: '1.19.2'

accessTransformer = file( 'src/main/resources/META-INF/accesstransformer.cfg' ) // Currently, this location cannot be changed from the default.

Expand Down Expand Up @@ -75,8 +75,8 @@ repositories {
}

dependencies {
minecraft 'net.minecraftforge:forge:1.19.1-42.0.0'
implementation fg.deobf( 'com.mlib:majrusz-library-1.19.1:2.15.0-unfinished' )
minecraft 'net.minecraftforge:forge:1.19.2-43.1.0'
implementation fg.deobf( 'com.mlib:majrusz-library-1.19.2:2.15.0' )
}

// Example for how to get properties into the manifest for reading at runtime.
Expand Down
Binary file not shown.
8 changes: 4 additions & 4 deletions src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
modLoader = "javafml"
loaderVersion = "[42,)"
loaderVersion = "[43,)"
license = "MIT License"
issueTrackerURL = "https://github.com/Majrusz/MajruszsProgressiveDifficultyMod/issues"

[[mods]]
modId = "majruszsdifficulty"
version = "1.5.10-unfinished"
version = "1.5.10"
displayName = "Majrusz's Progressive Difficulty"
updateJSONURL = "https://raw.githubusercontent.com/Majrusz/MajruszsProgressiveDifficultyMod/1.19/update.json"
displayURL = "https://www.curseforge.com/minecraft/mc-mods/majruszs-progressive-difficulty"
Expand All @@ -17,14 +17,14 @@ issueTrackerURL = "https://github.com/Majrusz/MajruszsProgressiveDifficultyMod/i
[[dependencies.majruszsdifficulty]]
modId = "forge"
mandatory = true
versionRange = "[42.0.0,)"
versionRange = "[43.1.0,)"
ordering = "NONE"
side = "BOTH"

[[dependencies.majruszsdifficulty]]
modId = "minecraft"
mandatory = true
versionRange = "[1.19.1,1.20)"
versionRange = "[1.19.2,1.20)"
ordering = "NONE"
side = "BOTH"

Expand Down
4 changes: 3 additions & 1 deletion update.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
"1.19-latest": "1.5.6",
"1.19-recommended": "1.5.6",
"1.19.1-latest": "1.5.9",
"1.19.1-recommended": "1.5.9"
"1.19.1-recommended": "1.5.9",
"1.19.2-latest": "1.5.10",
"1.19.2-recommended": "1.5.10"
}
}

0 comments on commit 1860e3e

Please sign in to comment.