From 37cbe0288fda69e888d69e9aa7e54774a798f3d6 Mon Sep 17 00:00:00 2001 From: Erik Darling <2136037+erikdarlingdata@users.noreply.github.com> Date: Thu, 19 Mar 2026 21:24:37 -0400 Subject: [PATCH] Shorten update link text to 'click to install' --- src/PlanViewer.App/AboutWindow.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PlanViewer.App/AboutWindow.axaml.cs b/src/PlanViewer.App/AboutWindow.axaml.cs index c66bdca..d5ce313 100644 --- a/src/PlanViewer.App/AboutWindow.axaml.cs +++ b/src/PlanViewer.App/AboutWindow.axaml.cs @@ -97,7 +97,7 @@ private async void CheckUpdate_Click(object? sender, RoutedEventArgs e) if (_velopackUpdate != null) { UpdateStatusText.Text = "Update available:"; - UpdateLink.Text = $"v{_velopackUpdate.TargetFullRelease.Version} — click to download and install"; + UpdateLink.Text = $"v{_velopackUpdate.TargetFullRelease.Version} — click to install"; UpdateLink.IsVisible = true; CheckUpdateButton.IsEnabled = true; return;