Skip to content

Commit

Permalink
Upgrading libraries and fixing #37 Subtiles shown automatically when …
Browse files Browse the repository at this point in the history
…found
  • Loading branch information
bartekmotyl committed May 20, 2021
1 parent f3e9138 commit 0ebf1f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion src/SimpleVideoCutter/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ private async void MainForm_Load(object sender, EventArgs e)

// Full list of command line arguments: https://wiki.videolan.org/VLC_command-line_help

var args = new List<string>(new string[] { "--play-and-pause" });
var args = new List<string>(new string[] {
"--play-and-pause",
"--no-sub-autodetect-file",
});

if (!VideoCutterSettings.Instance.Autostart)
{
Expand Down
8 changes: 4 additions & 4 deletions src/SimpleVideoCutter/SimpleVideoCutter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="LibVLCSharp.WinForms">
<Version>3.4.9</Version>
<Version>3.5.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.NETCore.Platforms">
<Version>3.1.2</Version>
Expand All @@ -404,13 +404,13 @@
<Version>2.0.3</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
<Version>12.0.3</Version>
<Version>13.0.1</Version>
</PackageReference>
<PackageReference Include="Octokit">
<Version>0.48.0</Version>
<Version>0.50.0</Version>
</PackageReference>
<PackageReference Include="VideoLAN.LibVLC.Windows">
<Version>3.0.11</Version>
<Version>3.0.14</Version>
</PackageReference>
<PackageReference Include="xFFmpeg.NET">
<Version>3.4.0</Version>
Expand Down

0 comments on commit 0ebf1f5

Please sign in to comment.