Skip to content

Commit

Permalink
Add support for 1.20.1 (#53)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update version
  • Loading branch information
ChristopherHaws authored Jun 29, 2023
1 parent e943d5b commit b4b7c8f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
loaders: |
fabric
game-versions: |
1.19.3
1.20.1
dependencies: |
fabric-api | depends | *
cloth-config | depends | *
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1]
### Updates
- Updated the dependencies

## [1.0.0]
### Added
- Added the ability to store up to 54 stacks in your enderchest
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ loom {

runs {
client {
runDir = "run/1.19.3/client"
runDir = "run/1.20.1/client"
vmArg "-XX:+ShowCodeDetailsInExceptionMessages"
}
server {
runDir = "run/1.19.3/server"
runDir = "run/1.20.1/server"
vmArg "-XX:+ShowCodeDetailsInExceptionMessages"
}
}
Expand Down Expand Up @@ -77,9 +77,9 @@ dependencies {

// QoL mods for local development
modLocalRuntime("maven.modrinth:lazydfu:0.1.3")
modLocalRuntime("maven.modrinth:lithium:mc1.19.3-0.10.4")
modLocalRuntime("maven.modrinth:sodium:mc1.19.3-0.4.7")
modLocalRuntime("maven.modrinth:starlight:1.1.1+1.19")
modLocalRuntime("maven.modrinth:lithium:mc1.20.1-0.11.2")
modLocalRuntime("maven.modrinth:sodium:mc1.20-0.4.10")
modLocalRuntime("maven.modrinth:starlight:1.1.2+1.20")
}

processResources {
Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# Mod Properties
mod_id = expandedenderchest
mod_name = Expanded Enderchest
mod_version = 1.0.0
mod_version = 1.0.1
maven_group = io.chaws
archives_base_name = expanded-enderchest

# Increase the memory available to gradle.
org.gradle.jvmargs = -Xmx4G

# Fabric Properties: https://fabricmc.net/develop
minecraft_version=1.19.3
yarn_mappings=1.20-pre7+build.2
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.8
loader_version=0.14.21

# Fabric API
fabric_version=0.83.0+1.20
#Fabric api
fabric_version=0.84.0+1.20.1

# Shedaniel API's: https://linkie.shedaniel.me/dependencies
modmenu_version = 6.2.2
cloth_config_version = 11.0.98
modmenu_version = 7.1.0
cloth_config_version = 11.0.99
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"depends": {
"fabricloader": ">=0.14",
"fabric": "*",
"minecraft": ">=1.19.3",
"minecraft": ">=1.20",
"java": ">=17"
},
"suggests": {
Expand Down

0 comments on commit b4b7c8f

Please sign in to comment.