@@ -48,8 +48,6 @@ public class CreditsController implements Initializable {
4848 @ FXML private Hyperlink fastMathLicense ;
4949 @ FXML private Hyperlink fastutil ;
5050 @ FXML private Hyperlink fastutilLicense ;
51- @ FXML private Hyperlink javafx ;
52- @ FXML private Hyperlink javafxLicense ;
5351
5452 @ FXML private VBox pluginBox ;
5553 @ FXML private ImageView logoImage ;
@@ -117,22 +115,18 @@ public void initialize(URL location, ResourceBundle resources) {
117115 fastutilLicense .setBorder (Border .EMPTY );
118116 fastutilLicense .setOnAction (e -> launchAndReset (fastutilLicense , "http://www.apache.org/licenses/LICENSE-2.0" ));
119117
120- javafx .setBorder (Border .EMPTY );
121- javafx .setOnAction (e -> launchAndReset (javafx , "https://openjfx.io/" ));
122- javafxLicense .setBorder (Border .EMPTY );
123- javafxLicense .setOnAction (e -> launchAndReset (javafxLicense , "https://github.com/openjdk/jfx/blob/master/LICENSE" ));
124-
125118 if (plugins .size () > 0 ) {
126119 plugins .forEach ((key , item ) -> pluginBox .getChildren ().addAll (buildBox (item )));
127120 } else {
128- Label label = new Label ("You have no plugins installed !" );
121+ Label label = new Label ("You have no plugins activated !" );
129122 label .setPadding (new Insets (0 , 0 , 0 ,-10.0 ));
130123 pluginBox .getChildren ().add (label );
131-
132- Hyperlink pluginLink = new Hyperlink ("Get some plugins here!" );
133- pluginLink .setOnAction (e -> launchAndReset (pluginLink , "https://jackjt8.github.io/ChunkyGuide/docs/setup/plugins.html" ));
134- pluginBox .getChildren ().add (pluginLink );
135124 }
125+
126+ Hyperlink pluginLink = new Hyperlink ("Get plugins here!" );
127+ pluginLink .setPadding (new Insets (0 , 0 , 0 , -10.0 ));
128+ pluginLink .setOnAction (e -> launchAndReset (pluginLink , "https://chunky-dev.github.io/docs/plugins/" ));
129+ pluginBox .getChildren ().add (pluginLink );
136130 }
137131
138132 public void setStage (Stage stage ) {
0 commit comments