Merge branch 'noctalia-dev:main' into fix/heuristic-lookup

This commit is contained in:
Kainoa Kanter 2025-08-25 14:26:35 -07:00 committed by GitHub
commit 38e3d9909f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 389 additions and 92 deletions

View file

@ -13,6 +13,7 @@ Singleton {
*/
// Font size
property real fontSizeXXS: 8
property real fontSizeXS: 9
property real fontSizeS: 10
property real fontSizeM: 11

View file

@ -18,7 +18,8 @@ Singleton {
dayName = dayName.charAt(0).toUpperCase() + dayName.slice(1)
let day = date.getDate()
let month = date.toLocaleDateString(Qt.locale(), "MMM")
return timeString + " - " + dayName + ", " + day + " " + month
return timeString + " - " + (Settings.data.location.reverseDayMonth ? `${dayName}, ${month} ${day}` : `${dayName}, ${day} ${month}`)
}
return timeString