Skip to content

Commit 930a4a3

Browse files
committed
Change name to FreedomTelnetClient.
Prepare for v2.0.5 release.
1 parent 83f62c5 commit 930a4a3

20 files changed

Lines changed: 49 additions & 56 deletions

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/target/
2-
/btc_settings.xml
2+
/ftc_settings.xml

README.md

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
1-
BukkitTelnetClient
1+
FreedomTelnetClient
22
==================
33

4-
BukkitTelnetClient is a telnet client for use with the BukkitTelnet and TotalFreedomMod CraftBukkit plugins.
4+
FreedomTelnetClient (previously BukkitTelnetClient) is a telnet client for use with the BukkitTelnet and TotalFreedomMod CraftBukkit plugins.
55

6-
Grab the latest release binary (2.0.3) here:
6+
Grab the latest release binary (2.0.5) here:
77

8-
https://github.com/StevenLawson/BukkitTelnetClient/releases/latest
8+
https://github.com/StevenLawson/FreedomTelnetClient/releases/latest
99

10-
Features for 2.0.4
10+
New features for 2.0.5
1111
---------------------
1212

13-
* New settings.xml file:
13+
* ftc_settings.xml file:
1414
* Lets you define custom commands for the player list's right-click dropdown.
1515
* Saves a history of your servers with a a descriptive name for the server address.
16-
17-
* Not yet implemented:
18-
* Define custom colors via settings file.
19-
* Define "favorite" command buttons via settings file.
20-
* "Reason" input dialog for applicable commands.
21-
22-
Grab the latest 2.0.4-SNAPSHOT pre-release binary here:
23-
24-
http://s3.madgeekonline.com/BukkitTelnetClient-2.0.4-SNAPSHOT-shaded.jar
16+
* Define "favorite" command buttons for new "Commands" tab.
17+
* "Reason" input dialog for applicable commands (any command that has a $REASON wildcard).

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<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">
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>me.StevenLawson</groupId>
5-
<artifactId>BukkitTelnetClient</artifactId>
6-
<version>2.0.4-SNAPSHOT</version>
5+
<artifactId>FreedomTelnetClient</artifactId>
6+
<version>2.0.5</version>
77
<packaging>jar</packaging>
88
<build>
99
<plugins>
@@ -59,5 +59,5 @@
5959
<maven.compiler.source>1.7</maven.compiler.source>
6060
<maven.compiler.target>1.7</maven.compiler.target>
6161
</properties>
62-
<name>BukkitTelnetClient</name>
62+
<name>FreedomTelnetClient</name>
6363
</project>

src/main/java/me/StevenLawson/BukkitTelnetClient/BTC_ConfigLoader.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Copyright (C) 2012-2014 Steven Lawson
33
*
4-
* This file is part of BukkitTelnetClient.
4+
* This file is part of FreedomTelnetClient.
55
*
6-
* BukkitTelnetClient is free software: you can redistribute it and/or modify
6+
* FreedomTelnetClient is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation, either version 3 of the License, or
99
* (at your option) any later version.
@@ -32,7 +32,7 @@
3232

3333
public class BTC_ConfigLoader
3434
{
35-
private static final String SETTINGS_FILE = "btc_settings.xml";
35+
private static final String SETTINGS_FILE = "ftc_settings.xml";
3636

3737
private final ServerEntry.ServerEntryList servers = new ServerEntry.ServerEntryList();
3838
private final PlayerCommandEntry.PlayerCommandEntryList playerCommands = new PlayerCommandEntry.PlayerCommandEntryList();

src/main/java/me/StevenLawson/BukkitTelnetClient/BTC_ConnectionManager.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Copyright (C) 2012-2014 Steven Lawson
33
*
4-
* This file is part of BukkitTelnetClient.
4+
* This file is part of FreedomTelnetClient.
55
*
6-
* BukkitTelnetClient is free software: you can redistribute it and/or modify
6+
* FreedomTelnetClient is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation, either version 3 of the License, or
99
* (at your option) any later version.
@@ -270,16 +270,16 @@ public final void updateTitle(final boolean isConnected)
270270
{
271271
if (loginName == null)
272272
{
273-
title = String.format("BukkitTelnetClient - %s - %s:%d", BukkitTelnetClient.VERSION_STRING, hostname, port);
273+
title = String.format("FreedomTelnetClient - %s - %s:%d", BukkitTelnetClient.VERSION_STRING, hostname, port);
274274
}
275275
else
276276
{
277-
title = String.format("BukkitTelnetClient - %s - %s@%s:%d", BukkitTelnetClient.VERSION_STRING, loginName, hostname, port);
277+
title = String.format("FreedomTelnetClient - %s - %s@%s:%d", BukkitTelnetClient.VERSION_STRING, loginName, hostname, port);
278278
}
279279
}
280280
else
281281
{
282-
title = String.format("BukkitTelnetClient - %s - Disconnected", BukkitTelnetClient.VERSION_STRING);
282+
title = String.format("FreedomTelnetClient - %s - Disconnected", BukkitTelnetClient.VERSION_STRING);
283283
}
284284

285285
mainPanel.setTitle(title);

src/main/java/me/StevenLawson/BukkitTelnetClient/BTC_ConsoleMessage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Copyright (C) 2012-2014 Steven Lawson
33
*
4-
* This file is part of BukkitTelnetClient.
4+
* This file is part of FreedomTelnetClient.
55
*
6-
* BukkitTelnetClient is free software: you can redistribute it and/or modify
6+
* FreedomTelnetClient is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation, either version 3 of the License, or
99
* (at your option) any later version.

src/main/java/me/StevenLawson/BukkitTelnetClient/BTC_FavoriteButtonsPanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Copyright (C) 2012-2014 Steven Lawson
33
*
4-
* This file is part of BukkitTelnetClient.
4+
* This file is part of FreedomTelnetClient.
55
*
6-
* BukkitTelnetClient is free software: you can redistribute it and/or modify
6+
* FreedomTelnetClient is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation, either version 3 of the License, or
99
* (at your option) any later version.

src/main/java/me/StevenLawson/BukkitTelnetClient/BTC_MainPanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Copyright (C) 2012-2014 Steven Lawson
33
*
4-
* This file is part of BukkitTelnetClient.
4+
* This file is part of FreedomTelnetClient.
55
*
6-
* BukkitTelnetClient is free software: you can redistribute it and/or modify
6+
* FreedomTelnetClient is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation, either version 3 of the License, or
99
* (at your option) any later version.

src/main/java/me/StevenLawson/BukkitTelnetClient/BTC_PlayerListDecoder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Copyright (C) 2012-2014 Steven Lawson
33
*
4-
* This file is part of BukkitTelnetClient.
4+
* This file is part of FreedomTelnetClient.
55
*
6-
* BukkitTelnetClient is free software: you can redistribute it and/or modify
6+
* FreedomTelnetClient is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation, either version 3 of the License, or
99
* (at your option) any later version.

src/main/java/me/StevenLawson/BukkitTelnetClient/BTC_TelnetMessage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* Copyright (C) 2012-2014 Steven Lawson
33
*
4-
* This file is part of BukkitTelnetClient.
4+
* This file is part of FreedomTelnetClient.
55
*
6-
* BukkitTelnetClient is free software: you can redistribute it and/or modify
6+
* FreedomTelnetClient is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by
88
* the Free Software Foundation, either version 3 of the License, or
99
* (at your option) any later version.

0 commit comments

Comments
 (0)