diff --git a/NickvisionTubeConverter.GNOME/Program.cs b/NickvisionTubeConverter.GNOME/Program.cs index de5d70504..5313814eb 100644 --- a/NickvisionTubeConverter.GNOME/Program.cs +++ b/NickvisionTubeConverter.GNOME/Program.cs @@ -51,6 +51,7 @@ public Program(string[] args) * Fixed an issue where aria's max connections per server preference was allowed to be greater than 16 * Fixed an issue where enabling the ""Download Specific Timeframe"" advanced option would cause a crash for certain media downloads * Fixed an issue where stopping all downloads would cause the app to crash + * Fixed an issue where some videos were not validated correctly * Updated to GNOME 45 runtime with latest libadwaita design * Updated translations (Thanks everyone on Weblate!)"; _application.OnActivate += OnActivate; diff --git a/NickvisionTubeConverter.Shared/Controllers/MainWindowController.cs b/NickvisionTubeConverter.Shared/Controllers/MainWindowController.cs index b3a9ef97d..82afc5cc5 100644 --- a/NickvisionTubeConverter.Shared/Controllers/MainWindowController.cs +++ b/NickvisionTubeConverter.Shared/Controllers/MainWindowController.cs @@ -107,7 +107,7 @@ public MainWindowController(string[] args) Aura.Active.SetConfig("config"); Configuration.Current.Saved += ConfigurationSaved; Aura.Active.SetConfig("downloadHistory"); - AppInfo.Version = "2023.11.0-beta2"; + AppInfo.Version = "2023.11.0-rc1"; AppInfo.ShortName = _("Parabolic"); AppInfo.Description = _("Download web video and audio"); AppInfo.SourceRepo = new Uri("https://github.com/NickvisionApps/Parabolic"); diff --git a/NickvisionTubeConverter.Shared/Linux/org.nickvision.tubeconverter.metainfo.xml.in b/NickvisionTubeConverter.Shared/Linux/org.nickvision.tubeconverter.metainfo.xml.in index 5bf0576cd..0b1afcdb0 100644 --- a/NickvisionTubeConverter.Shared/Linux/org.nickvision.tubeconverter.metainfo.xml.in +++ b/NickvisionTubeConverter.Shared/Linux/org.nickvision.tubeconverter.metainfo.xml.in @@ -50,7 +50,7 @@ - +

- Parabolic is now available for Windows using Windows App SDK and WinUI 3

- Added support for auto-generated subtitles from English

@@ -62,6 +62,7 @@

- Fixed an issue where aria's max connections per server preference was allowed to be greater than 16

- Fixed an issue where enabling the "Download Specific Timeframe" advanced option would cause a crash for certain media downloads

- Fixed an issue where stopping all downloads would cause the app to crash

+

- Fixed an issue where some videos were not validated correctly

- Updated to GNOME 45 runtime with latest libadwaita design

- Updated translations (Thanks everyone on Weblate!)

diff --git a/NickvisionTubeConverter.WinUI/App.xaml.cs b/NickvisionTubeConverter.WinUI/App.xaml.cs index 9a1073277..847008294 100644 --- a/NickvisionTubeConverter.WinUI/App.xaml.cs +++ b/NickvisionTubeConverter.WinUI/App.xaml.cs @@ -30,6 +30,7 @@ public App() - Fixed an issue where aria's max connections per server preference was allowed to be greater than 16 - Fixed an issue where enabling the ""Download Specific Timeframe"" advanced option would cause a crash for certain media downloads - Fixed an issue where stopping all downloads would cause the app to crash +- Fixed an issue where some videos were not validated correctly - Updated translations (Thanks everyone on Weblate!)"; if (_controller.Theme != Theme.System) {