Skip to content

Commit

Permalink
v1.0.6 更新
Browse files Browse the repository at this point in the history
  • Loading branch information
guozhigq committed Sep 2, 2023
1 parent ff47aff commit e35f39e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 12 deletions.
34 changes: 34 additions & 0 deletions change_log/1.0.6.0902.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## 1.0.6

问题反馈、功能建议请查看「关于」页面。

### 新功能
+ 首页单列布局
+ 首页推荐展示播放量、弹幕数
+ 简单弹幕功能实现(持续开发中...)
+ 评论区搜索关键词开关 issues#46
+ 热搜榜隐藏功能 issues#35
+ 自动全屏 issues#37
+ 快速收藏功能
+ 双击快进/快退开关
+ 评论链接跳转视频
+ 支持移除单个稍后再看
+ app scheme外链跳转


### 修复
+ 杜比、无损音频切换
+ 收藏夹展示 issues#42
+ 搜索建议次 issues#47


### 优化
+ 倍速选择优化
+ 导航条沉浸
+ 取消Hero动画
+ 视频锁定逻辑
+ 登录逻辑优化
+ 图片预览样式
+ +评论区用户点击范围
+ 关注、粉丝页面优化
+ 关闭自动播放时播放器初始化逻辑
14 changes: 3 additions & 11 deletions lib/pages/about/index.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class _AboutPageState extends State<AboutPage> {
),
ListTile(
onTap: () => _aboutController.qqChanel(),
title: const Text('QQ频道'),
title: const Text('QQ群'),
trailing: Icon(
Icons.arrow_forward_ios,
size: 16,
Expand Down Expand Up @@ -207,17 +207,9 @@ class AboutController extends GetxController {
// qq频道
qqChanel() {
Clipboard.setData(
const ClipboardData(text: 'https://pd.qq.com/s/css9rdwga'),
);
SmartDialog.showToast(
'已复制,即将在浏览器打开',
displayTime: const Duration(milliseconds: 500),
).then(
(value) => launchUrl(
Uri.parse('https://pd.qq.com/s/css9rdwga'),
mode: LaunchMode.externalApplication,
),
const ClipboardData(text: '489981949'),
);
SmartDialog.showToast('已复制QQ群号');
}

// tg频道
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: 1.0.5
version: 1.0.6

environment:
sdk: ">=2.19.6 <3.0.0"
Expand Down

0 comments on commit e35f39e

Please sign in to comment.