Test new version

This commit is contained in:
2024-09-26 20:36:31 -04:00
parent 7c85f68956
commit da388bf953

View File

@@ -115,10 +115,6 @@ internal class WindowSource : IWindowSource, IDisposable
text.Append($"{timeZoneEntry.Label.PadLeft(labelLength)}: {TimeZoneInfo.ConvertTime(now, timeZone).ToString(Properties.Settings.Default.TimeFormat)}"); text.Append($"{timeZoneEntry.Label.PadLeft(labelLength)}: {TimeZoneInfo.ConvertTime(now, timeZone).ToString(Properties.Settings.Default.TimeFormat)}");
} }
text.AppendLine();
text.AppendLine();
text.Append($"Version: {Assembly.GetEntryAssembly()!.GetName().Version!.ToString()}");
_dispatcher.Invoke(() => _floatingStatusWindow.SetText(text.ToString())); _dispatcher.Invoke(() => _floatingStatusWindow.SetText(text.ToString()));
} }