From af4161fe69a0308340711dfd0d8b546b10a6ddf9 Mon Sep 17 00:00:00 2001 From: Nick Logozzo Date: Sun, 22 Oct 2023 18:30:10 -0400 Subject: [PATCH] V2023.10.0-rc1 --- NickvisionTagger.GNOME/Program.cs | 1 + NickvisionTagger.Shared/Controllers/MainWindowController.cs | 2 +- NickvisionTagger.Shared/org.nickvision.tagger.metainfo.xml.in | 1 + NickvisionTagger.WinUI/App.xaml.cs | 1 + 4 files changed, 4 insertions(+), 1 deletion(-) diff --git a/NickvisionTagger.GNOME/Program.cs b/NickvisionTagger.GNOME/Program.cs index 36fcf3f4..a1faf1e9 100644 --- a/NickvisionTagger.GNOME/Program.cs +++ b/NickvisionTagger.GNOME/Program.cs @@ -42,6 +42,7 @@ public Program(string[] args) * Tagger will now remember previously used format strings for file name to tag and tag to file name conversions * Fixed an issue where downloaded lyrics would sometimes contain html encoded characters * Fixed an issue where file names containing the ""<"" character caused the music file row to not display + * Fixed an issue where the duration displayed for multiple selected files was wrong * Improved create playlist dialog ux * Updated translations (Thanks everyone on Weblate!)"; _application.OnActivate += OnActivate; diff --git a/NickvisionTagger.Shared/Controllers/MainWindowController.cs b/NickvisionTagger.Shared/Controllers/MainWindowController.cs index 672f6cca..4b372acc 100644 --- a/NickvisionTagger.Shared/Controllers/MainWindowController.cs +++ b/NickvisionTagger.Shared/Controllers/MainWindowController.cs @@ -164,7 +164,7 @@ public MainWindowController(string[] args) } Aura.Active.SetConfig("config"); Configuration.Current.Saved += ConfigurationSaved; - AppInfo.Version = "2023.10.0-beta2"; + AppInfo.Version = "2023.10.0-rc1"; AppInfo.ShortName = _("Tagger"); AppInfo.Description = _("Tag your music"); AppInfo.SourceRepo = new Uri("https://github.com/NickvisionApps/Tagger"); diff --git a/NickvisionTagger.Shared/org.nickvision.tagger.metainfo.xml.in b/NickvisionTagger.Shared/org.nickvision.tagger.metainfo.xml.in index c07dfd24..98fb4b0d 100644 --- a/NickvisionTagger.Shared/org.nickvision.tagger.metainfo.xml.in +++ b/NickvisionTagger.Shared/org.nickvision.tagger.metainfo.xml.in @@ -51,6 +51,7 @@

- Tagger will now remember previously used format strings for file name to tag and tag to file name conversions

- Fixed an issue where downloaded lyrics would sometimes contain html encoded characters

- Fixed an issue where file names containing the less than character caused the music file row to not display

+

- Fixed an issue where the duration displayed for multiple selected files was wrong

- Improved create playlist dialog ux

- Updated translations (Thanks everyone on Weblate!)

diff --git a/NickvisionTagger.WinUI/App.xaml.cs b/NickvisionTagger.WinUI/App.xaml.cs index 537f1cb3..593e45ed 100644 --- a/NickvisionTagger.WinUI/App.xaml.cs +++ b/NickvisionTagger.WinUI/App.xaml.cs @@ -31,6 +31,7 @@ public App() - Tagger will now display front album art within a music file row itself if available - Tagger will now remember previously used format strings for file name to tag and tag to file name conversions - Fixed an issue where downloaded lyrics would sometimes contain html encoded characters +- Fixed an issue where the duration displayed for multiple selected files was wrong - Improved create playlist dialog ux - Updated translations (Thanks everyone on Weblate!)"; if (_controller.Theme != Theme.System)