tweaks + sounds

This commit is contained in:
Failure 2024-11-17 16:50:19 -08:00
parent 729ccebb2a
commit bcbb37e90c
13 changed files with 3 additions and 3 deletions

1
.gitignore vendored
View file

@ -61,3 +61,4 @@ Utils/*implemented.txt
# build tools
mage-bundle.zip
.env
.classpath

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -88,7 +88,7 @@ import java.util.stream.Collectors;
*/
public class MageFrame extends javax.swing.JFrame implements MageClient {
private static final String TITLE_NAME = "XMage";
private static final String TITLE_NAME = "XMage (Foul Magics)";
private static final Logger LOGGER = Logger.getLogger(MageFrame.class);
private static final String LITE_MODE_ARG = "-lite";

View file

@ -135,7 +135,7 @@ public class DeckGeneratorDialog {
c.ipadx = 30;
c.insets = new Insets(5, 10, 0, 10);
c.weightx = 0.90;
cbDeckSize = new JComboBox<>(new String[]{"40", "60"});
cbDeckSize = new JComboBox<>(new String[]{"40", "60", "100"});
cbDeckSize.setSelectedIndex(0);
cbDeckSize.setAlignmentX(Component.LEFT_ALIGNMENT);
mainPanel.add(cbDeckSize, c);

View file

@ -287,7 +287,6 @@ public class Session {
body.addProperty("accountName", userName);
String json = body.toString();
System.out.println(json);
URL url = new URL(managerFactory.configSettings().getAuthUrl());
HttpURLConnection conn = (HttpURLConnection) url.openConnection();