Skip to content

Commit

Permalink
0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
saschb2b committed Apr 4, 2014
1 parent 4346623 commit 54f62fd
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Manifest-Version: 1.0
Class-Path: . CraftenLauncher_lib/gson-2.2.4.jar
Specification-Version: 0.10.0
Specification-Version: 0.11.0
Main-Class: de.craften.craftenlauncher.Application

2 changes: 1 addition & 1 deletion src/de/craften/craftenlauncher/GUI/panel/Login.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private void addHeader() {
_login.setForeground(Color.WHITE);
add(_login);

_withYourMinecraftAccount = new JLabel("with your Minecraft Account");
_withYourMinecraftAccount = new JLabel("with your Premium Minecraft Account");
_withYourMinecraftAccount.setVerticalTextPosition(SwingConstants.CENTER);
_withYourMinecraftAccount.setFont(_fontPlain);
_withYourMinecraftAccount.setSize(this.getWidth(), 60);
Expand Down
2 changes: 0 additions & 2 deletions src/de/craften/craftenlauncher/GUI/panel/Profile.java
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,6 @@ public void actionPerformed(ActionEvent e) {
_version.setLocation(_cbVersions.getLocation());
_version.setForeground(Color.WHITE);
_version.addMouseListener(new MouseAdapter() {
Font original;

@Override
public void mouseClicked(MouseEvent e) {
_version.setVisible(false);
Expand Down
2 changes: 1 addition & 1 deletion src/de/craften/craftenlauncher/logic/LogicController.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private void logLauncherVersion() {
if(version != null) {
Logger.getInstance().logInfo("Launcher version: " + version);
} else {
Logger.getInstance().logInfo("Launcher version: 0.10.0");
Logger.getInstance().logInfo("Launcher version: 0.11.0");
}
}

Expand Down

0 comments on commit 54f62fd

Please sign in to comment.