Skip to content

Commit 3f2604d

Browse files
committed
#18 Fix broken GitHub link in about for Unix OS
1 parent 6c9e093 commit 3f2604d

File tree

1 file changed

+13
-9
lines changed
  • src/main/resources/com/github/introfog/gitwave/view

1 file changed

+13
-9
lines changed
Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3+
<?import javafx.geometry.Insets?>
34
<?import javafx.scene.control.Button?>
45
<?import javafx.scene.control.Hyperlink?>
56
<?import javafx.scene.control.Label?>
67
<?import javafx.scene.image.Image?>
78
<?import javafx.scene.image.ImageView?>
89
<?import javafx.scene.layout.AnchorPane?>
910
<?import javafx.scene.text.Font?>
10-
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="377.0" prefWidth="400.0" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.github.introfog.gitwave.controller.AboutController">
11+
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="377.0" prefWidth="400.0" style="-fx-font-size: 12; -fx-font-family: verdana;" xmlns="http://javafx.com/javafx/17.0.12" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.github.introfog.gitwave.controller.AboutController">
1112
<children>
12-
<ImageView fitHeight="86.0" fitWidth="80.0" layoutX="32.0" layoutY="40.0" pickOnBounds="true" preserveRatio="true">
13+
<ImageView fitHeight="80.0" fitWidth="80.0" layoutX="32.0" layoutY="40.0" pickOnBounds="true" preserveRatio="true" AnchorPane.leftAnchor="0.0" AnchorPane.topAnchor="0.0">
1314
<image>
1415
<Image url="@../../../../../logo256.png" />
1516
</image></ImageView>
16-
<Button layoutX="178.0" layoutY="330.0" mnemonicParsing="false" onAction="#close" text="Close" />
17-
<Label fx:id="version" layoutX="134.0" layoutY="40.0" text="VERSION">
17+
<Button layoutX="294.0" layoutY="292.0" mnemonicParsing="false" onAction="#close" text="Close" AnchorPane.bottomAnchor="0.0" AnchorPane.rightAnchor="0.0" />
18+
<Label fx:id="version" layoutX="134.0" layoutY="40.0" text="VERSION" AnchorPane.leftAnchor="100.0" AnchorPane.topAnchor="20.0">
1819
<graphic>
1920
<Label text="GitWave">
2021
<font>
@@ -23,11 +24,14 @@
2324
</Label>
2425
</graphic>
2526
<font>
26-
<Font name="System Bold" size="14.0" />
27+
<Font name="Verdana Bold" size="14.0" />
2728
</font></Label>
28-
<Label layoutX="134.0" layoutY="72.0" prefHeight="142.0" prefWidth="236.0" text="GitWave is the ultimate tool for developers who work with multiple repositories on Windows. The app is designed to streamline your workflow by allowing you to run any bash commands across several repositories simultaneously. It’s a powerful companion for any developer looking to save time and effort when managing their Git projects." wrapText="true" />
29-
<Label layoutX="134.0" layoutY="233.0" prefHeight="39.0" prefWidth="236.0" text="GitWave is a open source project, which you can find on" wrapText="true" />
30-
<Hyperlink layoutX="193.0" layoutY="251.0" onAction="#openGitHub" prefHeight="12.0" prefWidth="46.0" text="GitHub" />
31-
<Label layoutX="133.0" layoutY="293.0" text="Copyright 2023-2024 Dmitry Chubrick" />
29+
<Label layoutX="134.0" layoutY="72.0" prefHeight="142.0" prefWidth="236.0" text="GitWave is the ultimate tool for developers who work with multiple repositories on Windows. The app is designed to streamline your workflow by allowing you to run any bash commands across several repositories simultaneously. It’s a powerful companion for any developer looking to save time and effort when managing their Git projects." wrapText="true" AnchorPane.leftAnchor="100.0" AnchorPane.rightAnchor="0.0" />
30+
<Label layoutX="134.0" layoutY="233.0" prefHeight="39.0" prefWidth="236.0" text="GitWave is a open source project, which you can find on" wrapText="true" AnchorPane.leftAnchor="100.0" AnchorPane.rightAnchor="0.0" />
31+
<Hyperlink layoutX="193.0" layoutY="251.0" onAction="#openGitHub" prefHeight="12.0" prefWidth="46.0" text="GitHub" AnchorPane.leftAnchor="193.0" AnchorPane.rightAnchor="0.0" />
32+
<Label layoutX="133.0" layoutY="293.0" text="Copyright 2023-2024 Dmitry Chubrick" AnchorPane.leftAnchor="100.0" />
3233
</children>
34+
<padding>
35+
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
36+
</padding>
3337
</AnchorPane>

0 commit comments

Comments
 (0)