mirror of
https://github.com/TotalFreedomMC/ZeroTelnetClient.git
synced 2024-12-22 16:25:14 +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/
|
/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.
|
* 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.
|
* Saves a history of your servers with a a descriptive name for the server address.
|
||||||
|
* Define "favorite" command buttons for new "Commands" tab.
|
||||||
* Not yet implemented:
|
* "Reason" input dialog for applicable commands (any command that has a $REASON wildcard).
|
||||||
* 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
|
|
||||||
|
|
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">
|
<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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>me.StevenLawson</groupId>
|
<groupId>me.StevenLawson</groupId>
|
||||||
<artifactId>BukkitTelnetClient</artifactId>
|
<artifactId>FreedomTelnetClient</artifactId>
|
||||||
<version>2.0.4-SNAPSHOT</version>
|
<version>2.0.5</version>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -59,5 +59,5 @@
|
||||||
<maven.compiler.source>1.7</maven.compiler.source>
|
<maven.compiler.source>1.7</maven.compiler.source>
|
||||||
<maven.compiler.target>1.7</maven.compiler.target>
|
<maven.compiler.target>1.7</maven.compiler.target>
|
||||||
</properties>
|
</properties>
|
||||||
<name>BukkitTelnetClient</name>
|
<name>FreedomTelnetClient</name>
|
||||||
</project>
|
</project>
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
@ -32,7 +32,7 @@ import org.xml.sax.SAXException;
|
||||||
|
|
||||||
public class BTC_ConfigLoader
|
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 ServerEntry.ServerEntryList servers = new ServerEntry.ServerEntryList();
|
||||||
private final PlayerCommandEntry.PlayerCommandEntryList playerCommands = new PlayerCommandEntry.PlayerCommandEntryList();
|
private final PlayerCommandEntry.PlayerCommandEntryList playerCommands = new PlayerCommandEntry.PlayerCommandEntryList();
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
@ -270,16 +270,16 @@ public class BTC_ConnectionManager
|
||||||
{
|
{
|
||||||
if (loginName == null)
|
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
|
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
|
else
|
||||||
{
|
{
|
||||||
title = String.format("BukkitTelnetClient - %s - Disconnected", BukkitTelnetClient.VERSION_STRING);
|
title = String.format("FreedomTelnetClient - %s - Disconnected", BukkitTelnetClient.VERSION_STRING);
|
||||||
}
|
}
|
||||||
|
|
||||||
mainPanel.setTitle(title);
|
mainPanel.setTitle(title);
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
@ -25,7 +25,7 @@ import java.util.logging.Logger;
|
||||||
|
|
||||||
public class BukkitTelnetClient
|
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 final Logger LOGGER = Logger.getLogger(BukkitTelnetClient.class.getName());
|
||||||
public static BTC_MainPanel mainPanel = null;
|
public static BTC_MainPanel mainPanel = null;
|
||||||
public static BTC_ConfigLoader config = new BTC_ConfigLoader();
|
public static BTC_ConfigLoader config = new BTC_ConfigLoader();
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2012-2014 Steven Lawson
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* (at your option) any later version.
|
* (at your option) any later version.
|
||||||
|
|
Loading…
Reference in a new issue