mirror of
https://github.com/TotalFreedomMC/ZeroTelnetClient.git
synced 2024-12-22 08:15:17 +00:00
Change name to FreedomTelnetClient.
Prepare for v2.0.5 release.
This commit is contained in:
parent
83f62c51eb
commit
930a4a37e6
20 changed files with 49 additions and 56 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
/target/
|
||||
/btc_settings.xml
|
||||
/ftc_settings.xml
|
||||
|
|
23
README.md
23
README.md
|
@ -1,24 +1,17 @@
|
|||
BukkitTelnetClient
|
||||
FreedomTelnetClient
|
||||
==================
|
||||
|
||||
BukkitTelnetClient is a telnet client for use with the BukkitTelnet and TotalFreedomMod CraftBukkit plugins.
|
||||
FreedomTelnetClient (previously BukkitTelnetClient) is a telnet client for use with the BukkitTelnet and TotalFreedomMod CraftBukkit plugins.
|
||||
|
||||
Grab the latest release binary (2.0.3) here:
|
||||
Grab the latest release binary (2.0.5) here:
|
||||
|
||||
https://github.com/StevenLawson/BukkitTelnetClient/releases/latest
|
||||
https://github.com/StevenLawson/FreedomTelnetClient/releases/latest
|
||||
|
||||
Features for 2.0.4
|
||||
New features for 2.0.5
|
||||
---------------------
|
||||
|
||||
* New settings.xml file:
|
||||
* ftc_settings.xml file:
|
||||
* Lets you define custom commands for the player list's right-click dropdown.
|
||||
* Saves a history of your servers with a a descriptive name for the server address.
|
||||
|
||||
* Not yet implemented:
|
||||
* Define custom colors via settings file.
|
||||
* Define "favorite" command buttons via settings file.
|
||||
* "Reason" input dialog for applicable commands.
|
||||
|
||||
Grab the latest 2.0.4-SNAPSHOT pre-release binary here:
|
||||
|
||||
http://s3.madgeekonline.com/BukkitTelnetClient-2.0.4-SNAPSHOT-shaded.jar
|
||||
* Define "favorite" command buttons for new "Commands" tab.
|
||||
* "Reason" input dialog for applicable commands (any command that has a $REASON wildcard).
|
||||
|
|
6
pom.xml
6
pom.xml
|
@ -2,8 +2,8 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>me.StevenLawson</groupId>
|
||||
<artifactId>BukkitTelnetClient</artifactId>
|
||||
<version>2.0.4-SNAPSHOT</version>
|
||||
<artifactId>FreedomTelnetClient</artifactId>
|
||||
<version>2.0.5</version>
|
||||
<packaging>jar</packaging>
|
||||
<build>
|
||||
<plugins>
|
||||
|
@ -59,5 +59,5 @@
|
|||
<maven.compiler.source>1.7</maven.compiler.source>
|
||||
<maven.compiler.target>1.7</maven.compiler.target>
|
||||
</properties>
|
||||
<name>BukkitTelnetClient</name>
|
||||
<name>FreedomTelnetClient</name>
|
||||
</project>
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
@ -32,7 +32,7 @@ import org.xml.sax.SAXException;
|
|||
|
||||
public class BTC_ConfigLoader
|
||||
{
|
||||
private static final String SETTINGS_FILE = "btc_settings.xml";
|
||||
private static final String SETTINGS_FILE = "ftc_settings.xml";
|
||||
|
||||
private final ServerEntry.ServerEntryList servers = new ServerEntry.ServerEntryList();
|
||||
private final PlayerCommandEntry.PlayerCommandEntryList playerCommands = new PlayerCommandEntry.PlayerCommandEntryList();
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
@ -270,16 +270,16 @@ public class BTC_ConnectionManager
|
|||
{
|
||||
if (loginName == null)
|
||||
{
|
||||
title = String.format("BukkitTelnetClient - %s - %s:%d", BukkitTelnetClient.VERSION_STRING, hostname, port);
|
||||
title = String.format("FreedomTelnetClient - %s - %s:%d", BukkitTelnetClient.VERSION_STRING, hostname, port);
|
||||
}
|
||||
else
|
||||
{
|
||||
title = String.format("BukkitTelnetClient - %s - %s@%s:%d", BukkitTelnetClient.VERSION_STRING, loginName, hostname, port);
|
||||
title = String.format("FreedomTelnetClient - %s - %s@%s:%d", BukkitTelnetClient.VERSION_STRING, loginName, hostname, port);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
title = String.format("BukkitTelnetClient - %s - Disconnected", BukkitTelnetClient.VERSION_STRING);
|
||||
title = String.format("FreedomTelnetClient - %s - Disconnected", BukkitTelnetClient.VERSION_STRING);
|
||||
}
|
||||
|
||||
mainPanel.setTitle(title);
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
@ -25,7 +25,7 @@ import java.util.logging.Logger;
|
|||
|
||||
public class BukkitTelnetClient
|
||||
{
|
||||
public static final String VERSION_STRING = "v2.0.4-SNAPSHOT";
|
||||
public static final String VERSION_STRING = "v2.0.5";
|
||||
public static final Logger LOGGER = Logger.getLogger(BukkitTelnetClient.class.getName());
|
||||
public static BTC_MainPanel mainPanel = null;
|
||||
public static BTC_ConfigLoader config = new BTC_ConfigLoader();
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* Copyright (C) 2012-2014 Steven Lawson
|
||||
*
|
||||
* This file is part of BukkitTelnetClient.
|
||||
* This file is part of FreedomTelnetClient.
|
||||
*
|
||||
* BukkitTelnetClient is free software: you can redistribute it and/or modify
|
||||
* FreedomTelnetClient is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
|
|
Loading…
Reference in a new issue