Skip to content

Commit

Permalink
version 1.1.14
Browse files Browse the repository at this point in the history
1.1.14
- Lowercased second words on the tiles instead of capitals
  • Loading branch information
oepi-loepi committed May 12, 2021
1 parent 78679c8 commit 560aa22
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.1.14
- Lowercased second words on the tiles instead of capitals

1.1.13
- domoticz water quantity error repaired

Expand Down
2 changes: 1 addition & 1 deletion WaterNow.qml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Tile {
Text {
id: waterWidgetText
color: dimmableColors.tileTitleColor
text:"Water Nu"
text:"Water nu"
anchors {
baseline: parent.top
baselineOffset: Math.round(30 * verticalScaling)
Expand Down
2 changes: 1 addition & 1 deletion WaterTile.qml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Tile {

Text {
id: curFlow
text: "Flow Nu: " + flow + " l/m"
text: "Flow nu: " + flow + " l/m"
color: !dimState? "black" : "white"
anchors {
top: tileTitle.bottom
Expand Down
2 changes: 1 addition & 1 deletion WaterTodayTile.qml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import QtQuick 2.1

BarTodayTile {
id: powerTodayTile
titleText: "Water Vandaag"
titleText: "Water vandaag"
lowerRectColor: dimmableColors.graphWater
upperRectColor: dimmableColors.graphWaterSelected
dayUsage : app.todayValue
Expand Down
2 changes: 1 addition & 1 deletion WaterTodayTileEuro.qml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import QtQuick 2.1

BarTodayTile {
id: waterTodayTileEUR
titleText: "Water Vandaag"
titleText: "Water vandaag"
lowerRectColor: dimmableColors.graphWater
upperRectColor: dimmableColors.graphWaterSelected
dayUsage : app.todayValue
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
1.1.13
1.1.14

0 comments on commit 560aa22

Please sign in to comment.