Skip to content

Commit

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

Type: dev
Breaking: False
Doc Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Jan 16, 2024
1 parent c9e1e9e commit a13fcc7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion BassBoom.Cli/BassBoomCli.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static int Main(string[] args)
try
{
// Essentials
Console.Title = "BassBoom CLI - Basolia v0.0.3.1 - Alpha 3";
Console.Title = "BassBoom CLI - Basolia v0.0.4 - Alpha 4";

// First, prompt for the music path if no arguments are provided.
if (args.Length != 0)
Expand Down
8 changes: 4 additions & 4 deletions BassBoom/ViewModels/MainViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,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.3.1 - Alpha 3{artist} - {title}";
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.4 - Alpha 4{artist} - {title}";

// Actually play!
sliderUpdate.Start(view);
Expand Down Expand Up @@ -273,7 +273,7 @@ public async Task ProcessPlayAsync()
FileTools.CloseFile();
}
if (Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.3.1 - Alpha 3";
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.4 - Alpha 4";
sliderUpdate = new(UpdateSlider);
view.PlayButton.IsEnabled = true;
view.PauseButton.IsEnabled = false;
Expand Down Expand Up @@ -309,7 +309,7 @@ public void Pause()
finally
{
if (Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.3.1 - Alpha 3";
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.4 - Alpha 4";
view.PlayButton.IsEnabled = true;
view.PauseButton.IsEnabled = false;
view.StopButton.IsEnabled = true;
Expand Down Expand Up @@ -347,7 +347,7 @@ public async Task Stop()
if (FileTools.IsOpened)
FileTools.CloseFile();
if (Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.3.1 - Alpha 3";
desktop.MainWindow.Title = $"BassBoom - Basolia 0.0.4 - Alpha 4";
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.3.1 - Alpha 3">
Title="BassBoom - Basolia 0.0.4 - Alpha 4">
<views:MainView />
</Window>
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<AvaloniaVersion>11.0.2</AvaloniaVersion>
<Version>0.0.3.1</Version>
<Version>0.0.4</Version>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<IncludeSymbols>True</IncludeSymbols>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion tools/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3.1
0.0.4

0 comments on commit a13fcc7

Please sign in to comment.