Major update: Changed: layout, fonts, configs, readme.

This commit is contained in:
Keyitdev
2024-04-06 00:04:34 +02:00
parent 4a38840903
commit 1ede3c2f68
38 changed files with 128 additions and 153 deletions
+4 -1
View File
@@ -23,7 +23,8 @@ Column {
Label {
id: timeLabel
anchors.horizontalCenter: parent.horizontalCenter
font.pointSize: root.font.pointSize * 3
font.pointSize: root.font.pointSize * 9
font.bold: true
color: root.palette.text
renderType: Text.QtRendering
function updateTime() {
@@ -35,6 +36,8 @@ Column {
id: dateLabel
anchors.horizontalCenter: parent.horizontalCenter
color: root.palette.text
font.pointSize: root.font.pointSize * 2
font.bold: true
renderType: Text.QtRendering
function updateTime() {
text = new Date().toLocaleDateString(Qt.locale(config.Locale), config.DateFormat == "short" ? Locale.ShortFormat : config.DateFormat !== "" ? config.DateFormat : Locale.LongFormat)