Skip to content

Commit

Permalink
Updated version and changelog to 1.2.2.
Browse files Browse the repository at this point in the history
Also show the version number in the dialog.
  • Loading branch information
JohannesKauffmann committed Sep 19, 2021
1 parent d1b3d92 commit b4df7eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion OneDrive-Cloud-Player/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Identity
Name="22674TimGels.OneDriveCloudPlayer"
Publisher="CN=3095B4D2-D597-43C2-BFA6-AC26DB73293D"
Version="1.2.1.0" />
Version="1.2.2.0" />

<mp:PhoneIdentity PhoneProductId="329101d2-9ad1-4065-a890-d72be5ed3714" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

Expand Down
8 changes: 3 additions & 5 deletions OneDrive-Cloud-Player/ViewModels/SettingsPageViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,13 @@ private async void DisplayWhatsNewDialog()
{
ContentDialog whatsNewDialog = new ContentDialog
{
Title = $"What's new in {PackageDisplayName}",
Title = $"What's new in {PackageDisplayName} {AppVersion}",
PrimaryButtonText = "Ok",
DefaultButton = ContentDialogButton.Primary,
Background = new SolidColorBrush(Color.FromArgb(255, 30, 41, 49)),
};
whatsNewDialog.Content += "* Added a settings page\n";
whatsNewDialog.Content += "* You can now go directly to the next or previous video from within the \n videoplayer\n";
whatsNewDialog.Content += "* Added more hotkeys to the videoplayer\n";
whatsNewDialog.Content += "* The application is now licensed under GPLv2 only";
whatsNewDialog.Content += "* Fixed an issue where sometimes the audio would be heard playing when \n it was expected to be quiet\n";
whatsNewDialog.Content += "* Updated several libraries and dependencies to the latest version\n";

await whatsNewDialog.ShowAsync();
}
Expand Down

0 comments on commit b4df7eb

Please sign in to comment.