diff --git a/XR3PlayerUpdatePage.html b/XR3PlayerUpdatePage.html index e5517b9b..1ee5edc8 100644 --- a/XR3PlayerUpdatePage.html +++ b/XR3PlayerUpdatePage.html @@ -310,7 +310,7 @@ ChangeLog :

-
*Layout Bug Fixes
Preparation for adding NOSQL KEY +
*Layout Bug Fixes
*Preparation for adding NOSQL KEY VALUE database
*Wonderful new controls
*Style Improvements

diff --git a/src/application/AboutWindowController.java b/src/application/AboutWindowController.java index f68d2c96..8c04438e 100644 --- a/src/application/AboutWindowController.java +++ b/src/application/AboutWindowController.java @@ -180,7 +180,7 @@ private void initialize() { close.setOnAction(a -> window.close()); // --visitWebsite - visitWebsite.setOnAction(a -> ActionTool.openWebSite("http://goxr3plus.co.nf/html5/index.html")); + visitWebsite.setOnAction(a -> ActionTool.openWebSite("http://goxr3plus.co.nf")); // --reportBug reportBug.setOnAction(a -> ActionTool.openWebSite("https://github.com/goxr3plus/XR3Player/issues")); diff --git a/src/application/TopBar.java b/src/application/TopBar.java index 0b3dc78b..93f4a14d 100644 --- a/src/application/TopBar.java +++ b/src/application/TopBar.java @@ -77,7 +77,8 @@ public class TopBar extends BorderPane { CPUsage cpUsage = new CPUsage(); /** - * The current Window Mode that means if the application is on LibraryMode or in DJMode . + * The current Window Mode that means if the application is on + * LibraryMode or in DJMode . */ private WindowMode windowMode = WindowMode.LIBRARYMODE; @@ -124,11 +125,11 @@ private void initialize() { else cpUsage.restartUpdater(); }); - - //cpuLabel + + // cpuLabel cpuLabel.visibleProperty().bind(cpUsage.getUpdateService().runningProperty().not()); - - //cpuUsage + + // cpuUsage cpUsage.visibleProperty().bind(cpuLabel.visibleProperty().not()); cpUsage.restartUpdater(); @@ -141,7 +142,7 @@ private void initialize() { // aboutSection aboutSection.setOnAction(a -> Main.aboutWindow.showWindow()); - //donation + // donation donation.setOnAction(a -> ActionTool.openWebSite("https://www.paypal.me/GOXR3PLUSCOMPANY")); // restartButton @@ -215,7 +216,7 @@ private void initialize() { public void addXR3LabelBinding() { // xr3Label StringBinding binding = Bindings.createStringBinding( - () -> MessageFormat.format(">-XR3Player V." + Main.currentVersion + "-< Width=[{0}],Height=[{1}]", + () -> MessageFormat.format(">-XR3Player V.{0} -< Width=[{1}],Height=[{2}]", Main.currentVersion, Main.window.getWidth(), Main.window.getHeight()), Main.window.widthProperty(), Main.window.heightProperty()); xr3Label.textProperty().bind(binding);