From 7351bacdf190016100204dd6ff029c354fa459a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=9F=E3=81=A4=E3=81=9D=E3=82=99=E3=81=86?= Date: Tue, 14 Sep 2021 23:32:32 +0800 Subject: [PATCH] fix: parsing issue --- .github/workflows/deploy.yml | 2 +- EhPanda.xcodeproj/project.pbxproj | 5 +++-- .../MODefinition/GalleryDetailMO+CoreDataClass.swift | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8f5fc474..9449f4bd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,7 +6,7 @@ on: types: [closed] env: DEVELOPER_DIR: /Applications/Xcode_13.0.app - APP_VERSION: '1.1.1' + APP_VERSION: '1.1.2' SCHEME_NAME: 'EhPanda' ALTSTORE_JSON_PATH: './AltStore.json' FILTER_PATH: './ReleaseNotesFilter' diff --git a/EhPanda.xcodeproj/project.pbxproj b/EhPanda.xcodeproj/project.pbxproj index 86c5120b..e6d0b5da 100644 --- a/EhPanda.xcodeproj/project.pbxproj +++ b/EhPanda.xcodeproj/project.pbxproj @@ -653,8 +653,8 @@ ABC3C7502593696C00E0C11B /* Sources */, ABC3C7512593696C00E0C11B /* Frameworks */, ABC3C7522593696C00E0C11B /* Resources */, - AB69FE41263C328400716FBD /* ShellScript */, AB5BE68126B95FDD007D4A55 /* Embed App Extensions */, + AB69FE41263C328400716FBD /* SwiftLint */, ); buildRules = ( ); @@ -798,7 +798,7 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - AB69FE41263C328400716FBD /* ShellScript */ = { + AB69FE41263C328400716FBD /* SwiftLint */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -807,6 +807,7 @@ ); inputPaths = ( ); + name = SwiftLint; outputFileListPaths = ( ); outputPaths = ( diff --git a/EhPanda/Database/MODefinition/GalleryDetailMO+CoreDataClass.swift b/EhPanda/Database/MODefinition/GalleryDetailMO+CoreDataClass.swift index 221522a6..a1d57f1f 100644 --- a/EhPanda/Database/MODefinition/GalleryDetailMO+CoreDataClass.swift +++ b/EhPanda/Database/MODefinition/GalleryDetailMO+CoreDataClass.swift @@ -12,7 +12,7 @@ public class GalleryDetailMO: NSManagedObject {} extension GalleryDetailMO: ManagedObjectProtocol { func toEntity() -> GalleryDetail { GalleryDetail( - gid: gid, title: title, isFavored: isFavored, + gid: gid, title: title, jpnTitle: jpnTitle, isFavored: isFavored, visibility: visibility?.toObject() ?? GalleryVisibility.yes, rating: rating, userRating: userRating, ratingCount: Int(ratingCount), category: Category(rawValue: category).forceUnwrapped,