Skip to content

Commit

Permalink
Bump version and update docs for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
eth0net committed Jul 29, 2022
1 parent 099cd71 commit 8b0b883
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 11 deletions.
8 changes: 3 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ val fabricKotlinVersion: String by project
val fabricKotlinVersionId: String by project
val completeConfigVersion: String by project
val completeConfigVersionId: String by project
val clothConfigVersion: String by project
val clothConfigVersionId: String by project
val mavenGroup: String by project
val modId: String by project
val modVersion: String by project
Expand Down Expand Up @@ -47,7 +45,6 @@ dependencies {
modImplementation("net.fabricmc", "fabric-loader", loaderVersion)
modImplementation("net.fabricmc.fabric-api", "fabric-api", fabricVersion)
modImplementation("net.fabricmc", "fabric-language-kotlin", fabricKotlinVersion)
modImplementation("com.gitlab.Lortseam.completeconfig", "base", completeConfigVersion)
modImplementation("com.gitlab.Lortseam.completeconfig", "gui-cloth", completeConfigVersion)
}

Expand All @@ -65,7 +62,7 @@ tasks {

processResources {
inputs.property("version", project.version)
filesMatching("fabric.mod.json") { expand(mutableMapOf("version" to project.version)) }
filesMatching("fabric.mod.json") { expand(mapOf("version" to project.version)) }
}

java {
Expand All @@ -87,7 +84,8 @@ tasks {
required.version(fabricVersionId)
required.version(fabricKotlinVersionId)
required.version(completeConfigVersionId)
optional.version(clothConfigVersionId)
optional.project("cloth-config")
optional.project("modmenu")
}
// syncBodyFrom.set(rootProject.file("README.md").toString())
}
Expand Down
10 changes: 10 additions & 0 deletions changelogs/1.2.0-beta+fabric-1.19.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Now with config!

**Added**:
- Implement CompleteConfig to allow players to configure levels and limit breaks.
- Configuration UI in game client for single player (using cloth config and mod menu)
- Configuration files in client config directory
- Configuration files in server config directory
- Server configuration synced to client during multiplayer sessions

**Full Changelog**: https://github.com/eth0net/enchant-menu/compare/v1.1.1+fabric-1.19...v1.2.0-beta+fabric-1.19
9 changes: 3 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@ fabricKotlinVersionId=5Aq3SFbi
# Complete Config
completeConfigVersion=2.0.0
completeConfigVersionId=zaC01d1T
# Cloth Config
clothConfigVersion=7.0.73
clothConfigVersionId=ehzvjLXC
# Mod Properties
mavenGroup=com.github.eth0net
modId=enchant-menu
modVersion=1.2.0-alpha+fabric-1.19
modVersionName=1.2.0 Alpha Fabric 1.19
modVersionType=alpha
modVersion=1.2.0-beta+fabric-1.19
modVersionName=1.2.0 Beta Fabric 1.19
modVersionType=beta
5 changes: 5 additions & 0 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,12 @@
"fabricloader": ">=0.14.8",
"fabric": "*",
"fabric-language-kotlin": ">=1.8.2+kotlin.1.7.10",
"completeconfig": "^2.0.0",
"minecraft": "1.19.x",
"java": ">=17"
},
"recommends": {
"cloth-config": "*",
"modmenu": "*"
}
}

0 comments on commit 8b0b883

Please sign in to comment.