Added padding to dashboard modules, set version to 1.7.0

This commit is contained in:
Andrew Lalis 2024-02-06 18:01:26 -05:00
parent abf132ec99
commit 104de66a66
5 changed files with 6 additions and 4 deletions

View File

@ -6,7 +6,7 @@
<groupId>com.andrewlalis</groupId>
<artifactId>perfin</artifactId>
<version>1.6.1</version>
<version>1.7.0</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>

View File

@ -24,7 +24,7 @@ module_path="$module_path:target/modules/h2-2.2.224.jar"
jpackage \
--name "Perfin" \
--app-version "1.6.1" \
--app-version "1.7.0" \
--description "Desktop application for personal finance. Add your accounts, track transactions, and store receipts, invoices, and more." \
--icon design/perfin-logo_256.png \
--vendor "Andrew Lalis" \

View File

@ -12,7 +12,7 @@ $modulePath = "$modulePath;target\modules\h2-2.2.224.jar"
jpackage `
--name "Perfin" `
--app-version "1.6.1" `
--app-version "1.7.0" `
--description "Desktop application for personal finance. Add your accounts, track transactions, and store receipts, invoices, and more." `
--icon design\perfin-logo_256.ico `
--vendor "Andrew Lalis" `

View File

@ -30,6 +30,8 @@ public class DashboardModule extends VBox {
this.minHeightProperty().bind(rowHeightProperty);
this.prefHeightProperty().bind(rowHeightProperty);
this.maxHeightProperty().bind(rowHeightProperty);
this.getStyleClass().add("std-padding");
}
public void refreshContents() {}

View File

@ -27,7 +27,7 @@
<!-- App footer -->
<bottom>
<HBox styleClass="std-padding,std-spacing">
<Label text="Perfin Version 1.6.1"/>
<Label text="Perfin Version 1.7.0"/>
<AnchorPane>
<Label text="© 2024 Andrew Lalis" styleClass="small-font,secondary-color-text-fill" AnchorPane.topAnchor="0" AnchorPane.bottomAnchor="0"/>
</AnchorPane>