Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/Generic/ExtraMetadataLoader/ExtraMetadataLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ public override void OnLibraryUpdated(OnLibraryUpdatedEventArgs args)
var progressTitle = ResourceProvider.GetString("LOCExtra_Metadata_Loader_DialogMessageLibUpdateAutomaticDownloadVideos");
var progressOptions = new GlobalProgressOptions(progressTitle, true);
progressOptions.IsIndeterminate = false;
var downloadOptions = new VideoDownloadOptions(VideoType.Trailer,);
var downloadOptions = new VideoDownloadOptions(VideoType.Trailer,true);
PlayniteApi.Dialogs.ActivateGlobalProgress((a) =>
{
var games = PlayniteApi.Database.Games.Where(x => x.Added.HasValue && x.Added > settings.Settings.LastAutoLibUpdateAssetsDownload);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,11 @@
Margin="0" Background="Transparent" BorderThickness="0" Padding="0"
Height="{Binding ElementName=CoverImage, Path=Height}" Width="{Binding ElementName=CoverImage, Path=Width}">
<Grid>
<Grid.OpacityMask>
<VisualBrush Visual="{Binding ElementName=Mask}"/>
</Grid.OpacityMask>
<Border x:Name="Mask" Background="Black" CornerRadius="5" />

<Image x:Name="CoverImage" Source="{Binding CoverImage}"
VerticalAlignment="Center"
Height="{Binding ElementName=MainGrid, Path=DataContext.Settings.CoversHeight}"
RenderOptions.BitmapScalingMode="HighQuality" />
<Border Background="#BF000000"
Visibility="{Binding Game.IsInstalled, Converter={StaticResource InvertedBooleanToVisibilityConverter}}" />
</Grid>
</Button>
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion source/Generic/NewsViewer/NewsViewerSettingsView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</TextBlock>
<StackPanel Orientation="Horizontal" Margin="0,0,0,0">
<Label Content="{DynamicResource LOC_NewsViewer_Settings_DescriptionMaxHeightLabel}" Margin="0,0,0,0" VerticalAlignment="Center" />
<Slider Value="{Binding Settings.DescriptionMaxHeight, UpdateSourceTrigger=PropertyChanged}" Width="150" Minimum="150" Maximum="400" VerticalAlignment="Center"
<Slider Value="{Binding Settings.DescriptionMaxHeight, UpdateSourceTrigger=PropertyChanged}" Width="150" Minimum="150" Maximum="1400" VerticalAlignment="Center"
TickFrequency="5" Margin="10,0,0,0" IsSnapToTickEnabled="True"/>
<TextBlock Text="{Binding Settings.DescriptionMaxHeight, UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Center"/>
</StackPanel>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@
d:DesignHeight="450" d:DesignWidth="800">
<Button Visibility="{Binding ControlVisibility}"
Command="{Binding OpenSteamDbGraphsCommand}"
Content="{Binding InGamePlayersCount}" />
Content="{Binding InGamePlayersCount}" ContentStringFormat="{}{0:N0}" Language="fr-FR">

</Button>
</PluginUserControl>
2 changes: 1 addition & 1 deletion source/Generic/SteamViewer/SteamViewer.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.1267
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SteamViewer", "SteamViewer.csproj", "{4FDF1E89-5BC3-4C72-8FDA-0D580E7A5D5F}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SteamViewer", "SteamShortcuts.csproj", "{4FDF1E89-5BC3-4C72-8FDA-0D580E7A5D5F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down