From 2e6752230ed66f96e0eea5a57299e8b05bbdbcc8 Mon Sep 17 00:00:00 2001 From: mark-sil <83427558+mark-sil@users.noreply.github.com> Date: Thu, 18 Jun 2026 10:05:07 -0400 Subject: [PATCH] LT-22556: Remove confusing "(date is invalid for FLEx Bridge)" text The "Choose an Update" dialog appended the literal note "(date is invalid for FLEx Bridge)" to its instructions unconditionally, including when offering FieldWorks updates where the build date is valid. A user reported this as confusing. The note was originally added because the dialog is shared with the FLEx Bridge update path (nightly/testing channels), where the current version's date is unavailable. However, the FLEx Bridge version itself is already displayed correctly via current.Version, and FLEx Bridge exposes no build date to substitute, so the note adds no value. Remove it. Co-Authored-By: Claude Opus 4.8 --- Src/Common/FwUtils/FwUpdateChooserDlg.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/Common/FwUtils/FwUpdateChooserDlg.cs b/Src/Common/FwUtils/FwUpdateChooserDlg.cs index 427d31a77f..2278ff0813 100644 --- a/Src/Common/FwUtils/FwUpdateChooserDlg.cs +++ b/Src/Common/FwUtils/FwUpdateChooserDlg.cs @@ -21,8 +21,8 @@ public FwUpdateChooserDlg(FwUpdate current, IEnumerable available) : t // FwUpdate.ToString does not always include the base build number (which could be informative) but does include the installer type, // even though we have no way of knowing what that was for the current version; define our own relevant parts here. tbInstructions.Text = - $"The following installers are available. You currently have {current.Version}_b{current.BaseBuild} built {current.Date:yyyy-MM-dd} installed" + - " (date is invalid for FLEx Bridge). Additional patches may be available on the listed base (online and offline) installers. " + + $"The following installers are available. You currently have {current.Version}_b{current.BaseBuild} built {current.Date:yyyy-MM-dd} installed. " + + "Additional patches may be available on the listed base (online and offline) installers. " + "To download an update, double-click, or select it and click Download; another dialog will appear when the download is complete. " + $"To install FieldWorks base installers, you may need to uninstall FLEx and then install manually from {FwDirectoryFinder.DownloadedUpdates}.";