Merge branch 'main' into design

This commit is contained in:
guozhigq
2024-06-28 00:10:47 +08:00
4 changed files with 31 additions and 2 deletions

23
change_log/1.0.24.0626.md Normal file
View File

@ -0,0 +1,23 @@
## 1.0.24
### 功能
+ 私信功能
+ 回复我的、收到的赞查看
+ 新的登录方式
+ 全屏选集
+ 一键三连
+ 按分区搜索
### 优化
+ 页面跳转动画
+ 评论区跳转
### 修复
+ 音画不同步问题
+ 分集字幕未同步
+ 多语言字幕
+ 弹幕设置未生效
+
问题反馈、功能建议请查看「关于」页面。

View File

@ -17,7 +17,7 @@ class WhisperController extends GetxController {
}, },
{ {
'icon': Icons.alternate_email, 'icon': Icons.alternate_email,
'title': '@ 我的', 'title': '@我的',
'path': '/messageAt', 'path': '/messageAt',
'count': 0, 'count': 0,
}, },

View File

@ -1,5 +1,6 @@
import 'package:easy_debounce/easy_throttle.dart'; import 'package:easy_debounce/easy_throttle.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart';
import 'package:get/get.dart'; import 'package:get/get.dart';
import 'package:pilipala/common/constants.dart'; import 'package:pilipala/common/constants.dart';
import 'package:pilipala/common/skeleton/skeleton.dart'; import 'package:pilipala/common/skeleton/skeleton.dart';
@ -70,6 +71,11 @@ class _WhisperPageState extends State<WhisperPage> {
..._whisperController.noticesList.map((element) { ..._whisperController.noticesList.map((element) {
return InkWell( return InkWell(
onTap: () { onTap: () {
if (['/messageAt', '/messageSystem']
.contains(element['path'])) {
SmartDialog.showToast('功能开发中');
return;
}
Get.toNamed(element['path']); Get.toNamed(element['path']);
if (element['count'] > 0) { if (element['count'] > 0) {

View File

@ -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.23+1023 version: 1.0.24+1024
environment: environment:
sdk: ">=3.0.0 <4.0.0" sdk: ">=3.0.0 <4.0.0"