Skip to content

Commit d99872d

Browse files
author
theweavrs
committed
updated what's new
1 parent d62f7a1 commit d99872d

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed

BreadPlayer.Views.UWP/Shell.xaml.cs

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,27 @@ protected async override void OnNavigatedTo(NavigationEventArgs e)
7474
GlobalPageKeyDown?.Invoke(sender, args);
7575
if (RoamingSettingsHelper.GetSetting<bool>("IsFirstTime", true))
7676
{
77-
string releaseNotes = "FIXES:\r\n\r\n" +
78-
"Fix play on tap for all touch devices.\n"+
79-
"Fixed all crashes.\r\n\r\n" +
77+
string releaseNotes = "FIXES:\r\n\r\n" +
78+
"Fixed issue where next song to the currently playing song also got added to Recently Eaten.\n" +
79+
"Fixed app crash is result of a bug with library import.\n" +
80+
"Fixed crash when adding songs to a playlist.\n" +
81+
"Fixed app crash when trying to use SMTC on PC.\n" +
82+
"Fixed UI bug where Font Capitilization options weren't being displayed.\n" +
83+
"Fixed UI glitch in which search results weren't adjusted when screen width was reduced.\n" +
84+
"Fixed last.fm scrobbling issue.\n" +
85+
"Fixed issue where recently added items weren't displayed.\n" +
86+
"Fixed Song Duration display for songs longer than 1 hour.\n" +
87+
"Fixed issue where Next Song & Prev Song button didn't work in any playlist.\n" +
88+
"Fixed issue where songs couldn't be imported after player reset.\n" +
89+
"Fixed issue where playing through all tracks in \"Recently Eaten\" will then break out of the list.\r\n\r\n" +
8090
"NEW THINGS:\r\n\r\n" +
81-
"Removed enter to full screen on startup.\n" +
82-
"Removed back button from shortcuts.\n";
83-
await SharedLogic.NotificationManager.ShowMessageBoxAsync(releaseNotes, "What's new in v2.4.0");
91+
"Player foreground will now be adjusted according to the current accent color.\n" +
92+
"We also added a new database engine in this release.\n" +
93+
"Added \"Donate Via Patreon\" button.\r\n\r\n" +
94+
"IMPROVEMENTS:\r\n\r\n" +
95+
"Improved shuffle.\n" +
96+
"Improved UI for both PC & Mobile.\n";
97+
await SharedLogic.NotificationManager.ShowMessageBoxAsync(releaseNotes, "What's new in v2.5.0");
8498
RoamingSettingsHelper.SaveSetting("IsFirstTime", false);
8599
}
86100
if (e.Parameter is StorageFile)

0 commit comments

Comments
 (0)