diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index c344912..ed6ebb6 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -9,7 +9,7 @@ env: NDK_VERSION: 25.2.9519653 FLUTTER_VERSION: '3.13.9' FLUTTER_CHANNEL: 'stable' - FRB_VERSION: 'v1.82.3' + FRB_VERSION: 'v1.82.4' jobs: diff --git a/ci/version.code.txt b/ci/version.code.txt index 254a9f2..04eddb2 100644 --- a/ci/version.code.txt +++ b/ci/version.code.txt @@ -1 +1 @@ -v0.0.6 \ No newline at end of file +v0.0.7 \ No newline at end of file diff --git a/ci/version.info.txt b/ci/version.info.txt index b4431e6..ab4c9b7 100644 --- a/ci/version.info.txt +++ b/ci/version.info.txt @@ -1,6 +1,10 @@ ## 如果图片显示不出来需要删除原来的APP重新安装 ## PC端需要手动找到文件夹删除 +v0.0.7 + +- [x] 修复收藏夹 + v0.0.6 - [x] 修复下一章按钮错误 diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist index f7b14d5..af0bc5e 100644 --- a/ios/Runner/Info.plist +++ b/ios/Runner/Info.plist @@ -32,6 +32,8 @@ Save images NSPhotoLibraryUsageDescription Usage images + UIApplicationSupportsIndirectInputEvents + UILaunchStoryboardName LaunchScreen UIMainStoryboardFile @@ -51,7 +53,7 @@ UIViewControllerBasedStatusBarAppearance - UIApplicationSupportsIndirectInputEvents - + application-identifier + opensource.kobi diff --git a/native/src/copy_client/dtos.rs b/native/src/copy_client/dtos.rs index 0605031..6852cbe 100644 --- a/native/src/copy_client/dtos.rs +++ b/native/src/copy_client/dtos.rs @@ -342,10 +342,16 @@ pub struct CollectedComic { pub name: Option, pub b_folder: bool, pub folder_id: Option, - pub last_browse: Option, + pub last_browse: Option, pub comic: CollectedComicInfo, } +#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] +pub struct LastBrowse { + pub last_browse_id: String, + pub last_browse_name: String, +} + #[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct CollectedComicInfo { pub uuid: String,