Skip to content

Commit ec1863d

Browse files
committed
Added items to what's new dialog on the settings page
SettingsPageViewModel.cs: - chg: Added new changes to the "What's new" dialog. VideoPlayerPageViewModel.cs: - rm: Removed leftover unused field.
1 parent e562203 commit ec1863d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

OneDrive-Cloud-Player/ViewModels/SettingsPageViewModel.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,15 @@ private async void DisplayWhatsNewDialog()
7171
{
7272
ContentDialog whatsNewDialog = new ContentDialog
7373
{
74-
Title = $"Whats new in {PackageDisplayName}",
74+
Title = $"What's new in {PackageDisplayName}",
7575
PrimaryButtonText = "Ok",
7676
DefaultButton = ContentDialogButton.Primary,
7777
Background = new SolidColorBrush(Color.FromArgb(255, 30, 41, 49)),
7878
};
79-
whatsNewDialog.Content += "* Added a settings page";
79+
whatsNewDialog.Content += "* Added a settings page\n";
80+
whatsNewDialog.Content += "* You can now go directly to the next or previous video from within the \n videoplayer\n";
81+
whatsNewDialog.Content += "* Added more hotkeys to the videoplayer\n";
82+
whatsNewDialog.Content += "* The application is now licensed under GPLv2 only";
8083

8184
await whatsNewDialog.ShowAsync();
8285
}

OneDrive-Cloud-Player/ViewModels/VideoPlayerPageViewModel.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ namespace OneDrive_Cloud_Player.ViewModels
2424
public class VideoPlayerPageViewModel : ViewModelBase, INotifyPropertyChanged, IDisposable, INavigable
2525
{
2626
private readonly INavigationService _navigationService;
27-
private readonly GraphHelper graphHelper = GraphHelper.Instance();
2827
/// <summary>
2928
/// Fires every time the OneDrive download URL has expired (two minutes).
3029
/// </summary>

0 commit comments

Comments
 (0)