This commit is contained in:
lukasabbe
2024-09-20 22:53:21 +02:00
commit b229b1ed2f
30 changed files with 1091 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

@@ -0,0 +1,3 @@
{
"bookshelfinspector.text.book" : "By "
}
@@ -0,0 +1,3 @@
{
"bookshelfinspector.text.book" : "Av "
}
@@ -0,0 +1,16 @@
{
"required": true,
"minVersion": "0.8",
"package": "me.lukasabbe.bookshelfinspector.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
],
"client": [
"InGameHudMixin",
"BookshelfInvoker",
"BookshelfMixin"
],
"injectors": {
"defaultRequire": 1
}
}
+30
View File
@@ -0,0 +1,30 @@
{
"schemaVersion": 1,
"id": "bookshelfinspector",
"version": "${version}",
"name": "Bookshelfinspector",
"description": "Inspect any book in a chiseled bookshelf.",
"authors": ["Lukasabbe"],
"contact": {},
"license": "MIT",
"icon": "assets/bookshelfinspector/icon.png",
"environment": "*",
"entrypoints": {
"client": [
"me.lukasabbe.bookshelfinspector.BookshelfinspectorClient"
],
"main": [
"me.lukasabbe.bookshelfinspector.Bookshelfinspector"
]
},
"mixins": [
"bookshelfinspector.mixins.json"
],
"depends": {
"fabricloader": ">=${loader_version}",
"minecraft": ">=${minecraft_version}",
"fabric-api-base": "*",
"fabric-networking-api-v1": "*",
"fabric-lifecycle-events-v1": "*"
}
}