Skip to content

Commit

Permalink
发布v1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
leiurayer committed Jun 5, 2022
1 parent 259271e commit 49895b8
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/06/05` v1.5.3

* [优化] 封面命名。
* [新增] 启用https控制。
* [新增] 支持出行分区。
* [新增] 下载管理页面入口。
* [修复] 批量操作时偶尔崩溃的问题。
* [修复] 监听剪贴板失效的问题。

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

* [优化] 更新依赖版本。
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.2.0")]
[assembly: AssemblyFileVersion("2.1.2.0")]
[assembly: AssemblyVersion("2.1.3.0")]
[assembly: AssemblyFileVersion("2.1.3.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; } = 509;
public int VersionCode { get; } = 510;

#if DEBUG
public string VersionName { get; } = "1.5.2 Debug";
public string VersionName { get; } = "1.5.3 Debug";
#else
public string VersionName { get; } = "1.5.2";
public string VersionName { get; } = "1.5.3";
#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.2.0")]
[assembly: AssemblyFileVersion("1.5.2.0")]
[assembly: AssemblyVersion("1.5.3.0")]
[assembly: AssemblyFileVersion("1.5.3.0")]

0 comments on commit 49895b8

Please sign in to comment.