Skip to content

Commit

Permalink
dev - Started development of 0.0.3
Browse files Browse the repository at this point in the history
---

This is going to be a small release to align with the requirements for the next version of Terminaux. We'll hopefully make improvements, though.

---

Type: dev
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Dec 10, 2023
1 parent d738369 commit d071c23
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion BassBoom.Cli/BassBoomCli.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static int Main(string[] args)
try
{
// Essentials
Console.Title = "BassBoom CLI - Basolia v0.0.2.1 - Alpha 2";
Console.Title = "BassBoom CLI - Basolia v0.0.3 - Alpha 3";

// First, prompt for the music path if no arguments are provided.
if (args.Length != 0)
Expand Down
2 changes: 1 addition & 1 deletion BassBoom.Cli/CliBase/PlayerControls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ internal static void RenderSongName(string musicPath)
var (musicName, musicArtist, _) = GetMusicNameArtistGenre(musicPath);

// Print the music name
Console.Title = $"BassBoom CLI - Basolia v0.0.2.1 - Alpha 2{musicArtist} - {musicName}";
Console.Title = $"BassBoom CLI - Basolia v0.0.3 - Alpha 3{musicArtist} - {musicName}";
CenteredTextColor.WriteCentered(1, $"Now playing: {musicArtist} - {musicName}");
}

Expand Down
8 changes: 4 additions & 4 deletions BassBoom/ViewModels/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public async Task ProcessPlayAsync()
v1.GenreIndex >= 0 ? $"{v1.Genre} [{v1.GenreIndex}]" :
"Unknown Genre";
if (Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.2.1 - Alpha 2{artist} - {title}";
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.3 - Alpha 3{artist} - {title}";

// Actually play!
sliderUpdate.Start(view);
Expand Down Expand Up @@ -274,7 +274,7 @@ public async Task ProcessPlayAsync()
FileTools.CloseFile();
}
if (Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.2.1 - Alpha 2";
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.3 - Alpha 3";
sliderUpdate = new(UpdateSlider);
view.PlayButton.IsEnabled = true;
view.PauseButton.IsEnabled = false;
Expand Down Expand Up @@ -310,7 +310,7 @@ public void Pause()
finally
{
if (Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.2.1 - Alpha 2";
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.3 - Alpha 3";
view.PlayButton.IsEnabled = true;
view.PauseButton.IsEnabled = false;
view.StopButton.IsEnabled = true;
Expand Down Expand Up @@ -348,7 +348,7 @@ public async Task Stop()
if (FileTools.IsOpened)
FileTools.CloseFile();
if (Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.2.1 - Alpha 2";
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.3 - Alpha 3";
view.PlayButton.IsEnabled = true;
view.PauseButton.IsEnabled = false;
view.StopButton.IsEnabled = false;
Expand Down
2 changes: 1 addition & 1 deletion BassBoom/Views/MainWindow.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="BassBoom.Views.MainWindow"
Icon="/Assets/OfficialAppIcon-BassBoom.ico"
Title="BassBoom - Basolia 0.0.2.1 - Alpha 2">
Title="BassBoom - Basolia 0.0.3 - Alpha 3">
<views:MainView />
</Window>
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<AvaloniaVersion>11.0.2</AvaloniaVersion>
<Version>0.0.2.1</Version>
<Version>0.0.3</Version>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion tools/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.2.1
0.0.3

0 comments on commit d071c23

Please sign in to comment.