List same-series OTA plugin builds in the version selector

This commit is contained in:
SoftFever
2026-07-17 14:23:40 +08:00
parent 5808ae5ab0
commit 79593e07c6
4 changed files with 168 additions and 0 deletions

View File

@@ -1272,6 +1272,9 @@ wxBoxSizer *PreferencesDialog::create_item_network_plugin_version(wxString title
if (ver.is_latest) {
label += " " + _L("(Latest)");
} else if (ver.is_discovered && ver.suffix.empty()) {
// A same-series build found on disk (usually installed by the OTA update).
label += " " + _L("(installed)");
}
m_network_version_combo->Append(label);
if (current_version == ver.version) {