v1.0.6 更新
This commit is contained in:
34
change_log/1.0.6.0902.md
Normal file
34
change_log/1.0.6.0902.md
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
## 1.0.6
|
||||||
|
|
||||||
|
问题反馈、功能建议请查看「关于」页面。
|
||||||
|
|
||||||
|
### 新功能
|
||||||
|
+ 首页单列布局
|
||||||
|
+ 首页推荐展示播放量、弹幕数
|
||||||
|
+ 简单弹幕功能实现(持续开发中...)
|
||||||
|
+ 评论区搜索关键词开关 issues#46
|
||||||
|
+ 热搜榜隐藏功能 issues#35
|
||||||
|
+ 自动全屏 issues#37
|
||||||
|
+ 快速收藏功能
|
||||||
|
+ 双击快进/快退开关
|
||||||
|
+ 评论链接跳转视频
|
||||||
|
+ 支持移除单个稍后再看
|
||||||
|
+ app scheme外链跳转
|
||||||
|
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
+ 杜比、无损音频切换
|
||||||
|
+ 收藏夹展示 issues#42
|
||||||
|
+ 搜索建议次 issues#47
|
||||||
|
|
||||||
|
|
||||||
|
### 优化
|
||||||
|
+ 倍速选择优化
|
||||||
|
+ 导航条沉浸
|
||||||
|
+ 取消Hero动画
|
||||||
|
+ 视频锁定逻辑
|
||||||
|
+ 登录逻辑优化
|
||||||
|
+ 图片预览样式
|
||||||
|
+ +评论区用户点击范围
|
||||||
|
+ 关注、粉丝页面优化
|
||||||
|
+ 关闭自动播放时播放器初始化逻辑
|
||||||
@ -106,7 +106,7 @@ class _AboutPageState extends State<AboutPage> {
|
|||||||
),
|
),
|
||||||
ListTile(
|
ListTile(
|
||||||
onTap: () => _aboutController.qqChanel(),
|
onTap: () => _aboutController.qqChanel(),
|
||||||
title: const Text('QQ频道'),
|
title: const Text('QQ群'),
|
||||||
trailing: Icon(
|
trailing: Icon(
|
||||||
Icons.arrow_forward_ios,
|
Icons.arrow_forward_ios,
|
||||||
size: 16,
|
size: 16,
|
||||||
@ -207,17 +207,9 @@ class AboutController extends GetxController {
|
|||||||
// qq频道
|
// qq频道
|
||||||
qqChanel() {
|
qqChanel() {
|
||||||
Clipboard.setData(
|
Clipboard.setData(
|
||||||
const ClipboardData(text: 'https://pd.qq.com/s/css9rdwga'),
|
const ClipboardData(text: '489981949'),
|
||||||
);
|
|
||||||
SmartDialog.showToast(
|
|
||||||
'已复制,即将在浏览器打开',
|
|
||||||
displayTime: const Duration(milliseconds: 500),
|
|
||||||
).then(
|
|
||||||
(value) => launchUrl(
|
|
||||||
Uri.parse('https://pd.qq.com/s/css9rdwga'),
|
|
||||||
mode: LaunchMode.externalApplication,
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
|
SmartDialog.showToast('已复制QQ群号');
|
||||||
}
|
}
|
||||||
|
|
||||||
// tg频道
|
// tg频道
|
||||||
|
|||||||
@ -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
|
# 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
|
# 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.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 1.0.5
|
version: 1.0.6
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.19.6 <3.0.0"
|
sdk: ">=2.19.6 <3.0.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user