Skip to content

Commit

Permalink
发布v1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
leiurayer committed May 14, 2022
1 parent 6327a29 commit fcf6005
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# 更新日志

## `2022/05/09` v1.5.2

* [优化] 更新依赖版本。
* [新增] 内建下载器。
* [新增] 下载器切换设置。
* [修复] 问题 SSL/TLS handshake failure。

---

* `2022/05/09` v1.5.1
1. [优化] 当复制视频详情页的输入框中的字符时,不读取剪贴板内容。
2. [优化] Aria下载器添加header。
Expand Down Expand Up @@ -62,7 +71,7 @@
2. [新增] 最高支持8K视频。
3. [新增] 支持杜比全景声和杜比视界。
4. [新增] 支持字幕下载。
5. [新增] 支持部分短链接(如 https://b23.tv/BV17x411w7KC )。
5. [新增] 支持部分短链接(如 <https://b23.tv/BV17x411w7KC> )。
6. [新增] 下载内容可选,可根据需要选择下载视频、音频、弹幕、字幕、封面。
7. [新增] 下载文件命名模块,可自主设置文件名。

Expand Down
4 changes: 2 additions & 2 deletions src/DownKyi.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.1.0")]
[assembly: AssemblyVersion("2.1.2.0")]
[assembly: AssemblyFileVersion("2.1.2.0")]
6 changes: 3 additions & 3 deletions src/DownKyi/Models/AppInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
public class AppInfo
{
public string Name { get; } = "哔哩下载姬";
public int VersionCode { get; } = 508;
public int VersionCode { get; } = 509;

#if DEBUG
public string VersionName { get; } = "1.5.1 Debug";
public string VersionName { get; } = "1.5.2 Debug";
#else
public string VersionName { get; } = "1.5.1";
public string VersionName { get; } = "1.5.2";
#endif

}
Expand Down
4 changes: 2 additions & 2 deletions src/DownKyi/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.1.0")]
[assembly: AssemblyFileVersion("1.5.1.0")]
[assembly: AssemblyVersion("1.5.2.0")]
[assembly: AssemblyFileVersion("1.5.2.0")]

0 comments on commit fcf6005

Please sign in to comment.