Skip to content

Commit

Permalink
Merge pull request #3 from V-Fast/test-1.20.4
Browse files Browse the repository at this point in the history
Merge test branch for 1.20.4
  • Loading branch information
tanishisherewithhh authored Apr 16, 2024
2 parents e487bff + 97f1873 commit 82ebf66
Show file tree
Hide file tree
Showing 69 changed files with 3,712 additions and 3,447 deletions.
51 changes: 24 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@

# DynamicHUD for Minecraft Fabric

DynamicHUD is a special tool for Minecraft mod creators who use Fabric. It works with Minecraft 1.19.1 and newer versions. With DynamicHUD, you can make your own HUD parts that players can change and interact with, making their game look and feel better.
> _It may be ported back upto 1.16 fabric on demand._
# Examples
- [_DynamicHUDtest.java_](src/main/java/com/tanishisherewith/dynamichud/DynamicHUDtest.java)
-
## Demo

*May vary from version to version*

### Developed stage
> In progress
---

### Mid stage (1.2.0)
<details>
<summary>View Demo video</summary>

[!Mid stage demo video](https://github.com/V-Fast/DynamicHUD/assets/120117618/2abfcdf5-d786-4e58-acae-aefe51b77b4a)
</details>

### Early stages
<details>
<summary>View Demo video</summary>

[!Early stage demo video](https://github.com/V-Fast/DynamicHUD/assets/120117618/04de9319-69cd-4456-a555-c026c7e053a2)
</details>

## Features

Expand Down Expand Up @@ -66,29 +89,3 @@ DynamicHUD is released under the MIT License. Feel free to use and modify it in

## Support
Need assistance or have suggestions? Join our [Discord](https://discord.com/invite/Rqpn3C7yR5) community or submit an issue on our GitHub [repository](https://github.com/V-Fast/DynamicHUD).
# Examples
- [_DynamicHUDtest.java_](src/main/java/com/tanishisherewith/dynamichud/DynamicHUDtest.java)

# [Modrinth](https://modrinth.com/mod/dynamichud)

## A LIBRARY SIMILAR TO THIS WHICH SUPPORTS OLDER MINECRAFT VERSIONS: https://github.com/LaconicLizard/HudElements

# Demo:
### *May vary from version to version*
## New Version 1.2.0
https://github.com/V-Fast/DynamicHUD/assets/120117618/2abfcdf5-d786-4e58-acae-aefe51b77b4a


## Old Version
https://github.com/V-Fast/DynamicHUD/assets/120117618/04de9319-69cd-4456-a555-c026c7e053a2











12 changes: 10 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '1.2-SNAPSHOT'
id 'fabric-loom' version '1.3-SNAPSHOT'
id 'maven-publish'
}

Expand All @@ -18,7 +18,13 @@ repositories {
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
mavenCentral()
jcenter()
maven { url "https://maven.terraformersmc.com/releases/" }
maven {
name 'Xander Maven'
url 'https://maven.isxander.dev/releases'
}
}

dependencies {
Expand All @@ -28,7 +34,9 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"

modApi "com.terraformersmc:modmenu:7.1.0"
modImplementation "dev.isxander.yacl:yet-another-config-lib-fabric:${project.yacl_version}"

modApi "com.terraformersmc:modmenu:9.0.0"
}

processResources {
Expand Down
15 changes: 8 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx3G
org.gradle.parallel=true

# Fabric Properties
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.1
loader_version=0.14.21
# check these on https://fabricmc.net/develop
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.1
loader_version=0.15.0

# Mod Properties
mod_version = 1.2.0
mod_version = 2.0.0
maven_group = com.tanishisherewith
archives_base_name = dynamichud

# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.83.1+1.20.1
fabric_version=0.91.1+1.20.4
yacl_version=3.3.2+1.20.4
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 82ebf66

Please sign in to comment.