Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Jun 18, 2024
1 parent f13808b commit 66fac0c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## Changelog
- port to 1.21
- port to 1.21 (Thanks Motschen improved backgrounds and fix crash issues)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Just do `./gradlew build` and everything should build just fine!

## Use inside a mod

You can look at the [SpruceUI testmod](https://github.com/LambdAurora/SpruceUI/tree/1.20.4/src/testmod) for examples of use.
You can look at the [fabric-testmod](https://github.com/ThinkingStudios/ObsidianUI/tree/1.21-architectury/test-fabric)/[neoforge-testmod](https://github.com/ThinkingStudios/ObsidianUI/tree/1.21-architectury/test-neoforge) for examples of use.

### Import inside a project

Expand All @@ -35,12 +35,12 @@ repositories {
}
dependencies {
include modImplementation("maven.modrinth:obsidianui:${project.obsidianui_version}")
include modImplementation("maven.modrinth:obsidianui:${project.obsidianui_version}-${modloader}")
}
```

And this to your `gradle.properties`:

```properties
obsidianui_version=0.2.2+1.20.4
obsidianui_version=0.2.6+1.21
```
2 changes: 1 addition & 1 deletion fabric/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## Changelog
- port to 1.21
- port to 1.21 (Thanks Motschen improved backgrounds and fix crash issues)
2 changes: 1 addition & 1 deletion fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
],
"depends": {
"fabric": "*",
"minecraft": ">=1.20.5"
"minecraft": ">=1.21"
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ yarn_mappings=1.21+build.1
mappings_patch=1.21+build.4

archives_base_name=ObsidianUI
mod_version=0.2.5
mod_version=0.2.6
maven_group=org.thinkingstudio.obsidianui

fabric_loader_version=0.15.11
Expand Down
2 changes: 1 addition & 1 deletion neoforge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## Changelog
- port to 1.21
- port to 1.21 (Thanks Motschen improved backgrounds and fix crash issues)
4 changes: 2 additions & 2 deletions neoforge/src/main/resources/META-INF/neoforge.mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ config = "obsidianui.neoforge.mixins.json"
[[dependencies.obsidianui]]
modId = "neoforge"
type = "required"
versionRange = "[20,)"
versionRange = "[21,)"
ordering = "NONE"
side = "BOTH"

[[dependencies.obsidianui]]
modId = "minecraft"
type = "required"
versionRange = "[1.20.5,)"
versionRange = "[1.21,)"
ordering = "NONE"
side = "BOTH"

0 comments on commit 66fac0c

Please sign in to comment.