Changed Indicator to B+ instead of star for better understandability

This commit is contained in:
2026-07-07 00:12:12 +02:00
parent 830fef1bd9
commit 17da21ad07
3 changed files with 9 additions and 9 deletions
@@ -1656,7 +1656,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
if (cellDataFeatures.getValue().isWorked144()) { if (cellDataFeatures.getValue().isWorked144()) {
wkd.setValue("X"); wkd.setValue("X");
} else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_144)) { } else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_144)) {
wkd.setValue(""); wkd.setValue("B+");
} else { } else {
wkd.setValue(""); wkd.setValue("");
} }
@@ -1677,7 +1677,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
if (cellDataFeatures.getValue().isWorked432()) { if (cellDataFeatures.getValue().isWorked432()) {
wkd.setValue("X"); wkd.setValue("X");
} else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_432)) { } else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_432)) {
wkd.setValue(""); wkd.setValue("B+");
} else { } else {
wkd.setValue(""); wkd.setValue("");
} }
@@ -1698,7 +1698,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
if (cellDataFeatures.getValue().isWorked1240()) { if (cellDataFeatures.getValue().isWorked1240()) {
wkd.setValue("X"); wkd.setValue("X");
} else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_1296)) { } else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_1296)) {
wkd.setValue(""); wkd.setValue("B+");
} else { } else {
wkd.setValue(""); wkd.setValue("");
} }
@@ -1718,7 +1718,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
if (cellDataFeatures.getValue().isWorked2300()) { if (cellDataFeatures.getValue().isWorked2300()) {
wkd.setValue("X"); wkd.setValue("X");
} else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_2320)) { } else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_2320)) {
wkd.setValue(""); wkd.setValue("B+");
} else { } else {
wkd.setValue(""); wkd.setValue("");
} }
@@ -1738,7 +1738,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
if (cellDataFeatures.getValue().isWorked3400()) { if (cellDataFeatures.getValue().isWorked3400()) {
wkd.setValue("X"); wkd.setValue("X");
} else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_3400)) { } else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_3400)) {
wkd.setValue(""); wkd.setValue("B+");
} else { } else {
wkd.setValue(""); wkd.setValue("");
} }
@@ -1758,7 +1758,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
if (cellDataFeatures.getValue().isWorked5600()) { if (cellDataFeatures.getValue().isWorked5600()) {
wkd.setValue("X"); wkd.setValue("X");
} else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_5760)) { } else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_5760)) {
wkd.setValue(""); wkd.setValue("B+");
} else { } else {
wkd.setValue(""); wkd.setValue("");
} }
@@ -1778,7 +1778,7 @@ public class Kst4ContestApplication extends Application implements StatusUpdateL
if (cellDataFeatures.getValue().isWorked10G()) { if (cellDataFeatures.getValue().isWorked10G()) {
wkd.setValue("X"); wkd.setValue("X");
} else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_10G)) { } else if (isBandOfferForMainView(cellDataFeatures.getValue(), Band.B_10G)) {
wkd.setValue(""); wkd.setValue("B+");
} else { } else {
wkd.setValue(""); wkd.setValue("");
} }
@@ -63,7 +63,7 @@ public record MapCallsignRawSnapshot(
String baseLabel = bandSummary.isBlank() String baseLabel = bandSummary.isBlank()
? displayCallSign ? displayCallSign
: displayCallSign + " (" + bandSummary + ")"; : displayCallSign + " (" + bandSummary + ")";
return offersSelectedBand ? baseLabel + " " : baseLabel; return offersSelectedBand ? baseLabel + " B+" : baseLabel;
} }
public String detailFrequencyText() { public String detailFrequencyText() {
@@ -857,7 +857,7 @@ public final class StationMapView {
detailQtfValue.setText(String.format(Locale.US, "%.0f°", selectedSnapshot.qtfDeg())); detailQtfValue.setText(String.format(Locale.US, "%.0f°", selectedSnapshot.qtfDeg()));
String bandText = selectedSnapshot.bandSummary().isBlank() ? "-" : selectedSnapshot.bandSummary(); String bandText = selectedSnapshot.bandSummary().isBlank() ? "-" : selectedSnapshot.bandSummary();
if (selectedSnapshot.offersSelectedBand()) { if (selectedSnapshot.offersSelectedBand()) {
bandText += " "; bandText += " B+";
} }
detailBandsValue.setText(bandText); detailBandsValue.setText(bandText);
detailFrequenciesArea.setText(selectedSnapshot.detailFrequencyText()); detailFrequenciesArea.setText(selectedSnapshot.detailFrequencyText());