Skip to content

Commit

Permalink
发布v1.5.0-alpha4
Browse files Browse the repository at this point in the history
  • Loading branch information
leiurayer committed Mar 12, 2022
1 parent 99f8bb6 commit e69fd47
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# 更新日志

* `2022/03/13` v1.5.0-alpha4
1. [优化] 配置文件目录改为当前程序目录。
2. [修复] 部分UI显示。
3. [修复] 因数据库中的重复内容导致的闪退问题。
4. [修复] 其他已知问题。

* `2022/03/12` v1.5.0-alpha3
1. [修复] 当用户性别为保密时,程序闪退的问题。
2. [修复] 批量下载UP主视频时,程序偶尔闪退的问题。
Expand Down
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@

[全部更新日志](CHANGELOG.md)

* `2022/03/12` v1.5.0-alpha3
1. [修复] 当用户性别为保密时,程序闪退的问题。
2. [修复] 批量下载UP主视频时,程序偶尔闪退的问题。
3. [修复] 其他已知问题。
* `2022/03/13` v1.5.0-alpha4
1. [优化] 配置文件目录改为当前程序目录。
2. [修复] 部分UI显示。
3. [修复] 因数据库中的重复内容导致的闪退问题。
4. [修复] 其他已知问题。

## 下载

- [哔哩下载姬最新版](https://github.com/FlySelfLog/downkyi/releases/download/v1.5.0-alpha3/DownKyi-1.5.0-alpha3.zip)
- [哔哩下载姬最新版](https://github.com/FlySelfLog/downkyi/releases/download/v1.5.0-alpha4/DownKyi-1.5.0-alpha4.zip)

- [下载页面](https://github.com/FlySelfLog/downkyi/releases)

Expand All @@ -26,6 +27,12 @@

![Alipay](images/Alipay.png)![WeChat](images/WeChat.png)

## 开发

### 相关项目

- [哔哩哔哩-API收集整理](https://github.com/SocialSisterYi/bilibili-API-collect)

## 免责申明

1. 本软件只提供视频解析,不提供任何资源上传、存储到服务器的功能。
Expand Down
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; } = 502;
public int VersionCode { get; } = 503;

#if DEBUG
public string VersionName { get; } = "1.5.0-alpha3 Debug";
public string VersionName { get; } = "1.5.0-alpha4 Debug";
#else
public string VersionName { get; } = "1.5.0-alpha3";
public string VersionName { get; } = "1.5.0-alpha4";
#endif

}
Expand Down

0 comments on commit e69fd47

Please sign in to comment.