diff --git a/TwitchDownloaderWPF/MainWindow.xaml.cs b/TwitchDownloaderWPF/MainWindow.xaml.cs index cd2fab8d..7f6b754c 100644 --- a/TwitchDownloaderWPF/MainWindow.xaml.cs +++ b/TwitchDownloaderWPF/MainWindow.xaml.cs @@ -89,7 +89,11 @@ private async void Window_Loaded(object sender, RoutedEventArgs e) FlashTaskbarIconIfNotForeground(TimeSpan.FromSeconds(3)); var currentVersion = Version.Parse("1.54.3"); +#if DEBUG + Title = $"Twitch Downloader v{currentVersion} - DEBUG"; +#else Title = $"Twitch Downloader v{currentVersion}"; +#endif // TODO: extract FFmpeg handling to a dedicated service if (!File.Exists("ffmpeg.exe"))