Skip to content

Commit

Permalink
Mod name change
Browse files Browse the repository at this point in the history
  • Loading branch information
anviaan committed Jul 21, 2024
1 parent d5035c5 commit a7d5043
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ loader_version=0.15.11

# Mod Properties
mod_version=1.0
maven_group=net.anvian.smartinventory
archives_base_name=SmartInventory
maven_group=net.anvian.inventorytweaks
archives_base_name=InventoryTweaks

# Dependencies
fabric_version=0.100.7+1.21
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package net.anvian.smartinventory;
package net.anvian.inventorytweaks;

import net.anvian.smartinventory.handler.ModKeyBinding;
import net.anvian.inventorytweaks.handler.ModKeyBinding;
import net.fabricmc.api.ClientModInitializer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class SmartInventory implements ClientModInitializer {
public static final String MOD_ID = "smartinventory";
public static final String MOD_NAME = "Smart Inventory";
public static final String MOD_ID = "inventorytweaks";
public static final String MOD_NAME = "Inventory Tweaks";
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID);

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.anvian.smartinventory.handler;
package net.anvian.inventorytweaks.handler;

import net.minecraft.client.MinecraftClient;
import net.minecraft.client.network.ClientPlayerEntity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.anvian.smartinventory.handler;
package net.anvian.inventorytweaks.handler;

import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper;
import net.minecraft.client.option.KeyBinding;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package net.anvian.smartinventory.mixin;
package net.anvian.inventorytweaks.mixin;

import net.anvian.smartinventory.handler.ModKeyBinding;
import net.anvian.smartinventory.sort.SortInventory;
import net.anvian.inventorytweaks.handler.ModKeyBinding;
import net.anvian.inventorytweaks.sort.SortInventory;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.gui.screen.ingame.CreativeInventoryScreen;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.anvian.smartinventory.slots;
package net.anvian.inventorytweaks.slots;

import net.minecraft.client.MinecraftClient;
import net.minecraft.entity.player.PlayerInventory;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.anvian.smartinventory.slots;
package net.anvian.inventorytweaks.slots;

import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.screen.Screen;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package net.anvian.smartinventory.slots;
package net.anvian.inventorytweaks.slots;

import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.screen.ingame.InventoryScreen;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package net.anvian.smartinventory.sort;
package net.anvian.inventorytweaks.sort;

import net.anvian.smartinventory.handler.Interaction;
import net.anvian.smartinventory.slots.ContainerSlots;
import net.anvian.smartinventory.slots.InventorySlots;
import net.anvian.smartinventory.slots.PlayerSlots;
import net.anvian.inventorytweaks.handler.Interaction;
import net.anvian.inventorytweaks.slots.ContainerSlots;
import net.anvian.inventorytweaks.slots.InventorySlots;
import net.anvian.inventorytweaks.slots.PlayerSlots;
import net.minecraft.item.ItemStack;
import net.minecraft.screen.ScreenHandler;

Expand Down
14 changes: 7 additions & 7 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"schemaVersion": 1,
"id": "smartinventory",
"id": "inventorytweaks",
"version": "${version}",
"name": "SmartInventory",
"name": "Inventory Tweaks",
"description": "A simple inventory management mod for Minecraft",
"authors": [
"anvian"
],
"contact": {
"homepage": "",
"sources": "https://github.com/anviaan/SmartInventory",
"issues": "https://github.com/anviaan/SmartInventory/issues"
"sources": "https://github.com/anviaan/InventoryTweaks",
"issues": "https://github.com/anviaan/InventoryTweaks/issues"
},
"license": "GPL-3.0",
"icon": "assets/smartinventory/icon.png",
"icon": "assets/inventorytweaks/icon.png",
"environment": "*",
"entrypoints": {
"client": [
"net.anvian.smartinventory.SmartInventory"
"net.anvian.inventorytweaks.SmartInventory"
]
},
"mixins": [
"smartinventory.mixins.json"
"inventorytweaks.mixins.json"
],
"depends": {
"fabricloader": ">=0.15.11",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"required": true,
"package": "net.anvian.smartinventory.mixin",
"package": "net.anvian.inventorytweaks.mixin",
"compatibilityLevel": "JAVA_21",
"client": [
"MixinKeyInputHandler"
Expand Down

0 comments on commit a7d5043

Please sign in to comment.