Skip to content

Commit

Permalink
发布v1.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
leiurayer committed Nov 6, 2022
1 parent eb274f8 commit eef382c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# 更新日志

## `2022/11/06` v1.5.5

* [优化] 更新分区列表。
* [优化] 更新依赖包。
* [新增] 关注和粉丝页面。
* [修复] 命名格式无AV1编码的问题。
* [修复] 优先解析视频编码顺序为AV1、HEVC、AVC。
* [修复] 自定义aria服务器监听端口设置无效的问题。

## `2022/10/16` v1.5.4

This comment has been minimized.

Copy link
@zhaoyingchuang

zhaoyingchuang Dec 26, 2022

为什么我可以解析到1080p视频但是无法下载呢,一直显示等待中,就是不开始下载

* [新增] 支持AV1编码视频。
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.4.0")]
[assembly: AssemblyFileVersion("2.1.4.0")]
[assembly: AssemblyVersion("2.1.5.0")]
[assembly: AssemblyFileVersion("2.1.5.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; } = 511;
public int VersionCode { get; } = 512;

#if DEBUG
public string VersionName { get; } = "1.5.4 Debug";
public string VersionName { get; } = "1.5.5 Debug";
#else
public string VersionName { get; } = "1.5.4";
public string VersionName { get; } = "1.5.5";
#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.4.0")]
[assembly: AssemblyFileVersion("1.5.4.0")]
[assembly: AssemblyVersion("1.5.5.0")]
[assembly: AssemblyFileVersion("1.5.5.0")]

0 comments on commit eef382c

Please sign in to comment.