forked from ata4/bspsrc
-
Notifications
You must be signed in to change notification settings - Fork 0
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
30 changed files
with
1,595 additions
and
2,923 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
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,2 +1,2 @@ | ||
@echo off | ||
start <java_path>javaw -cp %~dp0\bspsrc.jar info.ata4.bspsrc.app.info.gui.BspInfoFrame %* | ||
start <java_path>javaw -cp %~dp0\bspsrc.jar info.ata4.bspsrc.app.info.BspInfo %* |
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,3 +1,3 @@ | ||
#!/bin/sh | ||
BASEDIR=$(dirname "$0") | ||
<java_path>java -cp "$BASEDIR/bspsrc.jar" info.ata4.bspsrc.app.info.gui.BspInfoFrame $* | ||
<java_path>java -cp "$BASEDIR/bspsrc.jar" info.ata4.bspsrc.app.info.BspInfo $* |
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
27 changes: 27 additions & 0 deletions
27
bspsrc-app/src/main/java/info/ata4/bspsrc/app/info/BspInfo.java
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package info.ata4.bspsrc.app.info; | ||
|
||
import info.ata4.bspsrc.app.info.gui.BspInfoFrame; | ||
import info.ata4.bspsrc.app.info.gui.models.BspInfoModel; | ||
import info.ata4.bspsrc.app.util.GuiUtil; | ||
import info.ata4.log.LogUtils; | ||
|
||
import javax.swing.*; | ||
import java.util.logging.Logger; | ||
|
||
public class BspInfo { | ||
|
||
private static final Logger L = LogUtils.getLogger(); | ||
|
||
/** | ||
* @param args the command line arguments | ||
*/ | ||
public static void main(String[] args) { | ||
LogUtils.configure(); | ||
GuiUtil.setupFlatlaf(); | ||
|
||
SwingUtilities.invokeLater(() -> { | ||
var frame = new BspInfoFrame(new BspInfoModel()); | ||
frame.setVisible(true); | ||
}); | ||
} | ||
} |
1,246 changes: 0 additions & 1,246 deletions
1,246
bspsrc-app/src/main/java/info/ata4/bspsrc/app/info/gui/BspInfoFrame.form
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.