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" version = "1.80pr1.1"
group = "dan200.computercraft" group = "org.squiddev"
archivesBaseName = "ComputerCraft" archivesBaseName = "cc-tweaked"
minecraft { minecraft {
version = "1.12-14.21.1.2387" version = "1.12-14.21.1.2387"

View File

@ -94,7 +94,7 @@
/////////////// ///////////////
@Mod( @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" guiFactory = "dan200.computercraft.client.gui.GuiConfigCC$Factory"
) )
public class ComputerCraft public class ComputerCraft

View File

@ -18,7 +18,7 @@ public class GuiConfigCC extends GuiConfig
{ {
public GuiConfigCC( GuiScreen parentScreen ) 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() private static List<IConfigElement> getConfigElements()

View File

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

View File

@ -1,18 +1,19 @@
[ [
{ {
"modid" : "computercraft", "modid" : "computercraft",
"name" : "ComputerCraft", "name" : "CC: Tweaked",
"version" : "${version}", "version" : "${version}",
"mcversion" : "${mcversion}", "mcversion" : "${mcversion}",
"url" : "http://www.computercraft.info", "url" : "https://github.com/SquidDev-CC/CC-Tweaked",
"credits" : "Created by Daniel Ratcliffe (@DanTwoHundred)", "credits" : "Created by Daniel Ratcliffe (@DanTwoHundred)",
"authors" : [ "authorList" : [
"Daniel Ratcliffe", "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", "logoFile" : "pack.png",
"updateUrl" : "http://www.computercraft.info", "updateUrl" : "https://github.com/SquidDev-CC/CC-Tweaked",
"parent" : "", "parent" : "",
"screenshots": [ "screenshots": [
] ]

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 499 B

After

Width:  |  Height:  |  Size: 638 B