Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Harlan-H committed Jul 25, 2023
2 parents 6336e77 + 33109ce commit 761d2ef
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 3.13.2 (2023/07/12)
- 修复检测ts的规则,使得不会误判

# 3.13.1 (2023/07/05)
- 修改超时机制,使得延迟更加合理
- 修改视频伪装流的验证机制,改为强制验证
Expand Down
4 changes: 2 additions & 2 deletions M3u8Downloader_H.Core/M3u8Downloader_H.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>3.13.1.0</Version>
<Version>3.13.2.0</Version>
<Authors>Harlan</Authors>
<AssemblyVersion>3.13.1.0</AssemblyVersion>
<AssemblyVersion>3.13.2.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand Down
2 changes: 1 addition & 1 deletion M3u8Downloader_H.Core/Utils/HandleImageStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public async Task InitializePositionAsync(int capacity,CancellationToken cancell
{
for (int i = 0; i < length; i++)
{
if (data[i] == 0x47 && data[i + 1] == 0x40 && data[i + 188] == 0x47)
if (data[i] == 0x47 && data[i + 188] == 0x47 && data[i + 188 * 2] == 0x47)
{
return i;
}
Expand Down
4 changes: 2 additions & 2 deletions M3u8Downloader_H.M3U8/M3u8Downloader_H.M3U8.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<AssemblyVersion>3.13.1.0</AssemblyVersion>
<Version>3.13.1.0</Version>
<AssemblyVersion>3.13.2.0</AssemblyVersion>
<Version>3.13.2.0</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Release'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<Version>3.13.1.0</Version>
<Version>3.13.2.0</Version>
<ApplicationIcon>icon.ico</ApplicationIcon>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions M3u8Downloader_H/M3u8Downloader_H.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<UseWindowsForms>true</UseWindowsForms>
<RootNamespace>M3u8Downloader_H</RootNamespace>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyVersion>3.13.1.0</AssemblyVersion>
<Version>3.13.1.0</Version>
<AssemblyVersion>3.13.2.0</AssemblyVersion>
<Version>3.13.2.0</Version>
<PackageId>m3u8视频下载器</PackageId>
<Product>m3u8视频下载器</Product>
<ApplicationIcon>icon.ico</ApplicationIcon>
Expand Down

0 comments on commit 761d2ef

Please sign in to comment.