File tree Expand file tree Collapse file tree 6 files changed +12
-11
lines changed
Expand file tree Collapse file tree 6 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 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" >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 3232using Terminaux . Writer . CyclicWriters . Simple ;
3333using Terminaux . Writer . CyclicWriters . Graphical ;
3434using Terminaux . Writer . CyclicWriters . Renderer ;
35+ using Terminaux . Base . Extensions ;
3536
3637namespace 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 )
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments