Skip to content

Commit

Permalink
Updates to v3.5.6 / v1.1.25
Browse files Browse the repository at this point in the history
* Config: Fixes clone implementation
* Demuxer/Screamer: Improves EOF without raising errors in some cases
* M3UPlaylist: Fixes an issue with Tags
* Mouse: Fixes an issue with WinMoveOnDrag (sometimes it was moving the window when it should not)
* Remuxer: Fixes a possible issue with TS extension by adding it manually on the demuxer
* Renderer: Allows D3D11 to play HDR videos (even if does not support it yet) when forced as VP
* VideoView: Binds VideoViews visibility with the Foreground Window

* Controls.WPF: Fixes Subtitles Fonts to respect FontFamily configuration
* Controls.WPF: Fixes an issue with Custom Aspect Ratio
  • Loading branch information
SuRGeoNix committed Jun 23, 2022
1 parent a1d60f1 commit d1c3fe1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions FlyleafLib.Controls.WPF/FlyleafLib.Controls.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net6.0-windows;net5.0-windows;net472</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
<Version>1.1.24</Version>
<Version>1.1.25</Version>
<Authors>SuRGeoNix</Authors>
<Copyright>SuRGeoNix © 2022</Copyright>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
Expand All @@ -14,8 +14,8 @@
<PackageTags>flyleaf flyleaflib video audio media player element control</PackageTags>
<Description>WPF Media Player Control/Element (based on FlyleafLib)</Description>
<PackageReleaseNotes>
* Fixes and improves activity mode
* Fixes an issue with Alt+F4 on VideoView's front window
* Fixes an issue with Custom Aspect Ratio
* Fixes Subtitles Fonts to respect FontFamily configuration
* Updates FlyleafLib
</PackageReleaseNotes>
</PropertyGroup>
Expand Down
14 changes: 8 additions & 6 deletions FlyleafLib/FlyleafLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackageIconUrl />
<RepositoryUrl></RepositoryUrl>
<Description>Media Player .NET Library for WPF/WinForms (based on FFmpeg/DirectX)</Description>
<Version>3.5.5</Version>
<Version>3.5.6</Version>
<Authors>SuRGeoNix</Authors>
<Copyright>SuRGeoNix © 2022</Copyright>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
Expand All @@ -17,11 +17,13 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>
* VideoView: Shows/Hides front window based on videoview's visibility
* VideoView: Fixes an issue with front window not properly following the videoview
* VideoView: Fixes an issue with datacontext getting to null on fullscreen
* Renderer : Fixes issues with Pan/Zoom on D3D11 video processor
* Updates Vortice
* Config: Fixes clone implementation
* Demuxer/Screamer: Improves EOF without raising errors in some cases
* M3UPlaylist: Fixes an issue with Tags
* Mouse: Fixes an issue with WinMoveOnDrag (sometimes it was moving the window when it should not)
* Remuxer: Fixes a possible issue with TS extension by adding it manually on the demuxer
* Renderer: Allows D3D11 to play HDR videos (even if does not support it yet) when forced as VP
* VideoView: Binds VideoViews visibility with the Foreground Window
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion Samples/FlyleafPlayer (WPF Control) (WPF)/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
xmlns:flwpf="clr-namespace:FlyleafLib.Controls.WPF;assembly=FlyleafLib.Controls.WPF"

mc:Ignorable="d"
Title="Flyleaf v3.5.2" Height="450" Width="800" Background="Black" Loaded="Window_Loaded" Icon="/Flyleaf.ico">
Title="Flyleaf v3.5.6" Height="450" Width="800" Background="Black" Loaded="Window_Loaded" Icon="/Flyleaf.ico">
<Grid>
<fl:VideoView Player="{Binding Player}">
<Grid>
Expand Down

0 comments on commit d1c3fe1

Please sign in to comment.