mirror of
https://github.com/JonasunderscoreJones/McWebserver.git
synced 2025-10-23 11:29:19 +02:00
Added base mod
base mod with basic http server and simple config system
This commit is contained in:
commit
ec3c622896
231 changed files with 3298 additions and 0 deletions
14
build/classes/java/main/fabric-example-mod-refmap.json
Normal file
14
build/classes/java/main/fabric-example-mod-refmap.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"mappings": {
|
||||
"me/jonasjones/mcwebserver/mixin/InitializeMixin": {
|
||||
"init()V": "Lnet/minecraft/class_442;method_25426()V"
|
||||
}
|
||||
},
|
||||
"data": {
|
||||
"named:intermediary": {
|
||||
"me/jonasjones/mcwebserver/mixin/InitializeMixin": {
|
||||
"init()V": "Lnet/minecraft/class_442;method_25426()V"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
v1 named intermediary
|
BIN
build/resources/main/assets/mcwebserver/icon.png
Normal file
BIN
build/resources/main/assets/mcwebserver/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 453 B |
39
build/resources/main/fabric.mod.json
Normal file
39
build/resources/main/fabric.mod.json
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "mcwebserver",
|
||||
"version": "v0.1.0",
|
||||
|
||||
"name": "McWebserver",
|
||||
"description": "A simple webserver that runs alongside the Minecraft Server",
|
||||
"authors": [
|
||||
"Jonas_Jones"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://jonasjones.me/McWebserver",
|
||||
"sources": "https://github.com/J-onasJones/McWebserver",
|
||||
"issues": "https://github.com/J-onasJones/McWebserver/issues"
|
||||
},
|
||||
|
||||
"license": "CC0-1.0",
|
||||
"icon": "assets/mcwebserver/icon.png",
|
||||
|
||||
"environment": "server",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"me.jonasjones.mcwebserver.McWebserver"
|
||||
]
|
||||
},
|
||||
"mixins": [
|
||||
"mcwebserver.mixins.json"
|
||||
],
|
||||
|
||||
"depends": {
|
||||
"fabricloader": ">=0.14.6",
|
||||
"fabric": "*",
|
||||
"minecraft": "~1.19",
|
||||
"java": ">=17"
|
||||
},
|
||||
"suggests": {
|
||||
"another-mod": "*"
|
||||
}
|
||||
}
|
14
build/resources/main/mcwebserver.mixins.json
Normal file
14
build/resources/main/mcwebserver.mixins.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "net.fabricmc.example.mixin",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
],
|
||||
"client": [
|
||||
"ExampleMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
BIN
build/tmp/compileJava/previous-compilation-data.bin
Normal file
BIN
build/tmp/compileJava/previous-compilation-data.bin
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue