mirror of
https://github.com/GeyserMC/Rainbow.git
synced 2025-12-19 14:59:16 +00:00
Refactor stuff to Geyser org
This commit is contained in:
@@ -7,7 +7,7 @@ loader_version=0.16.14
|
|||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=0.0.1-1.21.6
|
mod_version=0.0.1-1.21.6
|
||||||
maven_group=xyz.eclipseisoffline
|
maven_group=org.geysermc
|
||||||
archives_base_name=geyser-mappings-generator
|
archives_base_name=geyser-mappings-generator
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
package xyz.eclipseisoffline.geyser;
|
package org.geysermc.packgenerator;
|
||||||
|
|
||||||
import com.mojang.brigadier.arguments.StringArgumentType;
|
import com.mojang.brigadier.arguments.StringArgumentType;
|
||||||
import com.mojang.logging.LogUtils;
|
import com.mojang.logging.LogUtils;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package xyz.eclipseisoffline.geyser;
|
package org.geysermc.packgenerator;
|
||||||
|
|
||||||
import com.google.gson.Gson;
|
import com.google.gson.Gson;
|
||||||
import com.google.gson.GsonBuilder;
|
import com.google.gson.GsonBuilder;
|
||||||
@@ -11,6 +11,8 @@ import net.minecraft.core.component.DataComponents;
|
|||||||
import net.minecraft.network.chat.Component;
|
import net.minecraft.network.chat.Component;
|
||||||
import net.minecraft.resources.ResourceLocation;
|
import net.minecraft.resources.ResourceLocation;
|
||||||
import net.minecraft.world.item.ItemStack;
|
import net.minecraft.world.item.ItemStack;
|
||||||
|
import org.geysermc.packgenerator.mappings.GeyserMapping;
|
||||||
|
import org.geysermc.packgenerator.mappings.GeyserMappings;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package xyz.eclipseisoffline.geyser;
|
package org.geysermc.packgenerator.mappings;
|
||||||
|
|
||||||
import com.mojang.serialization.Codec;
|
import com.mojang.serialization.Codec;
|
||||||
import com.mojang.serialization.codecs.RecordCodecBuilder;
|
import com.mojang.serialization.codecs.RecordCodecBuilder;
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
package xyz.eclipseisoffline.geyser;
|
package org.geysermc.packgenerator.mappings;
|
||||||
|
|
||||||
import com.google.common.collect.Multimap;
|
import com.google.common.collect.Multimap;
|
||||||
import com.google.common.collect.MultimapBuilder;
|
import com.google.common.collect.MultimapBuilder;
|
||||||
@@ -2,16 +2,20 @@
|
|||||||
"schemaVersion": 1,
|
"schemaVersion": 1,
|
||||||
"id": "geyser-mappings-generator",
|
"id": "geyser-mappings-generator",
|
||||||
"version": "${version}",
|
"version": "${version}",
|
||||||
"name": "geyser-mappings-generator",
|
"name": "Geyser Mappings Generator",
|
||||||
"description": "",
|
"description": "A mod to generate Geyser mappings (and potentially in the future, full bedrock packs) for use with Geyser's custom item API (v2).",
|
||||||
"authors": [],
|
"authors": [
|
||||||
"contact": {},
|
"GeyserMC contributors"
|
||||||
|
],
|
||||||
|
"contact": {
|
||||||
|
"repo": "https://github.com/GeyserMC/geyser-mappings-generator"
|
||||||
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"icon": "assets/geyser-mappings-generator/icon.png",
|
"icon": "assets/geyser-mappings-generator/icon.png",
|
||||||
"environment": "client",
|
"environment": "client",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
"client": [
|
"client": [
|
||||||
"xyz.eclipseisoffline.geyser.GeyserMappingsGenerator"
|
"org.geysermc.packgenerator.GeyserMappingsGenerator"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"mixins": [
|
"mixins": [
|
||||||
|
|||||||
@@ -1,12 +1,10 @@
|
|||||||
{
|
{
|
||||||
"required": true,
|
"required": true,
|
||||||
"minVersion": "0.8",
|
"minVersion": "0.8",
|
||||||
"package": "xyz.eclipseisoffline.geyser.mixin",
|
"package": "org.geysermc.packgenerator.mixin",
|
||||||
"compatibilityLevel": "JAVA_21",
|
"compatibilityLevel": "JAVA_21",
|
||||||
"mixins": [
|
"mixins": [],
|
||||||
],
|
"client": [],
|
||||||
"client": [
|
|
||||||
],
|
|
||||||
"injectors": {
|
"injectors": {
|
||||||
"defaultRequire": 1
|
"defaultRequire": 1
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user