Skip to content

Releases: ashpynov/PlayniteSound

v5.8.2

20 Sep 10:12

Choose a tag to compare

  • Quick scroll transition fixes #26
  • Proper pausing of background music #39
  • Preloading of next music of fadeout phase to improve smoothness of transition
  • Configurable Media Player or SDL Mixer for playback

v5.8.1

15 Sep 20:54

Choose a tag to compare

  • Fallback to SDL Mixer media player (used by Playnite) as fallback if Windows Media Player Legacy (App) is not installed #34, #37
  • Support of relative paths in settings #30

v5.7.23

01 Apr 13:11

Choose a tag to compare

Handle error if required legacy media player is not installed and install it using DISM tool.

v5.7.22

21 Jan 13:31

Choose a tag to compare

Do not reset background music on custom music completed #20

v5.7.21

20 Jan 22:39

Choose a tag to compare

  • Pause backup music instead of restart (PS5 like) #20

v5.7.20

20 Jan 20:23

Choose a tag to compare

Fixed: [BUG] Play/Pause button doesn't seem to work anymore #21

v5.7.19

25 Dec 14:34

Choose a tag to compare

Added ability for theme creators to mute music in any window (menu, settings etc.) To do this Just place

<ContentControl x:Name="Sounds_MusicControl" Visibility="Collapsed" Tag="True" />

into window you wanna to mute music in.

For example to mute music in MainMenu you may modify content of MainMenuHeaderTemplate:

    <DataTemplate x:Key="MainMenuHeaderTemplate">
        <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,10,0,0">
            <ContentControl x:Name="Sounds_MusicControl" Visibility="Collapsed" Tag="True" />
            <Image Source="{ThemeFile 'Images/Allynite.png'}" Height="{DynamicResource ThemeBaseSizex2}"
                RenderOptions.BitmapScalingMode="Fant" />
        </StackPanel>
    </DataTemplate>

v5.7.18

20 Dec 19:45

Choose a tag to compare

Recovered Fullscreen work

v5.7.17

18 Dec 05:38

Choose a tag to compare

Alt version to pause music when switching tabs (#11)

v.5.7.16

16 Dec 18:56

Choose a tag to compare

This version includes:

  • Update of Youtube playlist parser (close issue #14)
  • New option to disable music play on first selection after startup (close issue #15 )
  • New Option to disable music when not in Library Tab at desktop mode (close issue #11 and possibly #16 )