Skip to content

Commit

Permalink
V2023.3.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
nlogozzo committed Mar 4, 2023
1 parent 24e6f53 commit 4ec3c48
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion NickvisionTubeConverter.GNOME/Controls/DownloadRow.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using NickvisionTubeConverter.GNOME.Helpers;
using NickvisionTubeConverter.GNOME.Views;
using NickvisionTubeConverter.Shared.Controls;
using NickvisionTubeConverter.Shared.Events;
using NickvisionTubeConverter.Shared.Helpers;
Expand Down
4 changes: 2 additions & 2 deletions NickvisionTubeConverter.GNOME/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public Program()
_mainWindowController.AppInfo.Name = "Nickvision Tube Converter";
_mainWindowController.AppInfo.ShortName = "Tube Converter";
_mainWindowController.AppInfo.Description = $"{_mainWindowController.Localizer["Description"]}.";
_mainWindowController.AppInfo.Version = "2023.3.0-beta1";
_mainWindowController.AppInfo.Changelog = "<ul><li>Tube Converter has been rewritten in C#. With the C# rewrite, Tube Converter is now available on Windows!</li><li>Added a queue system with a max number of active downloads option in Preferences</li><li>Added download progress/speed indicators</li><li>Replaced the View Log button with an Open Save Folder button on successful download and a Retry Download button on error</li><li>Redesigned download rows to better fit small screens/mobile devices</li><li>Fixed UI freeze while downloads in progress</li><li>Fixed being unable to close the Preferences window with the Esc key</li><li>Fixed missing GNOME HIG keyboard shortcuts (Ctrl+W, F10)</li></ul>";
_mainWindowController.AppInfo.Version = "2023.3.0-beta2";
_mainWindowController.AppInfo.Changelog = "<ul><li>Tube Converter has been rewritten in C#. With the C# rewrite, Tube Converter is now available on Windows!</li><li>Added a queue system with a max number of active downloads option in Preferences</li><li>Added download progress/speed indicators</li><li>Added the ability to view a download's log as the download is in progress</li><li>Added the ability to open the save folder after the download is complete</li><li>Redesigned download rows to better fit small screens/mobile devices</li><li>Fixed UI freeze while downloads in progress</li><li>Fixed being unable to close the Preferences window with the Esc key</li><li>Fixed missing GNOME HIG keyboard shortcuts (Ctrl+W, F10)</li></ul>";
_mainWindowController.AppInfo.GitHubRepo = new Uri("https://github.com/nlogozzo/NickvisionTubeConverter");
_mainWindowController.AppInfo.IssueTracker = new Uri("https://github.com/nlogozzo/NickvisionTubeConverter/issues/new");
_mainWindowController.AppInfo.SupportUrl = new Uri("https://github.com/nlogozzo/NickvisionTubeConverter/discussions");
Expand Down
1 change: 0 additions & 1 deletion NickvisionTubeConverter.GNOME/Views/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using NickvisionTubeConverter.Shared.Events;
using NickvisionTubeConverter.Shared.Models;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;

namespace NickvisionTubeConverter.GNOME.Views;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,13 @@
<binary>NickvisionTubeConverter.GNOME</binary>
</provides>
<releases>
<release version="2023.3.0-beta1" date="2023-02-25">
<release version="2023.3.0-beta2" date="2023-03-04">
<description>
<p>Tube Converter has been rewritten in C#. With the C# rewrite, Tube Converter is now available on Windows!</p>
<p>Added a queue system with a max number of active downloads option in Preferences</p>
<p>Added download progress/speed indicators</p>
<p>Replaced the View Log button with an Open Save Folder button on successful download and a Retry Download button on error</p>
<p>Added the ability to view a download's log as the download is in progress</p>
<p>Added the ability to open the save folder after the download is complete</p>
<p>Redesigned download rows to better fit small screens/mobile devices</p>
<p>Fixed UI freeze while downloads in progress</p>
<p>Fixed being unable to close the Preferences window with the Esc key</p>
Expand Down
2 changes: 1 addition & 1 deletion NickvisionTubeConverter.WinUI/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public App()
_mainWindowController.AppInfo.Name = "Nickvision Tube Converter";
_mainWindowController.AppInfo.ShortName = "Tube Converter";
_mainWindowController.AppInfo.Description = $"{_mainWindowController.Localizer["Description"]}.";
_mainWindowController.AppInfo.Version = "2023.3.0-beta1";
_mainWindowController.AppInfo.Version = "2023.3.0-beta2";
_mainWindowController.AppInfo.Changelog = "- Tube Converter has been rewritten in C#.\nWith the C# rewrite, Tube Converter is now available on Windows!";
_mainWindowController.AppInfo.GitHubRepo = new Uri("https://github.com/nlogozzo/NickvisionTubeConverter");
_mainWindowController.AppInfo.IssueTracker = new Uri("https://github.com/nlogozzo/NickvisionTubeConverter/issues/new");
Expand Down

0 comments on commit 4ec3c48

Please sign in to comment.