mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-12 11:10:29 +00:00
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:
parent
2ae6fb47e7
commit
dd3b69a633
@ -23,9 +23,9 @@ plugins {
|
||||
}
|
||||
*/
|
||||
|
||||
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"
|
||||
|
@ -94,7 +94,7 @@ import java.util.zip.ZipFile;
|
||||
///////////////
|
||||
|
||||
@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
|
||||
|
@ -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()
|
||||
|
@ -9,6 +9,8 @@ package dan200.computercraft.shared.util;
|
||||
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,11 +18,12 @@ 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 );
|
||||
@ -28,6 +31,7 @@ public class CreativeTabMain extends CreativeTabs
|
||||
|
||||
@Nonnull
|
||||
@Override
|
||||
@SideOnly(Side.CLIENT)
|
||||
public String getTranslatedTabLabel()
|
||||
{
|
||||
return getTabLabel();
|
||||
|
@ -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": [
|
||||
]
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 1,
|
||||
"description": "ComputerCraft"
|
||||
"description": "CC: Tweaked"
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 499 B After Width: | Height: | Size: 638 B |
Loading…
Reference in New Issue
Block a user