Rebranding!

I feel kinda guilty about this, but it's probably a good idea to make it
clear that this isn't "actual, proper, stable" ComputerCraft.
This commit is contained in:
SquidDev 2017-11-15 16:25:10 +00:00
parent 2ae6fb47e7
commit dd3b69a633
7 changed files with 25 additions and 20 deletions

View File

@ -23,9 +23,9 @@
}
*/
version = "1.80pr1"
group = "dan200.computercraft"
archivesBaseName = "ComputerCraft"
version = "1.80pr1.1"
group = "org.squiddev"
archivesBaseName = "cc-tweaked"
minecraft {
version = "1.12-14.21.1.2387"

View File

@ -94,7 +94,7 @@
///////////////
@Mod(
modid = ComputerCraft.MOD_ID, name = "ComputerCraft", version = "${version}",
modid = ComputerCraft.MOD_ID, name = "CC: Tweaked", version = "${version}",
guiFactory = "dan200.computercraft.client.gui.GuiConfigCC$Factory"
)
public class ComputerCraft

View File

@ -18,7 +18,7 @@ public class GuiConfigCC extends GuiConfig
{
public GuiConfigCC( GuiScreen parentScreen )
{
super( parentScreen, getConfigElements(), ComputerCraft.MOD_ID, false, false, "ComputerCraft" );
super( parentScreen, getConfigElements(), ComputerCraft.MOD_ID, false, false, "CC: Tweaked" );
}
private static List<IConfigElement> getConfigElements()

View File

@ -9,6 +9,8 @@
import dan200.computercraft.ComputerCraft;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import javax.annotation.Nonnull;
@ -16,18 +18,20 @@ public class CreativeTabMain extends CreativeTabs
{
public CreativeTabMain( int i )
{
super( i, "ComputerCraft" );
super( i, "CC: Tweaked" );
}
@Nonnull
@Override
@SideOnly(Side.CLIENT)
public ItemStack getTabIconItem()
{
return new ItemStack( ComputerCraft.Blocks.computer );
}
@Nonnull
@Override
@SideOnly(Side.CLIENT)
public String getTranslatedTabLabel()
{
return getTabLabel();

View File

@ -1,18 +1,19 @@
[
{
"modid" : "computercraft",
"name" : "ComputerCraft",
"name" : "CC: Tweaked",
"version" : "${version}",
"mcversion" : "${mcversion}",
"url" : "http://www.computercraft.info",
"url" : "https://github.com/SquidDev-CC/CC-Tweaked",
"credits" : "Created by Daniel Ratcliffe (@DanTwoHundred)",
"authors" : [
"authorList" : [
"Daniel Ratcliffe",
"Aaron Mills"
"Aaron Mills",
"SquidDev"
],
"description" : "ComputerCraft adds Computers, Programming and Robotics to Minecraft.",
"description" : "CC: Tweaked is a fork of ComputerCraft with a focus on more experimental features.",
"logoFile" : "pack.png",
"updateUrl" : "http://www.computercraft.info",
"updateUrl" : "https://github.com/SquidDev-CC/CC-Tweaked",
"parent" : "",
"screenshots": [
]

View File

@ -1,6 +1,6 @@
{
"pack": {
"pack_format": 1,
"description": "ComputerCraft"
}
}
{
"pack": {
"pack_format": 1,
"description": "CC: Tweaked"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 499 B

After

Width:  |  Height:  |  Size: 638 B