Skip to content

Commit

Permalink
feat:文件夹不展示缩略图
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekTR committed Jan 18, 2024
1 parent 2fe1a37 commit 596541a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/l10n/intl_en_us.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ const translationsEnUS = {
"downloadManagerScreen_menu_save": "Save",
"downloadManagerScreen_tips_saved": "Saved.",
"downloadManagerScreen_tips_saved_first_ios":
"The file has been saved, please open \"File APP\" and go to \"My iPhone\"\-\"ALClient\" to check.",
"The file has been saved. Please open the file manager and check in the \"Downloads\" directory.",
"downloadManagerScreen_tips_saved_first_android":
"The file has been saved, please open the file manager and go to the download directory to view it.",
"downloadManagerScreen_status_waiting": "Waiting...",
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/intl_zh_cn.dart
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const translationsZhCN = {
"downloadManagerScreen_tips_saved": "已保存",
"downloadManagerScreen_tips_saved_first_ios":
"该文件已保存,请打开\"文件APP\",到\"我的iPhone\"-\"ALClient\"查看",
"downloadManagerScreen_tips_saved_first_android": "该文件已保存,请打开文件管理器,到下载目录中查看",
"downloadManagerScreen_tips_saved_first_android": "该文件已保存,请打开文件管理器,到“下载”目录中查看",
"downloadManagerScreen_status_waiting": "等待中...",
"downloadManagerScreen_status_downloading": "下载中...",
"downloadManagerScreen_status_finish": "下载完毕",
Expand Down
2 changes: 1 addition & 1 deletion lib/screen/favorite_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ class _FavoriteScreenState extends State<FavoriteScreen>
modified: modifyTimeStr,
typeInt: resp.type,
type: resp.getFileType(),
thumb: resp.thumb,
thumb: resp.isDir ? "" : resp.thumb,
sign: resp.sign,
icon: resp.getFileIcon(),
modifiedMilliseconds: modifyTime?.millisecondsSinceEpoch ?? -1,
Expand Down
2 changes: 1 addition & 1 deletion lib/screen/file_search_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class FileSearchController extends GetxController {
modified: modifyTimeStr,
typeInt: resp.type,
type: resp.getFileType(),
thumb: resp.thumb,
thumb: resp.isDir ? "" : resp.thumb,
sign: resp.sign,
icon: resp.getFileIcon(),
modifiedMilliseconds: modifyTime?.millisecondsSinceEpoch ?? -1,
Expand Down
2 changes: 1 addition & 1 deletion lib/screen/recents_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ class _RecentsScreenState extends State<RecentsScreen>
modified: modifyTimeStr,
typeInt: resp.type,
type: resp.getFileType(),
thumb: resp.thumb,
thumb: resp.isDir ? "" : resp.thumb,
sign: resp.sign,
icon: resp.getFileIcon(),
modifiedMilliseconds: modifyTime?.millisecondsSinceEpoch ?? -1,
Expand Down

0 comments on commit 596541a

Please sign in to comment.