Skip to content

Commit

Permalink
🚀 v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed May 2, 2024
1 parent c542e88 commit 9bf32dd
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 8 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,24 @@
Author: 目棃
Description: 更新日志
Date: 2024-04-17
Update: 2024-04-25
Update: 2024-05-02
---

> 本文档 [`Frontmatter`](https://github.com/BTMuli/MuCli#Frontmatter)[MuCli](https://github.com/BTMuli/Mucli) 自动生成于 `2024-04-17 17:46:42`
>
> 更新于 `2024-04-25 00:26:39`
> 更新于 `2024-05-02 17:43:01`
## [v0.3.0](https://github.com/BTMuli/BangumiToday/releases/tag/v0.2.0) (2024-05-02)

- ✨ 条目搜索、用户收藏等页面支持分页查看
- 🔊 完善日志记录,便于快速定位问题
- ♻️ 重构代码格式化规范,完善贡献指南相关说明
- ⚡️ 修正评分逻辑,评分改成下拉
- ⚡️ 优化RSS更新逻辑,**可能产生重复通知**
- ✨ 侧边栏条目详情记忆打开项,应用关闭后再次打开时会自动填充未关闭的条目详情
- ♻️ 采用Hive存储用户登录状态
- ✨ 实装`torrent`下载功能,**目前仍处于测试阶段**
- ✨ 实装内置播放功能,**目前仍处于测试阶段**

## [v0.2.0](https://github.com/BTMuli/BangumiToday/releases/tag/v0.2.0) (2024-04-25)

Expand Down
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,24 +64,31 @@ dart run msix:create --sign-msix true

## 关于证书

> 截止 2024-05-01,应用使用的证书为自签名证书,需要将证书导入到系统。
> 截止 2024-05-02,应用使用的证书为自签名证书,需要将证书导入到系统。
为了正常安装应用,需要将 [BTMuli.cer](./BTMuli.cer) 证书导入到系统。

下载证书后,双击打开,选择`安装证书`,选择`本地计算机`,选择`将所有的证书都放入下列存储`,点击`浏览`

选择`受信任的发布者`或者`受信任人`,点击`确定`,点击`下一步`,点击`完成`

## 依赖(按照字典序)

项目使用了如下依赖以实现相关功能:

- [DTorrentTask](https://github.com/moham96/dtorrent_task):用于 `torrent` 下载。
- [FlChart](https://app.flchart.dev/):用于绘制条目评分柱状图。
- [Fluent UI](https://bdlukaa.github.io/fluent_ui/):用于实现 Fluent Design 风格的 UI。
- [Hive](https://github.com/isar/hive):用于本地数据存储。
- [MediaKit](https://github.com/media-kit/media-kit):用于视频播放。

## 参考(按照字典序)

- [Ani](https://github.com/open-ani/ani)
- [BangumiAPI(doc)](https://bangumi.github.io/api/)
- [BangumiAPI(server)](https://github.com/bangumi/server)
- [BangumiOAuth](https://github.com/bangumi/api/blob/master/docs-raw/How-to-Auth.md)
- [czy0729/Bangumi](https://github.com/czy0729/Bangumi)
- [FlChart](https://app.flchart.dev/)
- [Fluent UI](https://bdlukaa.github.io/fluent_ui/)
- [FlutterIcons](https://fluttericon.cn/)

## Special Thanks(按照字典序)

Expand Down
2 changes: 1 addition & 1 deletion lib/pages/bangumi/bangumi_search.dart
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,7 @@ class _BangumiSearchPageState extends ConsumerState<BangumiSearchPage>
}

/// 构建搜索框
/// todo 搜索结果与站点搜索结果不一致,详见 https://github.com/bangumi/server/issues/545
Widget buildSearch() {
return Row(
children: [
Expand All @@ -293,7 +294,6 @@ class _BangumiSearchPageState extends ConsumerState<BangumiSearchPage>
buildTypeSelects(),
SizedBox(width: 8.w),
// todo 因为排序方式并不会影响搜索结果,所以暂时不显示
// 详见:https://github.com/bangumi/server/issues/532
// buildSortSelect(),
// SizedBox(width: 8.w),
buildNsfwCheck(),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 0.2.1+1
version: 0.3.0+20

environment:
sdk: '>=3.3.4 <4.0.0'
Expand Down

0 comments on commit 9bf32dd

Please sign in to comment.