Skip to content

Commit 515c620

Browse files
committed
upd - Updated libraries
--- Type: upd Breaking: No Doc Required: No Backport Required: No AI Assisted: No Part: 1/1
1 parent 82409f8 commit 515c620

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All" />
26+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103" PrivateAssets="All" />
2727
</ItemGroup>
2828
<Target Name="EnsureCommitShaInclusion" BeforeTargets="GenerateNuspec" Condition="'$(Configuration)' == 'Debug' And '$(SourceRevisionId)' != '' And '$(ContinuousIntegrationBuild)' == 'true'">
2929
<ReadLinesFromFile File="$(RootPath)/private/BuildTargets/obj/.dtp">

private/BassBoom.Cli/BassBoom.Cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Terminaux" Version="8.0.15" />
10+
<PackageReference Include="Terminaux" Version="8.1.1.2" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

private/BassBoom.Cli/CliBase/Equalizer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
using Terminaux.Writer.CyclicWriters.Simple;
3333
using Terminaux.Writer.CyclicWriters.Graphical;
3434
using Terminaux.Writer.CyclicWriters.Renderer;
35+
using Terminaux.Base.Extensions;
3536

3637
namespace BassBoom.Cli.CliBase
3738
{
@@ -87,7 +88,7 @@ internal static void OpenEqualizer(Screen screen)
8788
// Restore state
8889
exiting = false;
8990
screen.RemoveBufferedParts();
90-
ColorTools.LoadBack();
91+
ConsoleColoring.LoadBack();
9192
}
9293

9394
private static void HandleKeypress(ConsoleKeyInfo keystroke)

private/BassBoom.Cli/CliBase/Player.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ public static void PlayerLoop()
161161
);
162162

163163
// Render the indicator
164-
string boostIndicator = Common.volBoost ? new Color(ConsoleColors.Red).VTSequenceForeground : "";
164+
string boostIndicator = Common.volBoost ? new Color(ConsoleColors.Red).VTSequenceForeground() : "";
165165
string indicator =
166166
LanguageTools.GetLocalized("BASSBOOM_APP_PLAYER_SEEKINDICATOR") + $" {PlayerControls.seekRate:0.00} | " +
167-
boostIndicator + LanguageTools.GetLocalized("BASSBOOM_APP_PLAYER_VOLINDICATOR") + $" {Common.volume * 100:0}%{disco.VTSequenceForeground}";
167+
boostIndicator + LanguageTools.GetLocalized("BASSBOOM_APP_PLAYER_VOLINDICATOR") + $" {Common.volume * 100:0}%{disco.VTSequenceForeground()}";
168168

169169
// Render the lyric
170170
string lyric = Common.CurrentCachedInfo.LyricInstance is not null ? Common.CurrentCachedInfo.LyricInstance.GetLastLineCurrent(BassBoomCli.basolia) : "";
@@ -264,7 +264,7 @@ public static void PlayerLoop()
264264

265265
// Restore state
266266
ConsoleWrapper.CursorVisible = true;
267-
ColorTools.LoadBack();
267+
ConsoleColoring.LoadBack();
268268
playerScreen.RemoveBufferedParts();
269269
ScreenTools.UnsetCurrent(playerScreen);
270270
}

private/BassBoom.Cli/CliBase/Radio.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ public static void RadioLoop()
103103

104104
// Get the boost indicator
105105
var buffer = new StringBuilder();
106-
string boostIndicator = Common.volBoost ? new Color(ConsoleColors.Red).VTSequenceForeground : "";
106+
string boostIndicator = Common.volBoost ? new Color(ConsoleColors.Red).VTSequenceForeground() : "";
107107

108108
// Disco effect!
109109
var disco = PlaybackTools.IsPlaying(BassBoomCli.basolia) && Common.enableDisco ? new Color($"hsl:{hue};50;50") : BassBoomCli.white;
110-
string indicator = $"┤ {boostIndicator}" + LanguageTools.GetLocalized("BASSBOOM_APP_PLAYER_VOLINDICATOR") + $" {Common.volume * 100:0}%{disco.VTSequenceForeground} ├";
110+
string indicator = $"┤ {boostIndicator}" + LanguageTools.GetLocalized("BASSBOOM_APP_PLAYER_VOLINDICATOR") + $" {Common.volume * 100:0}%{disco.VTSequenceForeground()} ├";
111111
if (PlaybackTools.IsPlaying(BassBoomCli.basolia))
112112
{
113113
hue++;
@@ -185,7 +185,7 @@ public static void RadioLoop()
185185

186186
// Restore state
187187
ConsoleWrapper.CursorVisible = true;
188-
ColorTools.LoadBack();
188+
ConsoleColoring.LoadBack();
189189
radioScreen.RemoveBufferedParts();
190190
ScreenTools.UnsetCurrent(radioScreen);
191191
}

public/BassBoom.Native/BassBoom.Native.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434

3535
<ItemGroup>
3636
<PackageReference Include="ResourceLab" Version="1.0.0" />
37-
<PackageReference Include="SpecProbe.Loader" Version="3.8.0" />
38-
<PackageReference Include="SpecProbe.Software" Version="3.8.0" />
37+
<PackageReference Include="SpecProbe.Loader" Version="3.8.0.1" />
38+
<PackageReference Include="SpecProbe.Software" Version="3.8.0.1" />
3939
</ItemGroup>
4040

4141
</Project>

0 commit comments

Comments
 (0)