beginning of the neocomputer
Some checks failed
build / build (21, ubuntu-22.04) (push) Failing after 12s
build / build (21, windows-2022) (push) Has been cancelled

This commit is contained in:
2026-04-07 19:52:58 -03:00
parent cf960ba22c
commit 2328169f2a
33 changed files with 227 additions and 214 deletions

View File

@@ -1,19 +1,19 @@
modLoader = "javafml"
loaderVersion = "*"
license = "LGPLv3"
issueTrackerURL="https://AuthorExample/TempLate/issues"
issueTrackerURL="https://github.com/NeoFlock/NeoComputers/issues"
[[mods]]
modId = "template"
modId = "neocomputers"
version = "${version}"
displayName = "${name}"
authors = "AuthorExample"
authors = "NeoFlock Team"
description = ""
logoFile = "assets/template/icon.png"
logoFile = "assets/neocomputers/icon.png"
logoBlur = false
[[mixins]]
config = "template-common.mixins.json"
config = "neocomputers-common.mixins.json"
[[mixins]]
config = "template-neoforge.mixins.json"
config = "neocomputers-neoforge.mixins.json"

View File

@@ -1,19 +1,19 @@
modLoader = "javafml"
loaderVersion = "*"
license = "LGPLv3"
issueTrackerURL="https://AuthorExample/TempLate/issues"
issueTrackerURL="https://github.com/NeoFlock/NeoComputers/issues"
[[mods]]
modId = "template"
modId = "neocomputers"
version = "${version}"
displayName = "${name}"
authors = "AuthorExample"
authors = "NeoFlock Team"
description = ""
logoFile = "assets/template/icon.png"
logoFile = "assets/neocomputers/icon.png"
logoBlur = false
[[mixins]]
config = "template-common.mixins.json"
config = "neocomputers-common.mixins.json"
[[mixins]]
config = "template-neoforge.mixins.json"
config = "neocomputers-neoforge.mixins.json"

View File

@@ -1,3 +1,3 @@
{
"accessWidener": "template.accesswidener"
"accessWidener": "neocomputers.accesswidener"
}

View File

@@ -0,0 +1,4 @@
{
"neocomputers.confirm": "Confirm",
"neocomputers.cancel": "Cancel"
}

View File

@@ -1,4 +0,0 @@
{
"template.confirm": "Confirm",
"template.cancel": "Cancel"
}

View File

@@ -5,7 +5,7 @@
"name": "${name}",
"description": "",
"authors": [
"AuthorExample"
"NeoFlock Team"
],
"contact": {
},
@@ -14,18 +14,19 @@
"environment": "*",
"entrypoints": {
"main": [
"com.example.template.platforms.fabric.TempLateFabric"
"org.neoflock.neocomputers.platforms.fabric.NeoComputersFabric"
],
"modmenu": [
"com.example.template.platforms.fabric.ModMenuIntegration"
"org.neoflock.neocomputers.platforms.fabric.ModMenuIntegration"
]
},
"mixins": [
"template-common.mixins.json",
"template-fabric.mixins.json"
"neocomputers-common.mixins.json",
"neocomputers-fabric.mixins.json"
],
"depends": {
"fabricloader": ">=0.15",
"minecraft": "${minecraft}"
"minecraft": "${minecraft}",
"fabric-language-kotlin": ">=1.13.10+kotlin.2.3.20"
}
}

View File

@@ -1,6 +1,6 @@
{
"required": true,
"package": "com.example.template.mixin",
"package": "org.neoflock.neocomputers.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],

View File

@@ -1,6 +1,6 @@
{
"required": true,
"package": "com.example.template.platforms.fabric.mixin",
"package": "org.neoflock.neocomputers.platforms.fabric.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],

View File

@@ -1,6 +1,6 @@
{
"required": true,
"package": "com.example.template.platforms.neoforge.mixin",
"package": "org.neoflock.neocomputers.platforms.forge.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],

View File

@@ -1,6 +1,6 @@
{
"required": true,
"package": "com.example.template.platforms.forge.mixin",
"package": "org.neoflock.neocomputers.platforms.neoforge.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],