mirror of
https://github.com/correl/mage.git
synced 2024-11-28 11:09:54 +00:00
Mage 1.2.0 Release
This commit is contained in:
parent
46e450fa96
commit
b724d7fe13
6 changed files with 6 additions and 5 deletions
|
@ -152,7 +152,7 @@ public class MageFrame extends javax.swing.JFrame implements MageClient {
|
||||||
private static Preferences prefs = Preferences.userNodeForPackage(MageFrame.class);
|
private static Preferences prefs = Preferences.userNodeForPackage(MageFrame.class);
|
||||||
private JLabel title;
|
private JLabel title;
|
||||||
private Rectangle titleRectangle;
|
private Rectangle titleRectangle;
|
||||||
private static final MageVersion version = new MageVersion(1, 2, 0, "dev");
|
private static final MageVersion version = new MageVersion(1, 2, 0, "");
|
||||||
private UUID clientId;
|
private UUID clientId;
|
||||||
private static MagePane activeFrame;
|
private static MagePane activeFrame;
|
||||||
private static boolean liteMode = false;
|
private static boolean liteMode = false;
|
||||||
|
|
|
@ -30,7 +30,7 @@ public class MultiConnectTest {
|
||||||
|
|
||||||
private static final CountDownLatch latch = new CountDownLatch(USER_CONNECT_COUNT);
|
private static final CountDownLatch latch = new CountDownLatch(USER_CONNECT_COUNT);
|
||||||
|
|
||||||
private static final MageVersion version = new MageVersion(1, 2, 0, "dev");
|
private static final MageVersion version = new MageVersion(1, 2, 0, "");
|
||||||
|
|
||||||
private static volatile int connected;
|
private static volatile int connected;
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ public class ConsoleFrame extends javax.swing.JFrame implements MageClient {
|
||||||
private static Session session;
|
private static Session session;
|
||||||
private ConnectDialog connectDialog;
|
private ConnectDialog connectDialog;
|
||||||
private static Preferences prefs = Preferences.userNodeForPackage(ConsoleFrame.class);
|
private static Preferences prefs = Preferences.userNodeForPackage(ConsoleFrame.class);
|
||||||
private static final MageVersion version = new MageVersion(1, 2, 0, "dev");
|
private static final MageVersion version = new MageVersion(1, 2, 0, "");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the session
|
* @return the session
|
||||||
|
|
|
@ -80,7 +80,7 @@ public class Main {
|
||||||
private static final String testModeArg = "-testMode=";
|
private static final String testModeArg = "-testMode=";
|
||||||
private static final String adminPasswordArg = "-adminPassword=";
|
private static final String adminPasswordArg = "-adminPassword=";
|
||||||
private static final String pluginFolder = "plugins";
|
private static final String pluginFolder = "plugins";
|
||||||
private static MageVersion version = new MageVersion(1, 2, 0, "dev");
|
private static MageVersion version = new MageVersion(1, 2, 0, "");
|
||||||
|
|
||||||
public static PluginClassLoader classLoader = new PluginClassLoader();
|
public static PluginClassLoader classLoader = new PluginClassLoader();
|
||||||
public static TransporterServer server;
|
public static TransporterServer server;
|
||||||
|
|
|
@ -4,6 +4,7 @@ log4j.logger.com.j256.ormlite=warn
|
||||||
#log4j.logger.mage.player.ai=TRACE
|
#log4j.logger.mage.player.ai=TRACE
|
||||||
#log4j.logger.mage.player.ai.ComputerPlayer6=debug
|
#log4j.logger.mage.player.ai.ComputerPlayer6=debug
|
||||||
#log4j.logger.mage.player.ai.ComputerPlayer7=debug
|
#log4j.logger.mage.player.ai.ComputerPlayer7=debug
|
||||||
|
#log4j.logger.mage.player.ai.GameStateEvaluator2=debug
|
||||||
#log4j.logger.mage.player.human=DEBUG, console, logfile
|
#log4j.logger.mage.player.human=DEBUG, console, logfile
|
||||||
#log4j.additivity.mage.player.human=false
|
#log4j.additivity.mage.player.human=false
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ import org.apache.log4j.Logger;
|
||||||
public class SimpleMageClient implements MageClient {
|
public class SimpleMageClient implements MageClient {
|
||||||
|
|
||||||
private UUID clientId;
|
private UUID clientId;
|
||||||
private static final MageVersion version = new MageVersion(1, 2, 0, "dev");
|
private static final MageVersion version = new MageVersion(1, 2, 0, "");
|
||||||
|
|
||||||
private static final transient Logger log = Logger.getLogger(SimpleMageClient.class);
|
private static final transient Logger log = Logger.getLogger(SimpleMageClient.class);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue