-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
8 additions
and
931 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
package me.replydev.qubo; | ||
|
||
public class Info { | ||
public static final String version = "0.4"; | ||
public static final String version = "1.0.0-SNAPSHOT"; | ||
public static final String otherVersionInfo = ""; | ||
public static int serverFound = 0; | ||
public static int serverNotFilteredFound = 0; | ||
public static boolean gui; | ||
public static boolean debugMode; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,7 @@ | ||
package me.replydev.qubo; | ||
|
||
import com.formdev.flatlaf.FlatDarculaLaf; | ||
import me.replydev.qubo.gui.MainWindow; | ||
|
||
import javax.swing.*; | ||
|
||
public class Main { | ||
public static void main(String[] args) { | ||
if (args.length == 0) { | ||
FlatDarculaLaf.install(); | ||
JFrame.setDefaultLookAndFeelDecorated(true); | ||
Info.gui = true; | ||
new MainWindow(); | ||
} else { | ||
Info.gui = false; | ||
CLI.init(args); | ||
} | ||
CLI.init(args); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.