Skip to content

Commit

Permalink
Updates to v3.7.44 (FlyleafLib) / v1.3.6 (FlyleafME) / v1.0.25 (Flyle…
Browse files Browse the repository at this point in the history
…afHost.WinUI)

- Renderer: Fixes an access violation with broken files [Fixes #424]
- Subtitles: Prevents Local/Online Search for 'small' duration videos (less than 25 minutes)
- VideoDecoder: Fixes (possible) an issue with the codec's announced rotation
- Player.Keys: Allows overwriting existing keys instead of throwing an exception
- Player: Introduces Opening event
- FlyleafHost.Wpf: Activates Surface/Overlay window after DragNDrop
- PlayerDebug.Wpf: Adds full Url
- Samples.FlyleafPlayer: Adds Photo Viewer / Slide Show support
  • Loading branch information
SuRGeoNix committed Jan 31, 2024
1 parent 3df7288 commit c970e91
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 17 deletions.
2 changes: 1 addition & 1 deletion FlyleafLib.Controls.WPF/FlyleafLib.Controls.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net8.0-windows;net6.0-windows;net472</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>true</UseWPF>
<Version>1.3.5</Version>
<Version>1.3.6</Version>
<Authors>SuRGeoNix</Authors>
<Copyright>SuRGeoNix © 2024</Copyright>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion FlyleafLib.Controls.WinUI/FlyleafLib.Controls.WinUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<UseWinUI>true</UseWinUI>
<Nullable>enable</Nullable>
<Authors>SuRGeoNix</Authors>
<Version>1.0.24</Version>
<Version>1.0.25</Version>
<Copyright>SuRGeoNix © 2024</Copyright>
<PackageProjectUrl>https://github.com/SuRGeoNix/Flyleaf</PackageProjectUrl>
<PackageIcon>Flyleaf.png</PackageIcon>
Expand Down
22 changes: 8 additions & 14 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 WinUI 3/WPF/WinForms (based on FFmpeg/DirectX)</Description>
<Version>3.7.43</Version>
<Version>3.7.44</Version>
<Authors>SuRGeoNix</Authors>
<Copyright>SuRGeoNix © 2024</Copyright>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
Expand All @@ -17,19 +17,13 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageReleaseNotes>
- Player: AV Sync improvements (mainly after seeking)
- Player: AudioOnly playback improvements and fixing a number of issues
- Player: Introduces SeekCompleted event (will fire only when Player is paused/not running)
- Player: Fixes a minon issue with CurTime update
- Renderer: Fixes an issue with PixelShaders with > 8 bit depth (it wouldn't update properly the shader when switching from one depth to another)
- Decoder: Fixes an issue with CodecIDs which could cause open codec to fail (mainly for MP2/AV1)
- AudioDecoder: Adds support for frames without duration
- AudioDecoder: Adds support for frames without timestamps
- AudioDecoder: Force pts 0 for no timestamps after seek to 0 (start)
- VideoDecoder: Allows first packet to be a non-keyframe
- VideoDecoder: Fixes an issue with the GetFrame() when used directly after Open
- VideoFrame: Keeps reference to AVFrame instead of AVBufferRef
- Plugins.OpenSubtitles: Fixes an issue which converts to utf8 the same file everytime
- Renderer: Fixes an access violation with broken files [Fixes #424]
- Subtitles: Prevents Local/Online Search for 'small' duration videos (less than 25 minutes)
- VideoDecoder: Fixes (possible) an issue with the codec's announced rotation
- Player.Keys: Allows overwriting existing keys instead of throwing an exception
- Player: Introduces Opening event
- FlyleafHost.Wpf: Activates Surface/Overlay window after DragNDrop
- PlayerDebug.Wpf: Adds full Url
</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 @@ -329,7 +329,7 @@
<Button Style="{StaticResource MaterialDesignOutlinedSecondaryButton}" Command="{Binding Tag.ShowNextImage}" IsEnabled="{Binding Tag.CanNextImage}" Focusable="False" Content="{materialDesign:PackIcon Kind=ArrowRight,Size=30}" Padding="0" Margin="0" VerticalContentAlignment="Center" Width="40" Height="100" VerticalAlignment="Center" HorizontalAlignment="Right"/>

<!--Index / Total-->
<TextBlock VerticalAlignment="Bottom" HorizontalAlignment="Right" d:Text="526 / 1000" FontWeight="Bold" FontSize="14" Margin="20" Foreground="{DynamicResource MaterialDesign.Brush.Secondary}">
<TextBlock VerticalAlignment="Bottom" HorizontalAlignment="Center" d:Text="526 / 1000" FontWeight="Bold" FontSize="14" Margin="0 0 0 20" Foreground="{DynamicResource MaterialDesign.Brush.Secondary}">
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} / {1}">
<Binding Path="Tag.UIImageIndex" />
Expand Down

0 comments on commit c970e91

Please sign in to comment.