Skip to content

Commit

Permalink
V2024.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed May 16, 2024
1 parent 887662d commit 05dfd44
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 19 deletions.
8 changes: 3 additions & 5 deletions NickvisionTubeConverter.GNOME/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,9 @@ public Program(string[] args)
_mainWindow = null;
_mainWindowController = new MainWindowController(args);
_mainWindowController.AppInfo.Changelog =
@"* Fixed an issue where split chapters were not renamed correctly
* Fixed an issue where videos would not download greater than 1080p resolution
* Fixed an issue where preferring AV1 codec would not properly select av1 videos
* Parabolic will now remember the chosen file type for generic downloads
* Parabolic no longer depends on psutil
@"* Fixed an issue where the debug page showed psutil errors
* Fixed an issue where an error notification would show the open file button
* Updated yt-dlp to 2024.04.09
* Updated translations (Thanks everyone on Weblate!)";
_application.OnActivate += OnActivate;
g_signal_connect_data(_application.Handle, "open", _openCallback, IntPtr.Zero, IntPtr.Zero, 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public MainWindowController(string[] args)
DownloadManager = new DownloadManager(5);
IsWindowActive = false;
//AppInfo
AppInfo.Version = "2023.12.0";
AppInfo.Version = "2024.5.0";
AppInfo.ShortName = _("Parabolic");
AppInfo.Description = _("Download web video and audio");
AppInfo.SourceRepo = new Uri("https://github.com/NickvisionApps/Parabolic");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,11 @@
<binary>org.nickvision.tubeconverter</binary>
</provides>
<releases>
<release version="2023.12.0" date="2023-12-31">
<release version="2024.5.0" date="2024-05-15">
<description translatable="no">
<p>- Fixed an issue where split chapters were not renamed correctly</p>
<p>- Fixed an issue where videos would not download greater than 1080p resolution</p>
<p>- Fixed an issue where preferring AV1 codec would not properly select av1 videos </p>
<p>- Parabolic will now remember the chosen file type for generic downloads</p>
<p>- Parabolic no longer depends on psutil</p>
<p>- Fixed an issue where the debug page showed psutil errors</p>
<p>- Fixed an issue where an error notification would show the open file button</p>
<p>- Updated yt-dlp to 2024.04.09</p>
<p>- Updated translations (Thanks everyone on Weblate!)</p>
</description>
</release>
Expand Down
9 changes: 3 additions & 6 deletions NickvisionTubeConverter.WinUI/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,9 @@ public App()
{
InitializeComponent();
_controller = new MainWindowController(Array.Empty<string>());
_controller.AppInfo.Changelog = @"- Fixed an issue where split chapters were not renamed correctly
- Fixed an issue where videos would not download greater than 1080p resolution
- Fixed an issue where preferring AV1 codec would not properly select av1 videos
- Parabolic will now remember the chosen file type for generic downloads
- Parabolic no longer depends on psutil
- Redesigned the app's UI
_controller.AppInfo.Changelog = @"- Fixed an issue where the debug page showed psutil errors
- Fixed an issue where an error notification would show the open file button
- Updated yt-dlp to 2024.04.09
- Updated translations (Thanks everyone on Weblate!)";
if (_controller.Theme != Theme.System)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#define MyAppName "Nickvision Parabolic"
#define MyAppShortName "Parabolic"
#define MyAppVersion "2023.12.0"
#define MyAppVersion "2024.5.0"
#define MyAppPublisher "Nickvision"
#define MyAppURL "https://nickvision.org"
#define MyAppExeName "NickvisionTubeConverter.WinUI.exe"
Expand Down

0 comments on commit 05dfd44

Please sign in to comment.