mirror of
https://github.com/developersu/ns-usbloader.git
synced 2025-05-19 17:55:21 -04:00
Readme update & few absolutely non-significant changes.
This commit is contained in:
parent
6f5d02a864
commit
10d7cce148
4 changed files with 11 additions and 5 deletions
|
@ -98,7 +98,8 @@ public class NSTableViewController implements Initializable {
|
|||
protected void updateItem(Long length, boolean empty) {
|
||||
if (length == null || empty) {
|
||||
setText("");
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
setText(formatByteSize(length));
|
||||
}
|
||||
}
|
||||
|
@ -218,8 +219,9 @@ public class NSTableViewController implements Initializable {
|
|||
rowsObsLst.removeIf(current -> ! current.getNspFileName().toLowerCase().endsWith("nsp"));
|
||||
table.refresh();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Used for showing in 'Size' column size representation in human-readable format
|
||||
* */
|
||||
private String formatByteSize(double length) {
|
||||
final String[] unitNames = { "bytes", "KiB", "MiB", "GiB", "TiB"};
|
||||
int i;
|
||||
|
|
|
@ -12,7 +12,7 @@ import java.util.Locale;
|
|||
import java.util.ResourceBundle;
|
||||
|
||||
public class NSLMain extends Application {
|
||||
public static final String appVersion = "v0.8";
|
||||
public static final String appVersion = "v0.8.1";
|
||||
@Override
|
||||
public void start(Stage primaryStage) throws Exception{
|
||||
FXMLLoader loader = new FXMLLoader(getClass().getResource("/NSLMain.fxml"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue