This commit is contained in:
Luca D'Amico
2024-08-04 20:09:19 +02:00
committed by GitHub
parent ec81e2bfbe
commit aa2ed50ade
21 changed files with 720 additions and 252 deletions

View File

@@ -7,33 +7,33 @@
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
<height>179</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
<string>About</string>
</property>
<widget class="QDialogButtonBox" name="aboutCloseBtnBx">
<property name="geometry">
<rect>
<x>300</x>
<y>260</y>
<y>140</y>
<width>81</width>
<height>32</height>
</rect>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
<enum>Qt::Orientation::Horizontal</enum>
</property>
<property name="standardButtons">
<set>QDialogButtonBox::Ok</set>
<set>QDialogButtonBox::StandardButton::Ok</set>
</property>
</widget>
<widget class="QLabel" name="aboutSoftwareNameLbl">
<property name="geometry">
<rect>
<x>10</x>
<y>140</y>
<y>20</y>
<width>381</width>
<height>31</height>
</rect>
@@ -42,33 +42,33 @@
<bool>false</bool>
</property>
<property name="text">
<string>NDS Factory V1.0</string>
<string>NDS Factory V1.1</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
<set>Qt::AlignmentFlag::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="aboutSoftwareAuthorLbl">
<property name="geometry">
<rect>
<x>10</x>
<y>190</y>
<y>70</y>
<width>381</width>
<height>20</height>
</rect>
</property>
<property name="text">
<string>(C) 2019-2021 - Luca D'Amico</string>
<string>(C) 2019-2024 - Luca D'Amico</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
<set>Qt::AlignmentFlag::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="aboutSpecialThanks">
<property name="geometry">
<rect>
<x>10</x>
<y>210</y>
<y>90</y>
<width>381</width>
<height>20</height>
</rect>
@@ -77,14 +77,14 @@
<string>Special Thanks To:</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
<set>Qt::AlignmentFlag::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="aboutSpecialThanks2ndLine">
<property name="geometry">
<rect>
<x>10</x>
<y>230</y>
<y>110</y>
<width>381</width>
<height>20</height>
</rect>
@@ -93,14 +93,14 @@
<string>Dax89 (Davide Trogu) &amp; Kaneb (Antonio Barba)</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
<set>Qt::AlignmentFlag::AlignCenter</set>
</property>
</widget>
<widget class="QLabel" name="aboutSoftwareBuildLbl">
<property name="geometry">
<rect>
<x>10</x>
<y>170</y>
<y>50</y>
<width>381</width>
<height>20</height>
</rect>
@@ -109,7 +109,7 @@
<string>Build Info</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
<set>Qt::AlignmentFlag::AlignCenter</set>
</property>
</widget>
</widget>

View File

@@ -1,6 +1,6 @@
#ifndef REVISION_H
#define REVISION_H
#define GIT_COMMIT_HASH "30425b6"
#define GIT_COMMIT_HASH "c7eaa8e"
#endif