diff --git a/BassBoom.Cli/CliBase/PlayerControls.cs b/BassBoom.Cli/CliBase/PlayerControls.cs index 4f85d10..77cede1 100644 --- a/BassBoom.Cli/CliBase/PlayerControls.cs +++ b/BassBoom.Cli/CliBase/PlayerControls.cs @@ -20,6 +20,7 @@ using BassBoom.Basolia.Enumerations; using BassBoom.Basolia.File; using BassBoom.Basolia.Format; +using BassBoom.Basolia.Independent; using BassBoom.Basolia.Lyrics; using BassBoom.Basolia.Playback; using BassBoom.Basolia.Playback.Playlists; @@ -443,9 +444,7 @@ internal static void PlayTest() throw new Exception("Missing test sound data."); // Now, close the file and play it - FileTools.OpenFrom(BassBoomCli.basolia, stream); - PlaybackTools.Play(BassBoomCli.basolia); - FileTools.CloseFile(BassBoomCli.basolia); + PlayForget.PlayStream(stream); // Ask the user if everything is OK. int answer = InfoBoxButtonsColor.WriteInfoBoxButtons("Sound test", [new InputChoiceInfo("Yes", "Yes"), new InputChoiceInfo("No", "No")], "Is everything OK in this current configuration?"); diff --git a/CHANGES b/CHANGES index 84c57d3..e71599d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,12 +1,10 @@ -We've added features that let you play from a stream +We've added features to Play-n-Forget that lets you play sounds asynchronously. ### Changes This release contains a variety of changes, including, but not limited to: -- `[+]` Added playing from stream -- `[+]` Added Play/Forget -- `[*]` General improvements and bug fixes +- `[+]` Added asynchronous Play/Forget Review the commit history if you want to get a deep insight about the changes. diff --git a/CHANGES.TITLE b/CHANGES.TITLE index ec1fc74..1852465 100644 --- a/CHANGES.TITLE +++ b/CHANGES.TITLE @@ -1 +1 @@ -[release] BassBoom v0.2.2: Play and Forget! +[release] BassBoom v0.2.3: Play More and Forget More!