Skip to content

Commit

Permalink
fixed: GuiMods simple overview showing '--' for PV Inverter names
Browse files Browse the repository at this point in the history
  • Loading branch information
kwindrem committed Mar 21, 2024
1 parent 18e5560 commit 43f2067
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
10 changes: 5 additions & 5 deletions FileSets/v2.73/OverviewHubEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ OverviewPage {
}
TileText
{
text: alternatorName1.valid ? alternatorName1.text : "-"
text: alternatorName1.valid ? alternatorName1.value : "-"
visible: showAlternator && numberOfAlternators >= 1
}
TileText
Expand All @@ -292,7 +292,7 @@ OverviewPage {
}
TileText
{
text: alternatorName2.valid ? alternatorName2.text : "-"
text: alternatorName2.valid ? alternatorName2.value : "-"
visible: showAlternator && numberOfAlternators >= 2
}
TileText
Expand Down Expand Up @@ -846,7 +846,7 @@ OverviewPage {
//////// add individual PV inverter powers
TileText {
y: 31
text: pvInverterName1.valid ? pvInverterName1.text : "-"
text: pvInverterName1.valid ? pvInverterName1.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >= 2
},
TileText {
Expand All @@ -857,7 +857,7 @@ OverviewPage {
},
TileText {
y: 63
text: pvInverterName2.valid ? pvInverterName2.text : "-"
text: pvInverterName2.valid ? pvInverterName2.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >= 2
},
TileText {
Expand All @@ -868,7 +868,7 @@ OverviewPage {
},
TileText {
y: 93
text: pvInverterName3.valid ? pvInverterName3.text : "-"
text: pvInverterName3.valid ? pvInverterName3.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >=3 && ! showTanksTemps
},
TileText {
Expand Down
10 changes: 5 additions & 5 deletions FileSets/v3.01/OverviewHubEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ OverviewPage {
}
TileText
{
text: alternatorName1.valid ? alternatorName1.text : "-"
text: alternatorName1.valid ? alternatorName1.value : "-"
visible: showAlternator && numberOfAlternators >= 1
}
TileText
Expand All @@ -301,7 +301,7 @@ OverviewPage {
}
TileText
{
text: alternatorName2.valid ? alternatorName2.text : "-"
text: alternatorName2.valid ? alternatorName2.value : "-"
visible: showAlternator && numberOfAlternators >= 2
}
TileText
Expand Down Expand Up @@ -907,7 +907,7 @@ OverviewPage {
//////// add individual PV inverter powers
TileText {
y: 31
text: pvInverterName1.valid ? pvInverterName1.text : "-"
text: pvInverterName1.valid ? pvInverterName1.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >= 2
},
TileText {
Expand All @@ -918,7 +918,7 @@ OverviewPage {
},
TileText {
y: 63
text: pvInverterName2.valid ? pvInverterName2.text : "-"
text: pvInverterName2.valid ? pvInverterName2.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >= 2
},
TileText {
Expand All @@ -929,7 +929,7 @@ OverviewPage {
},
TileText {
y: 93
text: pvInverterName3.valid ? pvInverterName3.text : "-"
text: pvInverterName3.valid ? pvInverterName3.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >=3 && ! showTanksTemps
},
TileText {
Expand Down
10 changes: 5 additions & 5 deletions FileSets/v3.40~1/OverviewHubEnhanced.qml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ OverviewPage {
}
TileText
{
text: alternatorName1.valid ? alternatorName1.text : "-"
text: alternatorName1.valid ? alternatorName1.value : "-"
visible: showAlternator && numberOfAlternators >= 1
}
TileText
Expand All @@ -300,7 +300,7 @@ OverviewPage {
}
TileText
{
text: alternatorName2.valid ? alternatorName2.text : "-"
text: alternatorName2.valid ? alternatorName2.value : "-"
visible: showAlternator && numberOfAlternators >= 2
}
TileText
Expand Down Expand Up @@ -905,7 +905,7 @@ OverviewPage {
//////// add individual PV inverter powers
TileText {
y: 31
text: pvInverterName1.valid ? pvInverterName1.text : "-"
text: pvInverterName1.valid ? pvInverterName1.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >= 2
},
TileText {
Expand All @@ -916,7 +916,7 @@ OverviewPage {
},
TileText {
y: 63
text: pvInverterName2.valid ? pvInverterName2.text : "-"
text: pvInverterName2.valid ? pvInverterName2.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >= 2
},
TileText {
Expand All @@ -927,7 +927,7 @@ OverviewPage {
},
TileText {
y: 93
text: pvInverterName3.valid ? pvInverterName3.text : "-"
text: pvInverterName3.valid ? pvInverterName3.value : "-"
visible: !showDcAndAcSolar && numberOfPvInverters >=3 && ! showTanksTemps
},
TileText {
Expand Down
3 changes: 3 additions & 0 deletions changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v10.17:
fixed: GuiMods simple overview showing '--' for PV Inverter names

v10.16:
add support for v3.40~1

Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v10.16
v10.17

0 comments on commit 43f2067

Please sign in to comment.