diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 3f3edc019..eb38af4fe 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -2,14 +2,14 @@ name: Meowbili iDevice Workflow on: push: - branches: [ "main" ] + branches: [ "main", "2024" ] paths-ignore: - '.github/workflows/*' - '!.github/workflows/ios.yml' jobs: - build: - name: Build and Archive App + prepare: + name: Prepare App Version runs-on: macos-13 permissions: contents: write @@ -56,6 +56,27 @@ jobs: branch: release-vers directory: vers + - name: Upload Proj + uses: actions/upload-artifact@v3 + with: + name: Versioned Project + path: ./ + + build: + name: Build and Archive App + runs-on: macos-13 + needs: + - prepare + steps: + - name: Download Versioned Project + uses: actions/download-artifact@v3 + with: + name: Versioned Project + path: ./ + + - name: Set Xcode Version + run: sudo xcode-select -s /Applications/Xcode_15.0.app + - name: Install the Apple certificate and provisioning profile for Xcode env: BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} @@ -100,7 +121,7 @@ jobs: path: ~/Library/Developer/Xcode/DerivedData - name: Resolve Package Dependencies - run: xcodebuild -resolvePackageDependencies -project ./DarockBili.xcodeproj -scheme DarockBili + run: xcodebuild -resolvePackageDependencies -project ./DarockBili.xcodeproj -scheme 'DarockBili Watch App' - name: Get Current Time id: current-time @@ -117,7 +138,7 @@ jobs: ASCAPI_KEY_ID: ${{ secrets.ASCAPI_KEY_ID }} ASCAPI_ISSUER_ID: ${{ secrets.ASCAPI_ISSUER_ID }} run: | - xcodebuild archive -project ./DarockBili.xcodeproj -scheme DarockBili -destination generic/platform=iOS -archivePath ./build.xcarchive -IDEPostProgressNotifications=YES CODE_SIGN_IDENTITY=- AD_HOC_CODE_SIGNING_ALLOWED=YES CODE_SIGN_STYLE=Automatic DEVELOPMENT_TEAM=B57D8PP775 COMPILER_INDEX_STORE_ENABLE=NO + xcodebuild archive -project ./DarockBili.xcodeproj -scheme 'DarockBili Watch App' -archivePath ./build.xcarchive -IDEPostProgressNotifications=YES CODE_SIGN_IDENTITY=- AD_HOC_CODE_SIGNING_ALLOWED=YES CODE_SIGN_STYLE=Automatic DEVELOPMENT_TEAM=B57D8PP775 COMPILER_INDEX_STORE_ENABLE=NO - name: Upload Xcode Archive uses: actions/upload-artifact@v3 @@ -125,66 +146,82 @@ jobs: name: Xcode Archive path: ./build.xcarchive - test: + build_comp: + name: Build Company App runs-on: macos-13 - name: Test App + needs: + - prepare steps: - - uses: actions/checkout@v3 - + - name: Download Versioned Project + uses: actions/download-artifact@v3 + with: + name: Versioned Project + path: ./ + - name: Set Xcode Version run: sudo xcode-select -s /Applications/Xcode_15.0.app - - name: Resolve Swift dependencies - run: xcodebuild -resolvePackageDependencies -scheme 'DarockBili Watch App' -configuration Release - - - name: Prepare Cache Folder - run: mkdir Caches - - - name: Build and Test - run: xcodebuild test -project ./DarockBili.xcodeproj -scheme 'DarockBili Watch App' -configuration Release -destination 'platform=watchOS Simulator,name=Apple Watch Series 7 (41mm),OS=10.0' -testPlan WatchAppUITestPlan -testProductsPath ./Caches/TestProducts.xctestproducts -derivedDataPath ./Caches/DerivedData | tee TestBuilding.log + - name: Install Apple certificate and provisioning profile for Xcode + env: + BUILD_CERTIFICATE_BASE64: ${{ secrets.COMPANY_P12 }} + P12_PASSWORD: ${{ secrets.COMPANY_P12_PASSWORD }} + BUILD_PROVISION_PROFILE_BASE64: ${{ secrets.COMPANY_PROV }} + KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} + run: | + # create variables + CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12 + PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision + KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db + # import certificate and provisioning profile from secrets + echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH + echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH + # create temporary keychain + security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + security set-keychain-settings -lut 21600 $KEYCHAIN_PATH + security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + # import certificate to keychain + security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH + security list-keychain -d user -s $KEYCHAIN_PATH + # apply provisioning profile + mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles + cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles - - name: Upload Building Log - uses: actions/upload-artifact@v3 - with: - name: Watch Testing Log - path: ./TestBuilding.log + - name: Replace Bundle ID + run: | + sed -i "" 's/com.darock.DarockBili.watchkitapp/com.djbx.life.agent.dat/g' DarockBili.xcodeproj/project.pbxproj + sed -i "" 's/com.darock.DarockBili/com.djbx.life.agent.dat/g' DarockBili.xcodeproj/project.pbxproj - - name: Upload Test Attachments - uses: actions/upload-artifact@v3 + - name: Restore Caches + uses: actions/cache/restore@v3 with: - name: Test Attachments - path: ./Caches/DerivedData/Logs/Test + key: ${{ runner.os }}-main-archive-cache- + path: ~/Library/Developer/Xcode/DerivedData - process_test_result: - runs-on: macos-13 - name: Process Test Result - needs: - - test - steps: - - name: Set Xcode Version - run: sudo xcode-select -s /Applications/Xcode_15.0.app + - name: Resolve Package Dependencies + run: xcodebuild -resolvePackageDependencies -project ./DarockBili.xcodeproj -scheme 'DarockBili Watch App' - - name: Prepare Environment - run: | - brew install chargepoint/xcparse/xcparse + - name: Get Current Time + id: current-time + run: echo "time=$(date +"%Y%m%d%H%M%S")" >> $GITHUB_OUTPUT - - name: Download Test Attachments - uses: actions/download-artifact@v3 + - name: Save Caches + uses: actions/cache/save@v3 with: - name: Test Attachments - path: ./ - - - name: Process + key: ${{ runner.os }}-main-archive-cache-${{ steps.current-time.outputs.time }} + path: ~/Library/Developer/Xcode/DerivedData + + - name: Archive DarockBili App + env: + COMPANY_PROV_UUID: ${{ secrets.COMPANY_PROV_UUID }} + COMPANY_P12_NAME: ${{ secrets.COMPANY_P12_NAME }} run: | - mv ./Test-*.xcresult ./Test-1.xcresult - mkdir ExportFiles - xcparse -s ./Test-1.xcresult ./ExportFiles + xcodebuild archive -project ./DarockBili.xcodeproj -scheme 'DarockBili Watch App' -archivePath ./build.xcarchive -IDEPostProgressNotifications=YES CODE_SIGN_IDENTITY=- AD_HOC_CODE_SIGNING_ALLOWED=YES CODE_SIGN_STYLE=Automatic DEVELOPMENT_TEAM=H5SM6ZV38F COMPILER_INDEX_STORE_ENABLE=NO - - name: Upload Parsed Test Attachments + - name: Upload Xcode Archive uses: actions/upload-artifact@v3 with: - name: Parsed Test Attachments - path: ./ExportFiles + name: Company Xcode Archive + path: ./build.xcarchive export: name: Export App Store IPA @@ -279,26 +316,79 @@ jobs: name: Unsigned IPA path: ./DarockBili_Unsigned.ipa -# deploy: -# name: Deploy to TestFlight -# runs-on: macos-13 -# needs: -# - export -# - test -# env: -# ASCAPI_ISSUER_ID: ${{ secrets.ASCAPI_ISSUER_ID }} -# ASCAPI_KEY_ID: ${{ secrets.ASCAPI_KEY_ID }} -# ASCAPI_KEY: ${{ secrets.ASCAPI_KEY }} -# steps: -# - name: Download App Archive -# uses: actions/download-artifact@v3 -# with: -# name: Release IPA -# -# - name: Prepare API Key -# run: | -# mkdir ~/.private_keys -# echo "$ASCAPI_KEY" >> ~/.private_keys/AuthKey_${ASCAPI_KEY_ID}.p8 -# - name: Upload to App Store Connect -# run: xcrun altool --upload-app -f ./DarockBili_Release.ipa -t ios --apiKey $ASCAPI_KEY_ID --apiIssuer $ASCAPI_ISSUER_ID + export_comp: + name: Export Company IPA + runs-on: macos-13 + needs: + - build_comp + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Set Xcode Version + run: sudo xcode-select -s /Applications/Xcode_15.0.app + + - name: Download App XCArchive + uses: actions/download-artifact@v3 + with: + name: Company Xcode Archive + path: ./DarockBili_Release.xcarchive + + - name: Install Company Cer and Prov + env: + BUILD_CERTIFICATE_BASE64: ${{ secrets.COMPANY_P12 }} + P12_PASSWORD: ${{ secrets.COMPANY_P12_PASSWORD }} + BUILD_PROVISION_PROFILE_BASE64: ${{ secrets.COMPANY_PROV }} + KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} + run: | + # create variables + CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12 + PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision + KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db + # import certificate and provisioning profile from secrets + echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH + echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH + # create temporary keychain + security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + security set-keychain-settings -lut 21600 $KEYCHAIN_PATH + security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH + # import certificate to keychain + security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH + security list-keychain -d user -s $KEYCHAIN_PATH + # apply provisioning profile + mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles + cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles + + - name: Export IPA File + run: | + xcodebuild -exportArchive -archivePath ./DarockBili_Release.xcarchive -exportPath ./ -exportOptionsPlist ./ExportOptions/ad-hoc.plist -DVTProvisioningIsManaged=YES -DVTSkipCertificateValidityCheck=YES + mv '喵哩喵哩.ipa' DarockBili_Company.ipa + + - name: Upload IPA File + uses: actions/upload-artifact@v3 + with: + name: Company IPA + path: ./DarockBili_Company.ipa + + deploy: + name: Deploy to TestFlight + runs-on: macos-13 + needs: + - export + env: + ASCAPI_ISSUER_ID: ${{ secrets.ASCAPI_ISSUER_ID }} + ASCAPI_KEY_ID: ${{ secrets.ASCAPI_KEY_ID }} + ASCAPI_KEY: ${{ secrets.ASCAPI_KEY }} + steps: + - name: Download App Archive + uses: actions/download-artifact@v3 + with: + name: Release IPA + + - name: Prepare API Key + run: | + mkdir ~/.private_keys + echo "$ASCAPI_KEY" >> ~/.private_keys/AuthKey_${ASCAPI_KEY_ID}.p8 + - name: Upload to App Store Connect + run: xcrun altool --upload-app -f ./DarockBili_Release.ipa -t ios --apiKey $ASCAPI_KEY_ID --apiIssuer $ASCAPI_ISSUER_ID diff --git a/DarockBili Watch App UI Tests/DarockBili_Watch_App_UI_Tests.swift b/DarockBili Watch App UI Tests/DarockBili_Watch_App_UI_Tests.swift deleted file mode 100644 index 5c06da63d..000000000 --- a/DarockBili Watch App UI Tests/DarockBili_Watch_App_UI_Tests.swift +++ /dev/null @@ -1,128 +0,0 @@ -// -// DarockBili_Watch_App_UI_Tests.swift -// DarockBili Watch App UI Tests -// -// Created by WindowsMEMZ on 2023/7/27. -// -//===----------------------------------------------------------------------===// -// -// This source file is part of the MeowBili open source project -// -// Copyright (c) 2023 Darock Studio and the MeowBili project authors -// Licensed under GNU General Public License v3 -// -// See https://darock.top/LICENSE.txt for license information -// -//===----------------------------------------------------------------------===// - -import XCTest - -final class DarockBili_Watch_App_UI_Tests: XCTestCase { - - override func setUpWithError() throws { - // Put setup code here. This method is called before the invocation of each test method in the class. - - // In UI tests it is usually best to stop immediately when a failure occurs. - continueAfterFailure = false - - // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. - } - - override func tearDownWithError() throws { - // Put teardown code here. This method is called after the invocation of each test method in the class. - } - - func testAppMain() throws { - // UI tests must launch the application that they test. - let app = XCUIApplication() - app.launch() - sleep(2) - // In Terms Page - takeScreenshot(of: app, named: "Launch") - app.buttons["关闭"].firstMatch.tap() - sleep(1) - // In main tabview first page (suggestions) - takeScreenshot(of: app, named: "Suggestions") - app.buttons["SuggestVideo"].firstMatch.tap() - sleep(1) - takeScreenshot(of: app, named: "RMVideo") - app.swipeUp() - sleep(1) - takeScreenshot(of: app, named: "RMVideoP2") - app.buttons["AuthorDetailButton"].firstMatch.tap() - sleep(1) - takeScreenshot(of: app, named: "RMVideoAuthor") - app.swipeLeft() - sleep(1) - takeScreenshot(of: app, named: "RMVideoAuthorVideos") - sleep(5) - takeScreenshot(of: app, named: "RMVideoAuthorVideos-Waited") - app.navigationBars.buttons.element(boundBy: 0).tap() - sleep(1) - app.swipeLeft() - sleep(5) - takeScreenshot(of: app, named: "RMVideoComments") - app.navigationBars.buttons.element(boundBy: 0).tap() - sleep(1) - // Backed to suggestions view - app.navigationBars.buttons["SearchButton"].firstMatch.tap() - sleep(1) - if app.buttons["SearchDebugButton"].exists { - app.buttons["SearchDebugButton"].tap() - sleep(5) - takeScreenshot(of: app, named: "DebugSearch") - print(app.debugDescription) - app.buttons["关闭"].firstMatch.tap() - sleep(1) - } - app.buttons["关闭"].firstMatch.tap() - sleep(1) - // Backed to suggestions view - if app.buttons["Debug"].exists { - app.buttons["Debug"].firstMatch.tap() - sleep(1) - takeScreenshot(of: app, named: "MainDebugged") - } - app.otherElements["MainTabView"].swipeLeft() - sleep(1) - takeScreenshot(of: app, named: "PersonalCenter") - app.buttons["AppSettingsButton"].firstMatch.tap() - sleep(1) - takeScreenshot(of: app, named: "SettingsMain") - app.buttons["通用"].firstMatch.tap() - app.buttons["关于"].firstMatch.tap() - app.swipeUp() - sleep(1) - takeScreenshot(of: app, named: "AboutView") - } - - func testLaunchPerformance() throws { - if #available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 7.0, *) { - measure(metrics: [XCTApplicationLaunchMetric()]) { - XCUIApplication().launch() - } - } - } -} - -var screenshotCount = 1 - -extension XCTestCase { - /// Take a screenshot of a given app and add it to the test attachements. - /// - Parameters: - /// - app: The app to take a screenshot of. - /// - name: The name of the screenshot. - func takeScreenshot(of app: XCUIApplication, named name: String) { - let screenshot = app.windows.firstMatch.screenshot() - let attachment = XCTAttachment(screenshot: screenshot) - #if os(iOS) - let name = "Screenshot-\(screenshotCount)-\(name)-\(UIDevice.current.name).png" - #else - let name = "Screenshot-\(screenshotCount)-\(name)-watchOS.png" - #endif - attachment.name = name - attachment.lifetime = .keepAlways - add(attachment) - screenshotCount += 1 - } -} diff --git a/DarockBili Watch App UI Tests/DarockBili_Watch_App_UI_TestsLaunchTests.swift b/DarockBili Watch App UI Tests/DarockBili_Watch_App_UI_TestsLaunchTests.swift deleted file mode 100644 index 28d14e953..000000000 --- a/DarockBili Watch App UI Tests/DarockBili_Watch_App_UI_TestsLaunchTests.swift +++ /dev/null @@ -1,32 +0,0 @@ -// -// DarockBili_Watch_App_UI_TestsLaunchTests.swift -// DarockBili Watch App UI Tests -// -// Created by WindowsMEMZ on 2023/7/27. -// - -import XCTest - -final class DarockBili_Watch_App_UI_TestsLaunchTests: XCTestCase { - - override class var runsForEachTargetApplicationUIConfiguration: Bool { - true - } - - override func setUpWithError() throws { - continueAfterFailure = false - } - - func testLaunch() throws { - let app = XCUIApplication() - app.launch() - - // Insert steps here to perform after app launch but before taking a screenshot, - // such as logging into a test account or navigating somewhere in the app - - let attachment = XCTAttachment(screenshot: app.screenshot()) - attachment.name = "Launch Screen" - attachment.lifetime = .keepAlways - add(attachment) - } -} diff --git a/DarockBili Watch App UI Tests/WatchAppUITestPlan.xctestplan b/DarockBili Watch App UI Tests/WatchAppUITestPlan.xctestplan deleted file mode 100644 index a92602eeb..000000000 --- a/DarockBili Watch App UI Tests/WatchAppUITestPlan.xctestplan +++ /dev/null @@ -1,24 +0,0 @@ -{ - "configurations" : [ - { - "id" : "D07F2214-DD84-4367-91E2-739AD4D49938", - "name" : "Configuration 1", - "options" : { - - } - } - ], - "defaultOptions" : { - "testTimeoutsEnabled" : true - }, - "testTargets" : [ - { - "target" : { - "containerPath" : "container:DarockBili.xcodeproj", - "identifier" : "6BA20BD12A7185D300AAD0C7", - "name" : "DarockBili Watch App UI Tests" - } - } - ], - "version" : 1 -} diff --git a/DarockBili Watch App Unit Tests/DarockBili_Watch_App_Unit_Tests.swift b/DarockBili Watch App Unit Tests/DarockBili_Watch_App_Unit_Tests.swift deleted file mode 100644 index 68e7051d1..000000000 --- a/DarockBili Watch App Unit Tests/DarockBili_Watch_App_Unit_Tests.swift +++ /dev/null @@ -1,38 +0,0 @@ -// -// DarockBili_Watch_App_Unit_Tests.swift -// DarockBili Watch App Unit Tests -// -// Created by WindowsMEMZ on 2023/7/27. -// - -import XCTest -import DarockKit - -final class DarockBili_Watch_App_Unit_Tests: XCTestCase { - - override func setUpWithError() throws { - // Put setup code here. This method is called before the invocation of each test method in the class. - } - - override func tearDownWithError() throws { - // Put teardown code here. This method is called after the invocation of each test method in the class. - } - - func testDarockApiBase() throws { - DarockKit.Network.shared.requestString("https://api.darock.top") { respStr, isSuccess in - if isSuccess { - XCTAssert(respStr == "\"OK\"", "Darock API 返回错误") - } else { - XCTAssert(false, "无法连接到 Darock API") - } - } - } - -// func testPerformanceExample() throws { -// // This is an example of a performance test case. -// measure { -// // Put the code you want to measure the time of here. -// } -// } - -} diff --git a/DarockBili Watch App Unit Tests/WatchAppUnitTestPlan.xctestplan b/DarockBili Watch App Unit Tests/WatchAppUnitTestPlan.xctestplan deleted file mode 100644 index 492f96d78..000000000 --- a/DarockBili Watch App Unit Tests/WatchAppUnitTestPlan.xctestplan +++ /dev/null @@ -1,24 +0,0 @@ -{ - "configurations" : [ - { - "id" : "D07F2214-DD84-4367-91E2-739AD4D49938", - "name" : "Configuration 1", - "options" : { - - } - } - ], - "defaultOptions" : { - "testTimeoutsEnabled" : true - }, - "testTargets" : [ - { - "target" : { - "containerPath" : "container:DarockBili.xcodeproj", - "identifier" : "6BA20BC42A7185B100AAD0C7", - "name" : "DarockBili Watch App Unit Tests" - } - } - ], - "version" : 1 -} diff --git a/DarockBili Watch App/Bangumi/BangumiCommentsView.swift b/DarockBili Watch App/Bangumi/BangumiCommentsView.swift new file mode 100644 index 000000000..9321042ac --- /dev/null +++ b/DarockBili Watch App/Bangumi/BangumiCommentsView.swift @@ -0,0 +1,18 @@ +// +// BangumiCommentsView.swift +// DarockBili Watch App +// +// Created by 雷美淳 on 2024/1/13. +// + +import SwiftUI + +struct BangumiCommentsView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + BangumiCommentsView() +} diff --git a/DarockBili Watch App/Bangumi/BangumiDetailView.swift b/DarockBili Watch App/Bangumi/BangumiDetailView.swift new file mode 100644 index 000000000..cd9a71f5f --- /dev/null +++ b/DarockBili Watch App/Bangumi/BangumiDetailView.swift @@ -0,0 +1,18 @@ +// +// BangumiDetailView.swift +// DarockBili Watch App +// +// Created by 雷美淳 on 2024/1/13. +// + +import SwiftUI + +struct BangumiDetailView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + BangumiDetailView() +} diff --git a/DarockBili Watch App/Bangumi/BangumiDownloadView.swift b/DarockBili Watch App/Bangumi/BangumiDownloadView.swift new file mode 100644 index 000000000..6d98038e3 --- /dev/null +++ b/DarockBili Watch App/Bangumi/BangumiDownloadView.swift @@ -0,0 +1,18 @@ +// +// BangumiDownloadView.swift +// DarockBili Watch App +// +// Created by 雷美淳 on 2024/1/13. +// + +import SwiftUI + +struct BangumiDownloadView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + BangumiDownloadView() +} diff --git a/DarockBili Watch App/Bangumi/BangumiPlayerView.swift b/DarockBili Watch App/Bangumi/BangumiPlayerView.swift new file mode 100644 index 000000000..3aacbfecc --- /dev/null +++ b/DarockBili Watch App/Bangumi/BangumiPlayerView.swift @@ -0,0 +1,18 @@ +// +// BangumiPlayerView.swift +// DarockBili Watch App +// +// Created by 雷美淳 on 2024/1/13. +// + +import SwiftUI + +struct BangumiPlayerView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + BangumiPlayerView() +} diff --git a/DarockBili Watch App/Errors/NetworkFixView.swift b/DarockBili Watch App/Errors/NetworkFixView.swift index 52914bcee..4009eb58e 100644 --- a/DarockBili Watch App/Errors/NetworkFixView.swift +++ b/DarockBili Watch App/Errors/NetworkFixView.swift @@ -36,8 +36,8 @@ struct NetworkFixView: View { var body: some View { NavigationStack { List { - Section { - Text("如果无法正常访问网络,请尝试在设置中关闭 iPhone 的 WiFi 和蓝牙开关") + Section("注意") { + Text("使用本app,您需要将iPhone关机。\n(在iPhone关机后)\n打开Apple Watch的设置,打开并连接Wi-Fi或者蜂窝。") } Section { if !isTroubleshooting { diff --git a/DarockBili Watch App/Extension/UIExt.swift b/DarockBili Watch App/Extension/UIExt.swift index de291e5a1..a46bbb1c8 100644 --- a/DarockBili Watch App/Extension/UIExt.swift +++ b/DarockBili Watch App/Extension/UIExt.swift @@ -25,22 +25,30 @@ import SDWebImageSwiftUI NavigationLink(destination: {VideoDetailView(videoDetails: videoDetails)}, label: { VStack { HStack { - WebImage(url: URL(string: videoDetails["Pic"]! + "@100w")!, options: [.progressiveLoad, .scaleDownLargeImages]) - .placeholder { - RoundedRectangle(cornerRadius: 7) - .frame(width: 50, height: 30) - .foregroundColor(Color(hex: 0x3D3D3D)) - .redacted(reason: .placeholder) - } - .resizable() - .scaledToFit() - .frame(width: 50) - .cornerRadius(7) + if let iamge = videoDetails["Pic"],let imageURL = URL(string: iamge + "@100w") { + WebImage(url: imageURL, options: [.progressiveLoad, .scaleDownLargeImages]) + .onFailure(perform: { err in + Image(systemName: "photo.fill") + }) + .placeholder { + RoundedRectangle(cornerRadius: 7) + .frame(width: 50, height: 30) + .foregroundColor(Color(hex: 0x3D3D3D)) + .redacted(reason: .placeholder) + } + .resizable() + .scaledToFit() + .frame(width: 50) + .cornerRadius(7) + } else { + Image(systemName: "photo.badge.arrow.down") + } Text(videoDetails["Title"]!) .font(.system(size: 14, weight: .bold)) .lineLimit(2) Spacer() } + .animation(.smooth) HStack { Image(systemName: "play.circle") Text(videoDetails["View"]!.shorter()) diff --git a/DarockBili Watch App/InMain/ContentView.swift b/DarockBili Watch App/InMain/ContentView.swift index c7651657c..3f479ae1f 100644 --- a/DarockBili Watch App/InMain/ContentView.swift +++ b/DarockBili Watch App/InMain/ContentView.swift @@ -69,25 +69,18 @@ struct TermsListView: View { @AppStorage("IsReadTerms") var isReadTerms = false var body: some View { ScrollView { - VStack { - Text(""" - 在使用本 App 前,您需要先知晓以下信息: - · 本 App 由第三方开发者以及部分社区用户贡献,与哔哩哔哩无合作关系,哔哩哔哩是上海宽娱数码科技有限公司的商标。 - · 本 App 并不是哔哩哔哩的替代品,我们建议您在能够使用官方客户端时尽量使用官方客户端。 - · 本 App 均使用来源于网络的公开信息进行开发。 - · 本 App 中和B站相关的功能完全免费 - · 本 App 中所呈现的B站内容来自哔哩哔哩官方。 - · 本 App 的开发者、负责人和实际责任人是\(Text("WindowsMEMZ").foregroundColor(Color.accentColor))\n 联系QQ:3245146430 - """) - Button(action: { - isReadTerms = true - dismiss() - }, label: { - Text("我已了解") - }) - .buttonStyle(.borderedProminent) - } - .scenePadding(.horizontal) + Text(""" + 在使用本 App 前,您需要先知晓以下信息: + · 本 App 由第三方开发者以及部分社区用户贡献,与哔哩哔哩无合作关系。 + · 本 App 并不是哔哩哔哩的替代品,我们建议您在能够使用官方客户端时尽量使用官方客户端。 + · 本 App 均使用来源于网络的公开信息进行开发。 + """) + Button(action: { + isReadTerms = true + dismiss() + }, label: { + Text("我已了解") + }) } } } diff --git a/DarockBili Watch App/InMain/MainView.swift b/DarockBili Watch App/InMain/MainView.swift index 42d6e7c77..ea47276b3 100644 --- a/DarockBili Watch App/InMain/MainView.swift +++ b/DarockBili Watch App/InMain/MainView.swift @@ -63,117 +63,119 @@ struct MainView: View { @State var isLoadingNew = false @State var isFailedToLoad = false var body: some View { - Group { - List { - Section { - if debug { - Text("Debug Version. DO NOT Release!!") - .bold() - Button(action: { - tipWithText("Test") -// Dynamic.PUICApplication.sharedPUICApplication._setStatusBarTimeHidden(true, animated: false, completion: nil) - //Dynamic.WatchKit.sharedPUICApplication._setStatusBarTimeHidden(true, animated: false) - }, label: { - Text("Debug") - }) - } - if notice != "" { - NavigationLink(destination: {NoticeView()}, label: { - Text(notice) + VStack { + Group { + List { + Section { + if debug { + Text("Debug Version. DO NOT Release!!") .bold() - }) - } - if newMajorVer != "" && newBuildVer != "" { - let nowMajorVer = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as! String - let nowBuildVer = Bundle.main.infoDictionary?["CFBundleVersion"] as! String - if (nowMajorVer < newMajorVer || nowBuildVer < newBuildVer) && updateTipIgnoreVersion != "\(newMajorVer)\(newBuildVer)" { - VStack { - Text("喵哩喵哩新版本(v\(newMajorVer) Build \(newBuildVer))已发布!现可更新") - if isShowDisableNewVerTip { - Text("再次轻触以在下次更新前禁用此提示") - .font(.system(size: 12)) - .foregroundColor(.gray) + Button(action: { + tipWithText("Test") + // Dynamic.PUICApplication.sharedPUICApplication._setStatusBarTimeHidden(true, animated: false, completion: nil) + //Dynamic.WatchKit.sharedPUICApplication._setStatusBarTimeHidden(true, animated: false) + }, label: { + Text("Debug") + }) + } + if notice != "" { + NavigationLink(destination: {NoticeView()}, label: { + Text(notice) + .bold() + }) + } + if newMajorVer != "" && newBuildVer != "" { + let nowMajorVer = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as! String + let nowBuildVer = Bundle.main.infoDictionary?["CFBundleVersion"] as! String + if (nowMajorVer < newMajorVer || nowBuildVer < newBuildVer) && updateTipIgnoreVersion != "\(newMajorVer)\(newBuildVer)" { + VStack { + Text("喵哩喵哩新版本(v\(newMajorVer) Build \(newBuildVer))已发布!现可更新") + if isShowDisableNewVerTip { + Text("再次轻触以在下次更新前禁用此提示") + .font(.system(size: 12)) + .foregroundColor(.gray) + } } - } - .onTapGesture { - if isShowDisableNewVerTip { - updateTipIgnoreVersion = "\(newMajorVer)\(newBuildVer)" - } else { - isShowDisableNewVerTip = true + .onTapGesture { + if isShowDisableNewVerTip { + updateTipIgnoreVersion = "\(newMajorVer)\(newBuildVer)" + } else { + isShowDisableNewVerTip = true + } } } } } - } - if isShowSearchButton { - Section { - Button(action: { - isSearchPresented = true - }, label: { - HStack { - Image(systemName: "magnifyingglass") - Text("搜索...") - } - .foregroundColor(.gray) - }) - .sheet(isPresented: $isSearchPresented, content: {SearchMainView()}) + if isShowSearchButton { + Section { + Button(action: { + isSearchPresented = true + }, label: { + HStack { + Image(systemName: "magnifyingglass") + Text("搜索...") + } + .foregroundColor(.gray) + }) + .sheet(isPresented: $isSearchPresented, content: {SearchMainView()}) + } } - } - if videos.count != 0 { - Section { - autoreleasepool { - ForEach(0...videos.count - 1, id: \.self) { i in - VideoCard(videos[i]) - .accessibility(identifier: "SuggestVideo") + if videos.count != 0 { + Section { + autoreleasepool { + ForEach(0...videos.count - 1, id: \.self) { i in + VideoCard(videos[i]) + .accessibility(identifier: "SuggestVideo") + } } } - } - Section { - Button(action: { - LoadNewVideos() - }, label: { - if !isFailedToLoad { - if !isLoadingNew { - Text("加载更多") - .bold() + Section { + Button(action: { + LoadNewVideos() + }, label: { + if !isFailedToLoad { + if !isLoadingNew { + Text("加载更多") + .bold() + } else { + ProgressView() + } } else { - ProgressView() + Label("加载失败 轻触重试", systemImage: "xmark") } - } else { - Label("加载失败 轻触重试", systemImage: "xmark") - } - }) - } - } else if isFailedToLoad { - Button { - LoadNewVideos() - } label: { - Label("加载失败,点击重试", systemImage: "wifi.exclamationmark") + }) + } + } else if isFailedToLoad { + Button { + LoadNewVideos() + } label: { + Label("加载失败,点击重试", systemImage: "wifi.exclamationmark") + } + } else { + ProgressView() } - } else { - ProgressView() } } - } - .navigationTitle("推荐") - .onAppear { - if !isFirstLoaded { - LoadNewVideos() - isFirstLoaded = true - } - DarockKit.Network.shared.requestString("https://api.darock.top/bili/notice") { respStr, isSuccess in - if isSuccess { - notice = respStr.apiFixed() + .navigationTitle("推荐") + .onAppear { + if !isFirstLoaded { + LoadNewVideos() + isFirstLoaded = true } - } - DarockKit.Network.shared.requestString("https://api.darock.top/bili/newver") { respStr, isSuccess in - if isSuccess && respStr.apiFixed().contains("|") { - newMajorVer = String(respStr.apiFixed().split(separator: "|")[0]) - newBuildVer = String(respStr.apiFixed().split(separator: "|")[1]) + DarockKit.Network.shared.requestString("https://api.darock.top/bili/notice") { respStr, isSuccess in + if isSuccess { + notice = respStr.apiFixed() + } + } + DarockKit.Network.shared.requestString("https://api.darock.top/bili/newver") { respStr, isSuccess in + if isSuccess && respStr.apiFixed().contains("|") { + newMajorVer = String(respStr.apiFixed().split(separator: "|")[0]) + newBuildVer = String(respStr.apiFixed().split(separator: "|")[1]) + } } } + .sheet(isPresented: $isNetworkFixPresented, content: {NetworkFixView()}) } - .sheet(isPresented: $isNetworkFixPresented, content: {NetworkFixView()}) } func LoadNewVideos(clearWhenFinish: Bool = false) { diff --git a/DarockBili Watch App/Live/LiveDetailView.swift b/DarockBili Watch App/Live/LiveDetailView.swift new file mode 100644 index 000000000..9ff781e24 --- /dev/null +++ b/DarockBili Watch App/Live/LiveDetailView.swift @@ -0,0 +1,18 @@ +// +// LiveDetailView.swift +// DarockBili Watch App +// +// Created by 雷美淳 on 2024/1/13. +// + +import SwiftUI + +struct LiveDetailView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + LiveDetailView() +} diff --git a/DarockBili Watch App/Localizable.xcstrings b/DarockBili Watch App/Localizable.xcstrings index 376d36f1d..45877c0af 100644 --- a/DarockBili Watch App/Localizable.xcstrings +++ b/DarockBili Watch App/Localizable.xcstrings @@ -10,6 +10,12 @@ } } } + }, + " / %lld" : { + + }, + "-- And You --" : { + }, "--- Alamofire ---\nLicensed under MIT license\n-----------------\n\n--- Dynamic ---\nLicensed under Apache License 2.0\n---------------\n\n--- EFQRCode ---\nLicensed under MIT license\n----------------\n\n--- libwebp ---\nLicensed under BSD-3-Clause license\n---------------\n\n--- SDWebImage ---\nLicensed under MIT license\n------------------\n\n--- SDWebImagePDFCoder ---\nLicensed under MIT license\n--------------------------\n\n--- SDWebImageSVGCoder ---\nLicensed under MIT license\n--------------------------\n\n--- SDWebImageSwiftUI ---\nLicensed under MIT license\n-------------------------\n\n--- SDWebImageWebPCoder ---\nLicensed under MIT license\n---------------------------\n\n--- SFSymbol ---\nLicensed under MIT license\n----------------\n\n--- swift_qrcodejs ---\nLicensed under MIT license\n----------------------\n\n--- SwiftyJSON ---\nLicensed under MIT license\n------------------" : { @@ -30,6 +36,9 @@ } } } + }, + "“喵哩喵哩”" : { + }, "#%lld" : { "extractionState" : "stale", @@ -41,6 +50,9 @@ } } } + }, + "%@" : { + }, "%@\n%@" : { "localizations" : { @@ -111,6 +123,16 @@ } } }, + "%@MB / %@MB" : { + "localizations" : { + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%1$@MB / %2$@MB" + } + } + } + }, "%lld / %lld" : { "localizations" : { "en" : { @@ -146,6 +168,12 @@ } } } + }, + "%lld%%" : { + + }, + "%lld分钟" : { + }, "114" : { @@ -161,7 +189,25 @@ } } }, - "App 行为" : { + "Apple Watch 目前无法连接到互联网" : { + + }, + "Bilibili API 无法访问" : { + + }, + "Bilibili API 问题" : { + + }, + "Bilibili API:" : { + + }, + "Bilibili API:不可用" : { + + }, + "Bilibili API:可用" : { + + }, + "Bilibili API:正在检查" : { }, "bilibili UP主认证:%@" : { @@ -177,8 +223,12 @@ }, "Close Debug Controls" : { + }, + "Credits" : { + }, "Credits:" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -187,6 +237,33 @@ } } } + }, + "Darock API" : { + + }, + "Darock API 响应无效" : { + + }, + "Darock API 无法访问" : { + + }, + "Darock API 服务器目前出现了问题" : { + + }, + "Darock API 问题" : { + + }, + "Darock API:不可用" : { + + }, + "Darock API:可用" : { + + }, + "Darock API:无效响应" : { + + }, + "Darock API:正在检查" : { + }, "Darock Studio" : { "localizations" : { @@ -211,6 +288,9 @@ }, "Debug" : { + }, + "Debug Search" : { + }, "Debug Version. DO NOT Release!!" : { @@ -235,11 +315,24 @@ } } } + }, + "Lightning-Lion" : { + + }, + "Linecom" : { + + }, + "LongUIDUserTest" : { + }, "Memory Usage: %f MB" : { + }, + "name" : { + }, "ReX" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -251,19 +344,21 @@ }, "Show Debug Controls" : { + }, + "ThreeManager785" : { + + }, + "time" : { + }, "UP 主认证" : { }, - "Watch 的状态栏(控制中心上方)显示为%@而不是%@" : { - "localizations" : { - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "Watch 的状态栏(控制中心上方)显示为%1$@而不是%2$@" - } - } - } + "WindowsMEMZ" : { + + }, + "一切正常" : { + }, "上一页" : { "localizations" : { @@ -284,6 +379,9 @@ } } } + }, + "下载视频" : { + }, "下面是错误详情:" : { @@ -303,12 +401,6 @@ }, "不想登录?直接反馈 ->" : { - }, - "不推荐,可能导致页面上字符难以辨别" : { - - }, - "不模糊背景装扮" : { - }, "专栏" : { "extractionState" : "stale", @@ -333,6 +425,9 @@ } } } + }, + "互点两下播放/暂停视频" : { + }, "人机验证已完成" : { "localizations" : { @@ -343,15 +438,45 @@ } } } + }, + "仍有问题?" : { + }, "以下为错误详情:" : { + }, + "以太网" : { + + }, + "以太网:在线" : { + + }, + "以太网:正在检查" : { + + }, + "以太网:离线" : { + }, "以音频播放" : { + }, + "似乎在搜索时遇到了一些问题,以下是详细信息" : { + }, "位置:%@" : { + }, + "低电量模式" : { + + }, + "你好,欢迎使用我的app。" : { + + }, + "使用本app,您需要将iPhone关机。\n(在iPhone关机后)\n打开Apple Watch的设置,打开并连接Wi-Fi或者蜂窝。" : { + + }, + "使用本app,您需要将iPhone关机。(在iPhone关机后)打开Apple Watch的设置,打开并连接Wi-Fi或者蜂窝" : { + }, "关于" : { "localizations" : { @@ -388,6 +513,7 @@ }, "关闭 iPhone 的 Wi-Fi 以及蓝牙" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -399,9 +525,15 @@ }, "内存占用: %@ MB / 300 MB" : { + }, + "再次轻触以在下次更新前禁用此提示" : { + }, "出现问题!" : { + }, + "加载失败 轻触重试" : { + }, "加载失败,点击重试" : { "extractionState" : "manual", @@ -448,6 +580,7 @@ } }, "反馈成功!后续可使用反馈 ID:%@ 跟进情况" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -458,6 +591,7 @@ } }, "反馈类型" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -518,6 +652,7 @@ } }, "发送的反馈中不含任何您的个人信息" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -604,9 +739,18 @@ }, "国际冠字码" : { + }, + "在使用本 App 前,您需要先知晓以下信息:\n· 本 App 由第三方开发者以及部分社区用户贡献,与哔哩哔哩无合作关系。\n· 本 App 并不是哔哩哔哩的替代品,我们建议您在能够使用官方客户端时尽量使用官方客户端。\n· 本 App 均使用来源于网络的公开信息进行开发。" : { + }, "在右上角显示占用(仅本次启动)" : { + }, + "在手机上继续" : { + + }, + "在视频播放器使用互点两下手势(Apple Watch Series 9 及以上)或快速操作(其他机型)暂停或播放视频" : { + }, "基本操作:" : { "localizations" : { @@ -632,6 +776,7 @@ } }, "密码提示:纯数字" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -650,6 +795,9 @@ } } } + }, + "屏幕使用时间" : { + }, "已发送" : { @@ -665,6 +813,7 @@ } }, "建议" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -673,6 +822,9 @@ } } } + }, + "开始使用" : { + }, "开始播放时" : { @@ -703,21 +855,9 @@ } } } - }, - "怎么做?" : { - }, "您可以将此信息发送至 Darock 以帮助我们改进喵哩喵哩" : { - }, - "您应当确认:" : { - - }, - "您有一份惊喜礼包可领取!" : { - - }, - "您的 App 版本将会一并被发送" : { - }, "感谢您的支持!" : { "localizations" : { @@ -728,6 +868,12 @@ } } } + }, + "我已了解" : { + + }, + "我应当怎么做?" : { + }, "我的" : { @@ -755,10 +901,10 @@ } } }, - "手机号" : { + "手势" : { }, - "手机扫码领取" : { + "手机号" : { }, "扫码登录" : { @@ -770,6 +916,9 @@ } } } + }, + "找到了以下问题:" : { + }, "投币" : { "localizations" : { @@ -784,7 +933,7 @@ "推荐" : { }, - "描述发生问题前做了什么?预期的结果?实际的结果?" : { + "提交反馈" : { }, "搜索" : { @@ -817,10 +966,13 @@ "无反馈" : { }, - "时间:%@" : { + "无法连接到网络" : { + + }, + "日均" : { }, - "是...边缘的风景。" : { + "时间:%@" : { }, "暗礁反馈" : { @@ -836,6 +988,18 @@ }, "更多" : { + }, + "本app是非官方的B站客户端,哔哩哔哩是上海宽娱数码科技有限公司的商标。本app强烈建议您登录账号,以便B站官方可以正常收获网络流量,并且鼓励您尽可能使用官方app。本app中和B站相关的功能完全免费,请您再次确认本app与B站官方没有任何合作关系,认可并且尊重本app中所呈现的B站内容来自哔哩哔哩官方。" : { + + }, + "本app的名字叫%@" : { + + }, + "本app的开发者、负责人和实际责任人是%@\n联系QQ:3245146430" : { + + }, + "本旋转功能目前还不完善" : { + }, "来自 %@ 的消息:欢迎加群 248036605 获取最新消息谢谢喵!" : { "localizations" : { @@ -848,6 +1012,7 @@ } }, "来自ReX的消息:界面与交互设计来自 腕上生花 - ReX Design(wear.rexwe.net)" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -864,6 +1029,7 @@ }, "标题" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -882,6 +1048,9 @@ } } } + }, + "检查网络或稍后重试" : { + }, "欢迎使用腕上哔哩!" : { "localizations" : { @@ -892,9 +1061,6 @@ } } } - }, - "正在%@" : { - }, "正在下载..." : { "localizations" : { @@ -908,6 +1074,9 @@ }, "正在发送..." : { + }, + "正在检查..." : { + }, "正在解压..." : { @@ -940,9 +1109,15 @@ }, "注册 Darock 通行证" : { + }, + "注意" : { + }, "注意!" : { + }, + "添加到收藏夹" : { + }, "添加到稍后再看" : { @@ -963,10 +1138,7 @@ "热门" : { }, - "疑难解答找到的问题:" : { - - }, - "疑难解答无法确定问题" : { + "电池" : { }, "登录" : { @@ -981,6 +1153,12 @@ }, "登录 Darock 通行证" : { + }, + "目前无法连接到 Bilibili 服务器,可能是您的网络出现问题。在少部分情况下,Bilibili 服务器可能已宕机" : { + + }, + "目标页" : { + }, "确定" : { "localizations" : { @@ -1001,9 +1179,15 @@ } } } + }, + "确认 Apple Watch 已连接到互联网" : { + }, "确认密码" : { + }, + "确认已在手机端同意网络权限" : { + }, "视频" : { "extractionState" : "stale", @@ -1036,6 +1220,7 @@ }, "简单地描述问题" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -1067,6 +1252,9 @@ }, "编译时间: %@" : { + }, + "网络检查" : { + }, "网络环境:" : { "localizations" : { @@ -1078,7 +1266,10 @@ } } }, - "网络说明" : { + "网络问题" : { + + }, + "联系 Darock 或等待修复" : { }, "腕上哔哩 v%@ Build %@" : { @@ -1120,6 +1311,9 @@ }, "自动旋转(仅竖向)" : { + }, + "自动显示网络检查" : { + }, "范围:%@" : { "localizations" : { @@ -1165,15 +1359,9 @@ } } } - }, - "详细信息" : { - }, "详细信息:%@" : { - }, - "请不要在问题描述中填写个人信息" : { - }, "请确定 Watch 的状态栏(控制中心上方)显示为%@而不是%@" : { "localizations" : { @@ -1190,9 +1378,6 @@ } } } - }, - "请重试之前的操作,如果问题依然存在,请联系开发者" : { - }, "账号" : { "localizations" : { @@ -1204,7 +1389,13 @@ } } }, - "输入密码" : { + "跳转" : { + + }, + "跳转到..." : { + + }, + "轻点问题以查看详细信息" : { }, "返回" : { @@ -1219,6 +1410,9 @@ }, "还没有装扮呢,去添加一个吧!" : { + }, + "这代表什么?" : { + }, "这里有一些值得注意的地方:" : { "localizations" : { @@ -1242,6 +1436,9 @@ } } } + }, + "连接状态" : { + }, "退出登录" : { "localizations" : { @@ -1255,6 +1452,9 @@ }, "退出程序" : { + }, + "通用" : { + }, "遇到问题?下载%@(暂未上线),附带上方文本进行反馈" : { "extractionState" : "stale", @@ -1272,8 +1472,12 @@ }, "邮箱" : { + }, + "重新检查" : { + }, "错误/异常行为" : { + "extractionState" : "stale", "localizations" : { "en" : { "stringUnit" : { @@ -1302,12 +1506,6 @@ } } } - }, - "问题可能来自 Darock,请联系开发者或等待问题解决" : { - - }, - "问题来自您的网络连接,点此查看网络说明" : { - }, "需要登录" : { diff --git a/DarockBili Watch App/Video/VideoCommentsView.swift b/DarockBili Watch App/Video/VideoCommentsView.swift index 185710175..365a60025 100644 --- a/DarockBili Watch App/Video/VideoCommentsView.swift +++ b/DarockBili Watch App/Video/VideoCommentsView.swift @@ -87,6 +87,7 @@ struct VideoCommentsView: View { HStack { WebImage(url: URL(string: comments[i]["SenderPic"]! + "@30w"), options: [.progressiveLoad]) .cornerRadius(100) + VStack { NavigationLink("", isActive: $isSenderDetailsPresented[i], destination: {UserDetailView(uid: comments[i]["SenderID"]!)}) .frame(width: 0, height: 0) @@ -102,6 +103,7 @@ struct VideoCommentsView: View { } Spacer() } + .onTapGesture { isSenderDetailsPresented[i] = true } diff --git a/DarockBili Watch App/Video/VideoDetailView.swift b/DarockBili Watch App/Video/VideoDetailView.swift index 2d5e00e2c..74a14fc14 100644 --- a/DarockBili Watch App/Video/VideoDetailView.swift +++ b/DarockBili Watch App/Video/VideoDetailView.swift @@ -207,10 +207,8 @@ struct VideoDetailView: View { .bold() } } - .sheet(isPresented: $isVideoPlayerPresented, content: { - VideoPlayerView() - .navigationBarHidden(true) - }) + .sheet(isPresented: $isVideoPlayerPresented, content: {VideoPlayerView() + .navigationBarHidden(true)}) .containerBackground(for: .navigation) { if !isInLowBatteryMode { ZStack { @@ -279,7 +277,6 @@ struct VideoDetailView: View { } } .accentColor(.white) - .animation(.smooth, value: isLoading) .onAppear { let headers: HTTPHeaders = [ "cookie": "SESSDATA=\(sessdata)", @@ -326,7 +323,7 @@ struct VideoDetailView: View { owner = ["Name": respJson["data"]["owner"]["name"].string ?? "[加载失败]", "Face": respJson["data"]["owner"]["face"].string ?? "E", "ID": String(respJson["data"]["owner"]["mid"].int64 ?? -1)] stat = ["Like": String(respJson["data"]["stat"]["like"].int ?? -1), "Coin": String(respJson["data"]["stat"]["coin"].int ?? -1), "Favorite": String(respJson["data"]["stat"]["favorite"].int ?? -1)] videoDesc = respJson["data"]["desc"].string ?? "[加载失败]".replacingOccurrences(of: "\\n", with: "\n") - + // Publish time calculation let df = DateFormatter() df.dateFormat = "yyyy-MM-dd HH:mm:ss" @@ -396,6 +393,9 @@ struct VideoDetailView: View { videoDesc = "" SDImageCache.shared.clearMemory() } + .animation(.smooth, value: isLoading) + + } struct DetailViewFirstPageBase: View { @@ -507,10 +507,7 @@ struct VideoDetailView: View { }, label: { Label("播放", systemImage: "play.fill") }) - .sheet(isPresented: $isVideoPlayerPresented, content: { - VideoPlayerView() - .navigationBarHidden(true) - }) + .sheet(isPresented: $isVideoPlayerPresented, content: {VideoPlayerView()}) NavigationLink("", isActive: $isNowPlayingPresented, destination: {AudioPlayerView(videoDetails: videoDetails, subTitles: subTitles)}) .frame(width: 0, height: 0) Button(action: { @@ -946,10 +943,7 @@ struct VideoDetailView: View { } } } - .sheet(isPresented: $isVideoPlayerPresented, content: { - VideoPlayerView() - .navigationBarHidden(true) - }) + .sheet(isPresented: $isVideoPlayerPresented, content: {VideoPlayerView()}) } } } diff --git a/DarockBili Watch App/Video/VideoPlayerView.swift b/DarockBili Watch App/Video/VideoPlayerView.swift index 1cf2cab78..61732c9d7 100644 --- a/DarockBili Watch App/Video/VideoPlayerView.swift +++ b/DarockBili Watch App/Video/VideoPlayerView.swift @@ -134,6 +134,12 @@ struct VideoPlayerView: View { .tag(1) ScrollView { VStack { + HStack { + Text("本旋转功能目前还不完善") + .font(.footnote) + Spacer() + } + .scenePadding(.horizontal) HStack { Button(action: { if playerRotate - 90 > 0 { diff --git a/DarockBili.xcodeproj/project.pbxproj b/DarockBili.xcodeproj/project.pbxproj index 3e2f3613c..19d322a2d 100644 --- a/DarockBili.xcodeproj/project.pbxproj +++ b/DarockBili.xcodeproj/project.pbxproj @@ -7,117 +7,103 @@ objects = { /* Begin PBXBuildFile section */ - 5C56762A2AFF67AC00E58541 /* Marquee in Frameworks */ = {isa = PBXBuildFile; productRef = 5C5676292AFF67AC00E58541 /* Marquee */; }; - 5C56762D2AFF72E900E58541 /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = 5C56762C2AFF72E900E58541 /* SwiftDate */; }; - 5CD61C9E2AF52144002D2097 /* OfflineMainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CD61C9D2AF52144002D2097 /* OfflineMainView.swift */; }; - 6B21E4512A72D7A10000C225 /* UserDynamicMainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B21E4502A72D7A00000C225 /* UserDynamicMainView.swift */; }; - 6B2469B42A73DA5A00291AC6 /* LivePlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B2469B32A73DA5A00291AC6 /* LivePlayerView.swift */; }; - 6B2B62302A7187CC0051B879 /* WatchAppUITestPlan.xctestplan in Resources */ = {isa = PBXBuildFile; fileRef = 6B2B622F2A7187CC0051B879 /* WatchAppUITestPlan.xctestplan */; }; - 6B2B62322A7187E70051B879 /* WatchAppUnitTestPlan.xctestplan in Resources */ = {isa = PBXBuildFile; fileRef = 6B2B62312A7187E70051B879 /* WatchAppUnitTestPlan.xctestplan */; }; - 6B2BCA702A7412F9002195BB /* ImageViewerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B2BCA6F2A7412F9002195BB /* ImageViewerView.swift */; }; - 6B37B4B72A714DDE00F26F1A /* AVExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B37B4B62A714DDE00F26F1A /* AVExtension.m */; }; - 6B37B4BD2A715EF900F26F1A /* SFSymbol in Frameworks */ = {isa = PBXBuildFile; productRef = 6B37B4BC2A715EF900F26F1A /* SFSymbol */; }; - 6B4FC0572A6FA49B00164A5B /* bMessageSendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B4FC0562A6FA49B00164A5B /* bMessageSendView.swift */; }; - 6B4FC05A2A7016CE00164A5B /* CodingTime.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B4FC0592A7016CE00164A5B /* CodingTime.m */; }; - 6B853FE52A74D9C20067B55C /* SkinChooserView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B853FE42A74D9C10067B55C /* SkinChooserView.swift */; }; - 6B853FE72A7507CD0067B55C /* SkinDownloadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B853FE62A7507CD0067B55C /* SkinDownloadView.swift */; }; - 6B853FEA2A7509DC0067B55C /* ZipArchive in Frameworks */ = {isa = PBXBuildFile; productRef = 6B853FE92A7509DC0067B55C /* ZipArchive */; }; - 6B853FEC2A750BD80067B55C /* SkinExplorerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B853FEB2A750BD70067B55C /* SkinExplorerView.swift */; }; - 6B9943862A6E257100E2F5D5 /* MemoryWarningView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B9943852A6E257100E2F5D5 /* MemoryWarningView.swift */; }; - 6BA20BC82A7185B100AAD0C7 /* DarockBili_Watch_App_Unit_Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA20BC72A7185B100AAD0C7 /* DarockBili_Watch_App_Unit_Tests.swift */; }; - 6BA20BD52A7185D300AAD0C7 /* DarockBili_Watch_App_UI_Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA20BD42A7185D300AAD0C7 /* DarockBili_Watch_App_UI_Tests.swift */; }; - 6BA20BD72A7185D300AAD0C7 /* DarockBili_Watch_App_UI_TestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA20BD62A7185D300AAD0C7 /* DarockBili_Watch_App_UI_TestsLaunchTests.swift */; }; - 6BC8CB1A2A6CEC7400D2E9E9 /* ColorThief.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BC8CB192A6CEC7400D2E9E9 /* ColorThief.swift */; }; - 6BC8CB1C2A6CEC8400D2E9E9 /* MMCQ.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BC8CB1B2A6CEC8400D2E9E9 /* MMCQ.swift */; }; - 6BC8CB282A6D758000D2E9E9 /* EFQRCode in Frameworks */ = {isa = PBXBuildFile; productRef = 6BC8CB272A6D758000D2E9E9 /* EFQRCode */; }; - 6BC8CB2A2A6D758000D2E9E9 /* SDWebImageSwiftUI in Frameworks */ = {isa = PBXBuildFile; productRef = 6BC8CB292A6D758000D2E9E9 /* SDWebImageSwiftUI */; }; - 6BC8CB2C2A6D758000D2E9E9 /* SDWebImageWebPCoder in Frameworks */ = {isa = PBXBuildFile; productRef = 6BC8CB2B2A6D758000D2E9E9 /* SDWebImageWebPCoder */; }; - 6BC8CB2E2A6D758000D2E9E9 /* SDWebImageSVGCoder in Frameworks */ = {isa = PBXBuildFile; productRef = 6BC8CB2D2A6D758000D2E9E9 /* SDWebImageSVGCoder */; }; - 6BC8CB302A6D758000D2E9E9 /* SDWebImagePDFCoder in Frameworks */ = {isa = PBXBuildFile; productRef = 6BC8CB2F2A6D758000D2E9E9 /* SDWebImagePDFCoder */; }; - 6BC8CB322A6D758000D2E9E9 /* SwiftSoup in Frameworks */ = {isa = PBXBuildFile; productRef = 6BC8CB312A6D758000D2E9E9 /* SwiftSoup */; }; - 6BC8CB342A6D758000D2E9E9 /* DarockKit in Frameworks */ = {isa = PBXBuildFile; productRef = 6BC8CB332A6D758000D2E9E9 /* DarockKit */; }; - 6BC8CB362A6D758000D2E9E9 /* CachedAsyncImage in Frameworks */ = {isa = PBXBuildFile; productRef = 6BC8CB352A6D758000D2E9E9 /* CachedAsyncImage */; }; - 6BC8CB402A6D7F6F00D2E9E9 /* AudioPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BC8CB3F2A6D7F6F00D2E9E9 /* AudioPlayerView.swift */; }; - 6BF45C282A760C2C006E7A34 /* LyricerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BF45C272A760C2C006E7A34 /* LyricerView.swift */; }; - 6BFF29052A6C0B3A00914A8E /* DarockBiliApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BFF29042A6C0B3A00914A8E /* DarockBiliApp.swift */; }; - 6BFF29072A6C0B3A00914A8E /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BFF29062A6C0B3A00914A8E /* ContentView.swift */; }; - 6BFF29092A6C0B3F00914A8E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6BFF29082A6C0B3F00914A8E /* Assets.xcassets */; }; - 6BFF290C2A6C0B3F00914A8E /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6BFF290B2A6C0B3F00914A8E /* Preview Assets.xcassets */; }; - 6BFF29692A6C0D2100914A8E /* DarockBili Watch App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = 6BFF295C2A6C0D1C00914A8E /* DarockBili Watch App.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; - 6BFF296E2A6C0DE500914A8E /* AppFileManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B56A9042A53BD330089DD31 /* AppFileManager.swift */; }; - 6BFF296F2A6C0DE500914A8E /* UIExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B2773C02A599FE300950EB7 /* UIExt.swift */; }; - 6BFF29712A6C0DE500914A8E /* DarockBiliApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B0253BF2A4EF59600567986 /* DarockBiliApp.swift */; }; - 6BFF29722A6C0DE500914A8E /* DarockBili-Watch-App-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 6B0253DB2A4F109700567986 /* DarockBili-Watch-App-Info.plist */; }; - 6BFF29732A6C0DE600914A8E /* CodeExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BE4AA792A56798600F18565 /* CodeExt.swift */; }; - 6BFF29752A6C0DF500914A8E /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B0253C12A4EF59600567986 /* ContentView.swift */; }; - 6BFF29762A6C0DF500914A8E /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B0253D42A4EF64C00567986 /* MainView.swift */; }; - 6BFF29772A6C0DF500914A8E /* SearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFF7D02A50411400DE050E /* SearchView.swift */; }; - 6BFF29782A6C0DF900914A8E /* FollowListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFF7BD2A50040E00DE050E /* FollowListView.swift */; }; - 6BFF29792A6C0DF900914A8E /* HistoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B6790A32A5296FB00FAE216 /* HistoryView.swift */; }; - 6BFF297A2A6C0DF900914A8E /* FavoriteView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B56A8FE2A53A9F80089DD31 /* FavoriteView.swift */; }; - 6BFF297B2A6C0DF900914A8E /* WatchLaterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B56A9262A53E6850089DD31 /* WatchLaterView.swift */; }; - 6BFF297C2A6C0DF900914A8E /* DownloadsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B56A9002A53B8D30089DD31 /* DownloadsView.swift */; }; - 6BFF297D2A6C0DF900914A8E /* PersonAccountView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B0253E12A4F23DB00567986 /* PersonAccountView.swift */; }; - 6BFF297E2A6C0DF900914A8E /* UserDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFF7BF2A50046C00DE050E /* UserDetailView.swift */; }; - 6BFF297F2A6C0DF900914A8E /* ArticleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFF7D52A5073FC00DE050E /* ArticleView.swift */; }; - 6BFF29802A6C0DFC00914A8E /* VideoPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B0253DE2A4F1DCF00567986 /* VideoPlayerView.swift */; }; - 6BFF29822A6C0DFC00914A8E /* VideoDownloadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B56A9022A53B9770089DD31 /* VideoDownloadView.swift */; }; - 6BFF29832A6C0DFC00914A8E /* VideoDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B0253DC2A4F155800567986 /* VideoDetailView.swift */; }; - 6BFF29842A6C0DFC00914A8E /* VideoCommentsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFA2BD2A51236900FE61D1 /* VideoCommentsView.swift */; }; - 6BFF29852A6C0DFF00914A8E /* SettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B91C4A82A5598260020259E /* SettingsView.swift */; }; - 6BFF29862A6C0DFF00914A8E /* LoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B0253E32A4F265100567986 /* LoginView.swift */; }; - 6BFF29872A6C0DFF00914A8E /* FirstUsingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFA2C42A515D8B00FE61D1 /* FirstUsingView.swift */; }; - 6BFF29882A6C0DFF00914A8E /* NoticeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFA32C2A51C39F00FE61D1 /* NoticeView.swift */; }; - 6BFF29892A6C0DFF00914A8E /* AboutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BBFA2C22A512CF500FE61D1 /* AboutView.swift */; }; - 6BFF298A2A6C0E0B00914A8E /* Backtrace.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B2D76472A610E7000AA57DA /* Backtrace.swift */; }; - 6BFF298B2A6C0E1900914A8E /* backtrace.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B2D764B2A610EC800AA57DA /* backtrace.c */; }; - 6BFF298C2A6C0E1D00914A8E /* FeedbackMainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B8C2B002A601E57001FEC85 /* FeedbackMainView.swift */; }; - 6BFF298D2A6C0E1D00914A8E /* ErrorGetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BA3F5692A543B3A0016BD8D /* ErrorGetView.swift */; }; - 6BFF298E2A6C0E1D00914A8E /* NetworkFixView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BF6B5CE2A544A1F004A31BC /* NetworkFixView.swift */; }; - 6BFF298F2A6C0E1D00914A8E /* FeedbackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B91C4AC2A55A40D0020259E /* FeedbackView.swift */; }; - 6BFF29902A6C0E1D00914A8E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6B0253C32A4EF59700567986 /* Assets.xcassets */; }; - 6BFF29912A6C0E1D00914A8E /* FeedbackEnterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B8C2AFE2A601E36001FEC85 /* FeedbackEnterView.swift */; }; - 6BFF29922A6C0E1D00914A8E /* FeedbackDetailsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B8C2B022A6020F2001FEC85 /* FeedbackDetailsView.swift */; }; - 6BFF29932A6C0E1D00914A8E /* FeedbackLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B8C2AFC2A6019B6001FEC85 /* FeedbackLoginView.swift */; }; - 6BFF29942A6C0E1D00914A8E /* SignalErrorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B2D764D2A61154300AA57DA /* SignalErrorView.swift */; }; - 6BFF29952A6C0E2200914A8E /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6B0253C62A4EF59700567986 /* Preview Assets.xcassets */; }; - 6BFF29A62A6C10EB00914A8E /* DarockKit in Frameworks */ = {isa = PBXBuildFile; productRef = 6BFF29A52A6C10EB00914A8E /* DarockKit */; }; - 8CA4537F2AE408A700138CE4 /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = 8CA4537E2AE408A700138CE4 /* README.md */; }; - 8CA453822AE42A3E00138CE4 /* Dynamic in Frameworks */ = {isa = PBXBuildFile; productRef = 8CA453812AE42A3E00138CE4 /* Dynamic */; }; + B44689D12B4FC15A002CCEB2 /* 喵哩喵哩.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = B44689D02B4FC15A002CCEB2 /* 喵哩喵哩.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; + B4468A312B4FC24A002CCEB2 /* NetworkFixView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689E82B4FC249002CCEB2 /* NetworkFixView.swift */; }; + B4468A322B4FC24A002CCEB2 /* SignalErrorView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689E92B4FC249002CCEB2 /* SignalErrorView.swift */; }; + B4468A332B4FC24A002CCEB2 /* MemoryWarningView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689EA2B4FC249002CCEB2 /* MemoryWarningView.swift */; }; + B4468A342B4FC24A002CCEB2 /* backtrace.c in Sources */ = {isa = PBXBuildFile; fileRef = B44689ED2B4FC249002CCEB2 /* backtrace.c */; }; + B4468A352B4FC24A002CCEB2 /* Backtrace.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689EE2B4FC249002CCEB2 /* Backtrace.swift */; }; + B4468A362B4FC24A002CCEB2 /* FeedbackView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689EF2B4FC249002CCEB2 /* FeedbackView.swift */; }; + B4468A372B4FC24A002CCEB2 /* FeedbackLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689F12B4FC249002CCEB2 /* FeedbackLoginView.swift */; }; + B4468A382B4FC24A002CCEB2 /* FeedbackEnterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689F22B4FC249002CCEB2 /* FeedbackEnterView.swift */; }; + B4468A392B4FC24A002CCEB2 /* FeedbackMainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689F32B4FC249002CCEB2 /* FeedbackMainView.swift */; }; + B4468A3A2B4FC24A002CCEB2 /* FeedbackDetailsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689F42B4FC249002CCEB2 /* FeedbackDetailsView.swift */; }; + B4468A3B2B4FC24A002CCEB2 /* ErrorGetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689F52B4FC249002CCEB2 /* ErrorGetView.swift */; }; + B4468A3C2B4FC24A002CCEB2 /* CodeExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689F72B4FC249002CCEB2 /* CodeExt.swift */; }; + B4468A3D2B4FC24A002CCEB2 /* AppFileManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689F82B4FC249002CCEB2 /* AppFileManager.swift */; }; + B4468A3E2B4FC24A002CCEB2 /* ColorThief.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689FA2B4FC249002CCEB2 /* ColorThief.swift */; }; + B4468A3F2B4FC24A002CCEB2 /* MMCQ.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689FB2B4FC249002CCEB2 /* MMCQ.swift */; }; + B4468A402B4FC24A002CCEB2 /* UIExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689FC2B4FC249002CCEB2 /* UIExt.swift */; }; + B4468A412B4FC24A002CCEB2 /* LivePlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689FE2B4FC249002CCEB2 /* LivePlayerView.swift */; }; + B4468A422B4FC24A002CCEB2 /* DarockBiliApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44689FF2B4FC249002CCEB2 /* DarockBiliApp.swift */; }; + B4468A432B4FC24A002CCEB2 /* SearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A012B4FC249002CCEB2 /* SearchView.swift */; }; + B4468A442B4FC24A002CCEB2 /* MainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A022B4FC249002CCEB2 /* MainView.swift */; }; + B4468A452B4FC24A002CCEB2 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A032B4FC249002CCEB2 /* ContentView.swift */; }; + B4468A462B4FC24A002CCEB2 /* ImageViewerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A062B4FC249002CCEB2 /* ImageViewerView.swift */; }; + B4468A472B4FC24A002CCEB2 /* UserDynamicMainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A072B4FC249002CCEB2 /* UserDynamicMainView.swift */; }; + B4468A482B4FC24A002CCEB2 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = B4468A082B4FC249002CCEB2 /* Localizable.xcstrings */; }; + B4468A492B4FC24A002CCEB2 /* OfflineMainView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A0A2B4FC249002CCEB2 /* OfflineMainView.swift */; }; + B4468A4A2B4FC24A002CCEB2 /* VideoPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A0C2B4FC24A002CCEB2 /* VideoPlayerView.swift */; }; + B4468A4B2B4FC24A002CCEB2 /* LyricerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A0D2B4FC24A002CCEB2 /* LyricerView.swift */; }; + B4468A4C2B4FC24A002CCEB2 /* VideoDownloadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A0E2B4FC24A002CCEB2 /* VideoDownloadView.swift */; }; + B4468A4D2B4FC24A002CCEB2 /* VideoCommentsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A0F2B4FC24A002CCEB2 /* VideoCommentsView.swift */; }; + B4468A4E2B4FC24A002CCEB2 /* VideoDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A102B4FC24A002CCEB2 /* VideoDetailView.swift */; }; + B4468A4F2B4FC24A002CCEB2 /* AudioPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A112B4FC24A002CCEB2 /* AudioPlayerView.swift */; }; + B4468A502B4FC24A002CCEB2 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B4468A132B4FC24A002CCEB2 /* Preview Assets.xcassets */; }; + B4468A512B4FC24A002CCEB2 /* Dynamic_Feed_All.json in Resources */ = {isa = PBXBuildFile; fileRef = B4468A152B4FC24A002CCEB2 /* Dynamic_Feed_All.json */; }; + B4468A522B4FC24A002CCEB2 /* Search_With_UP_V2.json in Resources */ = {isa = PBXBuildFile; fileRef = B4468A162B4FC24A002CCEB2 /* Search_With_UP_V2.json */; }; + B4468A532B4FC24A002CCEB2 /* AboutView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A182B4FC24A002CCEB2 /* AboutView.swift */; }; + B4468A542B4FC24A002CCEB2 /* FirstUsingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A192B4FC24A002CCEB2 /* FirstUsingView.swift */; }; + B4468A552B4FC24A002CCEB2 /* SettingsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A1A2B4FC24A002CCEB2 /* SettingsView.swift */; }; + B4468A562B4FC24A002CCEB2 /* LoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A1B2B4FC24A002CCEB2 /* LoginView.swift */; }; + B4468A572B4FC24A002CCEB2 /* SkinChooserView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A1D2B4FC24A002CCEB2 /* SkinChooserView.swift */; }; + B4468A582B4FC24A002CCEB2 /* SkinExplorerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A1E2B4FC24A002CCEB2 /* SkinExplorerView.swift */; }; + B4468A592B4FC24A002CCEB2 /* SkinDownloadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A1F2B4FC24A002CCEB2 /* SkinDownloadView.swift */; }; + B4468A5A2B4FC24A002CCEB2 /* NoticeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A202B4FC24A002CCEB2 /* NoticeView.swift */; }; + B4468A5B2B4FC24A002CCEB2 /* AVExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B4468A242B4FC24A002CCEB2 /* AVExtension.m */; }; + B4468A5C2B4FC24A002CCEB2 /* CodingTime.m in Sources */ = {isa = PBXBuildFile; fileRef = B4468A252B4FC24A002CCEB2 /* CodingTime.m */; }; + B4468A5D2B4FC24A002CCEB2 /* DownloadsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A272B4FC24A002CCEB2 /* DownloadsView.swift */; }; + B4468A5E2B4FC24A002CCEB2 /* bMessageSendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A292B4FC24A002CCEB2 /* bMessageSendView.swift */; }; + B4468A5F2B4FC24A002CCEB2 /* PersonAccountView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A2A2B4FC24A002CCEB2 /* PersonAccountView.swift */; }; + B4468A602B4FC24A002CCEB2 /* FavoriteView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A2B2B4FC24A002CCEB2 /* FavoriteView.swift */; }; + B4468A612B4FC24A002CCEB2 /* FollowListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A2C2B4FC24A002CCEB2 /* FollowListView.swift */; }; + B4468A622B4FC24A002CCEB2 /* ArticleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A2D2B4FC24A002CCEB2 /* ArticleView.swift */; }; + B4468A632B4FC24A002CCEB2 /* UserDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A2E2B4FC24A002CCEB2 /* UserDetailView.swift */; }; + B4468A642B4FC24A002CCEB2 /* HistoryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A2F2B4FC24A002CCEB2 /* HistoryView.swift */; }; + B4468A652B4FC24A002CCEB2 /* WatchLaterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4468A302B4FC24A002CCEB2 /* WatchLaterView.swift */; }; + B4468A672B4FC286002CCEB2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B4468A662B4FC286002CCEB2 /* Assets.xcassets */; }; + B4468A6A2B4FC2A4002CCEB2 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B4468A692B4FC2A4002CCEB2 /* Preview Assets.xcassets */; }; + B4468A6D2B4FC2C8002CCEB2 /* Alamofire in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A6C2B4FC2C8002CCEB2 /* Alamofire */; }; + B4468A702B4FC5E7002CCEB2 /* Marquee in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A6F2B4FC5E7002CCEB2 /* Marquee */; }; + B4468A732B4FC5F2002CCEB2 /* SwiftDate in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A722B4FC5F1002CCEB2 /* SwiftDate */; }; + B4468A762B4FC602002CCEB2 /* SFSymbol in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A752B4FC602002CCEB2 /* SFSymbol */; }; + B4468A782B4FC60B002CCEB2 /* SFSymbol in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A772B4FC60B002CCEB2 /* SFSymbol */; }; + B4468A7B2B4FC618002CCEB2 /* ZipArchive in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A7A2B4FC618002CCEB2 /* ZipArchive */; }; + B4468A8C2B4FC85A002CCEB2 /* SwiftyJSON in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A8B2B4FC85A002CCEB2 /* SwiftyJSON */; }; + B4468A8F2B4FC8AC002CCEB2 /* DarockKit in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A8E2B4FC8AC002CCEB2 /* DarockKit */; }; + B4468A922B4FC8B7002CCEB2 /* EFQRCode in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A912B4FC8B7002CCEB2 /* EFQRCode */; }; + B4468A942B4FC8B7002CCEB2 /* SDWebImageSwiftUI in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A932B4FC8B7002CCEB2 /* SDWebImageSwiftUI */; }; + B4468A962B4FC8B7002CCEB2 /* SDWebImageWebPCoder in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A952B4FC8B7002CCEB2 /* SDWebImageWebPCoder */; }; + B4468A982B4FC8B7002CCEB2 /* SDWebImageSVGCoder in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A972B4FC8B7002CCEB2 /* SDWebImageSVGCoder */; }; + B4468A9A2B4FC8B7002CCEB2 /* SDWebImagePDFCoder in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A992B4FC8B7002CCEB2 /* SDWebImagePDFCoder */; }; + B4468A9C2B4FC8B7002CCEB2 /* SwiftSoup in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A9B2B4FC8B7002CCEB2 /* SwiftSoup */; }; + B4468A9E2B4FC8B7002CCEB2 /* CachedAsyncImage in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A9D2B4FC8B7002CCEB2 /* CachedAsyncImage */; }; + B4468AA02B4FC8B7002CCEB2 /* Dynamic in Frameworks */ = {isa = PBXBuildFile; productRef = B4468A9F2B4FC8B7002CCEB2 /* Dynamic */; }; + E2565AF32B52BFDF000E01ED /* BangumiDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2565AF22B52BFDF000E01ED /* BangumiDetailView.swift */; }; + E2565AF52B52C017000E01ED /* BangumiDownloadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2565AF42B52C017000E01ED /* BangumiDownloadView.swift */; }; + E2565AF72B52C06D000E01ED /* BangumiCommentsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2565AF62B52C06D000E01ED /* BangumiCommentsView.swift */; }; + E2565AF92B52C076000E01ED /* BangumiPlayerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2565AF82B52C076000E01ED /* BangumiPlayerView.swift */; }; + E2565AFB2B52C114000E01ED /* LiveDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2565AFA2B52C114000E01ED /* LiveDetailView.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 6BA20BC92A7185B100AAD0C7 /* PBXContainerItemProxy */ = { + B44689D22B4FC15A002CCEB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6B0253AE2A4EF59600567986 /* Project object */; + containerPortal = B44689C42B4FC15A002CCEB2 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6BFF295B2A6C0D1C00914A8E; + remoteGlobalIDString = B44689CF2B4FC15A002CCEB2; remoteInfo = "DarockBili Watch App"; }; - 6BA20BD82A7185D300AAD0C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 6B0253AE2A4EF59600567986 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6BFF295B2A6C0D1C00914A8E; - remoteInfo = "DarockBili Watch App"; - }; - 6BFF29672A6C0D2100914A8E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 6B0253AE2A4EF59600567986 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6BFF295B2A6C0D1C00914A8E; - remoteInfo = "DarockBili WatchKit App Watch App"; - }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ - 6BFF296D2A6C0D2100914A8E /* Embed Watch Content */ = { + B44689E32B4FC15B002CCEB2 /* Embed Watch Content */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = "$(CONTENTS_FOLDER_PATH)/Watch"; dstSubfolderSpec = 16; files = ( - 6BFF29692A6C0D2100914A8E /* DarockBili Watch App.app in Embed Watch Content */, + B44689D12B4FC15A002CCEB2 /* 喵哩喵哩.app in Embed Watch Content */, ); name = "Embed Watch Content"; runOnlyForDeploymentPostprocessing = 0; @@ -125,468 +111,386 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 5CD61C9D2AF52144002D2097 /* OfflineMainView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OfflineMainView.swift; sourceTree = ""; }; - 6B0253BF2A4EF59600567986 /* DarockBiliApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DarockBiliApp.swift; sourceTree = ""; }; - 6B0253C12A4EF59600567986 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; - 6B0253C32A4EF59700567986 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 6B0253C62A4EF59700567986 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; - 6B0253D42A4EF64C00567986 /* MainView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = ""; }; - 6B0253DB2A4F109700567986 /* DarockBili-Watch-App-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "DarockBili-Watch-App-Info.plist"; sourceTree = SOURCE_ROOT; }; - 6B0253DC2A4F155800567986 /* VideoDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoDetailView.swift; sourceTree = ""; }; - 6B0253DE2A4F1DCF00567986 /* VideoPlayerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoPlayerView.swift; sourceTree = ""; }; - 6B0253E12A4F23DB00567986 /* PersonAccountView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PersonAccountView.swift; sourceTree = ""; }; - 6B0253E32A4F265100567986 /* LoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginView.swift; sourceTree = ""; }; - 6B0A562B2A714DB300D0CC32 /* AVExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AVExtension.h; sourceTree = ""; }; - 6B21E4502A72D7A00000C225 /* UserDynamicMainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDynamicMainView.swift; sourceTree = ""; }; - 6B2469B32A73DA5A00291AC6 /* LivePlayerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LivePlayerView.swift; sourceTree = ""; }; - 6B2773C02A599FE300950EB7 /* UIExt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIExt.swift; sourceTree = ""; }; - 6B2B622F2A7187CC0051B879 /* WatchAppUITestPlan.xctestplan */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = WatchAppUITestPlan.xctestplan; sourceTree = ""; }; - 6B2B62312A7187E70051B879 /* WatchAppUnitTestPlan.xctestplan */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = WatchAppUnitTestPlan.xctestplan; sourceTree = ""; }; - 6B2BCA6F2A7412F9002195BB /* ImageViewerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageViewerView.swift; sourceTree = ""; }; - 6B2D76472A610E7000AA57DA /* Backtrace.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Backtrace.swift; sourceTree = ""; }; - 6B2D764A2A610EC800AA57DA /* backtrace.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = backtrace.h; sourceTree = ""; }; - 6B2D764B2A610EC800AA57DA /* backtrace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = backtrace.c; sourceTree = ""; }; - 6B2D764D2A61154300AA57DA /* SignalErrorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SignalErrorView.swift; sourceTree = ""; }; - 6B37B4B62A714DDE00F26F1A /* AVExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AVExtension.m; sourceTree = ""; }; - 6B4FC0562A6FA49B00164A5B /* bMessageSendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = bMessageSendView.swift; sourceTree = ""; }; - 6B4FC0592A7016CE00164A5B /* CodingTime.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CodingTime.m; sourceTree = ""; }; - 6B4FC05B2A7016DF00164A5B /* CodingTime.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CodingTime.h; sourceTree = ""; }; - 6B4FC05C2A70172B00164A5B /* DarockBili-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DarockBili-Bridging-Header.h"; sourceTree = ""; }; - 6B56A8FE2A53A9F80089DD31 /* FavoriteView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FavoriteView.swift; sourceTree = ""; }; - 6B56A9002A53B8D30089DD31 /* DownloadsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DownloadsView.swift; sourceTree = ""; }; - 6B56A9022A53B9770089DD31 /* VideoDownloadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoDownloadView.swift; sourceTree = ""; }; - 6B56A9042A53BD330089DD31 /* AppFileManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppFileManager.swift; sourceTree = ""; }; - 6B56A9242A53CFC10089DD31 /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = ""; }; - 6B56A9262A53E6850089DD31 /* WatchLaterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WatchLaterView.swift; sourceTree = ""; }; - 6B6790A32A5296FB00FAE216 /* HistoryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HistoryView.swift; sourceTree = ""; }; - 6B853FE42A74D9C10067B55C /* SkinChooserView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SkinChooserView.swift; sourceTree = ""; }; - 6B853FE62A7507CD0067B55C /* SkinDownloadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkinDownloadView.swift; sourceTree = ""; }; - 6B853FEB2A750BD70067B55C /* SkinExplorerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SkinExplorerView.swift; sourceTree = ""; }; - 6B8858012A72DC2200DBEA21 /* Dynamic_Feed_All.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = Dynamic_Feed_All.json; sourceTree = ""; }; - 6B8C2AFC2A6019B6001FEC85 /* FeedbackLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeedbackLoginView.swift; sourceTree = ""; }; - 6B8C2AFE2A601E36001FEC85 /* FeedbackEnterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeedbackEnterView.swift; sourceTree = ""; }; - 6B8C2B002A601E57001FEC85 /* FeedbackMainView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeedbackMainView.swift; sourceTree = ""; }; - 6B8C2B022A6020F2001FEC85 /* FeedbackDetailsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeedbackDetailsView.swift; sourceTree = ""; }; - 6B91C4A82A5598260020259E /* SettingsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SettingsView.swift; sourceTree = ""; }; - 6B91C4AC2A55A40D0020259E /* FeedbackView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FeedbackView.swift; sourceTree = ""; }; - 6B9943852A6E257100E2F5D5 /* MemoryWarningView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MemoryWarningView.swift; sourceTree = ""; }; - 6BA20BC52A7185B100AAD0C7 /* DarockBili Watch App Unit Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "DarockBili Watch App Unit Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BA20BC72A7185B100AAD0C7 /* DarockBili_Watch_App_Unit_Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DarockBili_Watch_App_Unit_Tests.swift; sourceTree = ""; }; - 6BA20BD22A7185D300AAD0C7 /* DarockBili Watch App UI Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "DarockBili Watch App UI Tests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BA20BD42A7185D300AAD0C7 /* DarockBili_Watch_App_UI_Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DarockBili_Watch_App_UI_Tests.swift; sourceTree = ""; }; - 6BA20BD62A7185D300AAD0C7 /* DarockBili_Watch_App_UI_TestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DarockBili_Watch_App_UI_TestsLaunchTests.swift; sourceTree = ""; }; - 6BA3F5692A543B3A0016BD8D /* ErrorGetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ErrorGetView.swift; sourceTree = ""; }; - 6BBFA2BD2A51236900FE61D1 /* VideoCommentsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VideoCommentsView.swift; sourceTree = ""; }; - 6BBFA2C22A512CF500FE61D1 /* AboutView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AboutView.swift; sourceTree = ""; }; - 6BBFA2C42A515D8B00FE61D1 /* FirstUsingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FirstUsingView.swift; sourceTree = ""; }; - 6BBFA32C2A51C39F00FE61D1 /* NoticeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NoticeView.swift; sourceTree = ""; }; - 6BBFF7BD2A50040E00DE050E /* FollowListView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FollowListView.swift; sourceTree = ""; }; - 6BBFF7BF2A50046C00DE050E /* UserDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDetailView.swift; sourceTree = ""; }; - 6BBFF7D02A50411400DE050E /* SearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchView.swift; sourceTree = ""; }; - 6BBFF7D52A5073FC00DE050E /* ArticleView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ArticleView.swift; sourceTree = ""; }; - 6BC8CB192A6CEC7400D2E9E9 /* ColorThief.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ColorThief.swift; sourceTree = ""; }; - 6BC8CB1B2A6CEC8400D2E9E9 /* MMCQ.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MMCQ.swift; sourceTree = ""; }; - 6BC8CB3F2A6D7F6F00D2E9E9 /* AudioPlayerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AudioPlayerView.swift; sourceTree = ""; }; - 6BE4AA792A56798600F18565 /* CodeExt.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CodeExt.swift; sourceTree = ""; }; - 6BF45C272A760C2C006E7A34 /* LyricerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LyricerView.swift; sourceTree = ""; }; - 6BF6B5CE2A544A1F004A31BC /* NetworkFixView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NetworkFixView.swift; sourceTree = ""; }; - 6BFC824A2A78F3CB00E1FD20 /* Search_With_UP_V2.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = Search_With_UP_V2.json; sourceTree = ""; }; - 6BFF29022A6C0B3A00914A8E /* DarockBili.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DarockBili.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BFF29042A6C0B3A00914A8E /* DarockBiliApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DarockBiliApp.swift; sourceTree = ""; }; - 6BFF29062A6C0B3A00914A8E /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; - 6BFF29082A6C0B3F00914A8E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; - 6BFF290B2A6C0B3F00914A8E /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; - 6BFF295C2A6C0D1C00914A8E /* DarockBili Watch App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "DarockBili Watch App.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6BFF29A72A6C25FC00914A8E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = ""; }; - 8CA4537E2AE408A700138CE4 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; + B44689CA2B4FC15A002CCEB2 /* DarockBili.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DarockBili.app; sourceTree = BUILT_PRODUCTS_DIR; }; + B44689D02B4FC15A002CCEB2 /* 喵哩喵哩.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "喵哩喵哩.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + B44689E82B4FC249002CCEB2 /* NetworkFixView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NetworkFixView.swift; sourceTree = ""; }; + B44689E92B4FC249002CCEB2 /* SignalErrorView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SignalErrorView.swift; sourceTree = ""; }; + B44689EA2B4FC249002CCEB2 /* MemoryWarningView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MemoryWarningView.swift; sourceTree = ""; }; + B44689EC2B4FC249002CCEB2 /* backtrace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = backtrace.h; sourceTree = ""; }; + B44689ED2B4FC249002CCEB2 /* backtrace.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = backtrace.c; sourceTree = ""; }; + B44689EE2B4FC249002CCEB2 /* Backtrace.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Backtrace.swift; sourceTree = ""; }; + B44689EF2B4FC249002CCEB2 /* FeedbackView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FeedbackView.swift; sourceTree = ""; }; + B44689F12B4FC249002CCEB2 /* FeedbackLoginView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FeedbackLoginView.swift; sourceTree = ""; }; + B44689F22B4FC249002CCEB2 /* FeedbackEnterView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FeedbackEnterView.swift; sourceTree = ""; }; + B44689F32B4FC249002CCEB2 /* FeedbackMainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FeedbackMainView.swift; sourceTree = ""; }; + B44689F42B4FC249002CCEB2 /* FeedbackDetailsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FeedbackDetailsView.swift; sourceTree = ""; }; + B44689F52B4FC249002CCEB2 /* ErrorGetView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ErrorGetView.swift; sourceTree = ""; }; + B44689F72B4FC249002CCEB2 /* CodeExt.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CodeExt.swift; sourceTree = ""; }; + B44689F82B4FC249002CCEB2 /* AppFileManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppFileManager.swift; sourceTree = ""; }; + B44689FA2B4FC249002CCEB2 /* ColorThief.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorThief.swift; sourceTree = ""; }; + B44689FB2B4FC249002CCEB2 /* MMCQ.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MMCQ.swift; sourceTree = ""; }; + B44689FC2B4FC249002CCEB2 /* UIExt.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UIExt.swift; sourceTree = ""; }; + B44689FE2B4FC249002CCEB2 /* LivePlayerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LivePlayerView.swift; sourceTree = ""; }; + B44689FF2B4FC249002CCEB2 /* DarockBiliApp.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DarockBiliApp.swift; sourceTree = ""; }; + B4468A012B4FC249002CCEB2 /* SearchView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SearchView.swift; sourceTree = ""; }; + B4468A022B4FC249002CCEB2 /* MainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MainView.swift; sourceTree = ""; }; + B4468A032B4FC249002CCEB2 /* ContentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; + B4468A042B4FC249002CCEB2 /* DarockBili-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "DarockBili-Bridging-Header.h"; sourceTree = ""; }; + B4468A062B4FC249002CCEB2 /* ImageViewerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageViewerView.swift; sourceTree = ""; }; + B4468A072B4FC249002CCEB2 /* UserDynamicMainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDynamicMainView.swift; sourceTree = ""; }; + B4468A082B4FC249002CCEB2 /* Localizable.xcstrings */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = ""; }; + B4468A0A2B4FC249002CCEB2 /* OfflineMainView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OfflineMainView.swift; sourceTree = ""; }; + B4468A0C2B4FC24A002CCEB2 /* VideoPlayerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoPlayerView.swift; sourceTree = ""; }; + B4468A0D2B4FC24A002CCEB2 /* LyricerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LyricerView.swift; sourceTree = ""; }; + B4468A0E2B4FC24A002CCEB2 /* VideoDownloadView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoDownloadView.swift; sourceTree = ""; }; + B4468A0F2B4FC24A002CCEB2 /* VideoCommentsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoCommentsView.swift; sourceTree = ""; }; + B4468A102B4FC24A002CCEB2 /* VideoDetailView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoDetailView.swift; sourceTree = ""; }; + B4468A112B4FC24A002CCEB2 /* AudioPlayerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AudioPlayerView.swift; sourceTree = ""; }; + B4468A132B4FC24A002CCEB2 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; + B4468A152B4FC24A002CCEB2 /* Dynamic_Feed_All.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Dynamic_Feed_All.json; sourceTree = ""; }; + B4468A162B4FC24A002CCEB2 /* Search_With_UP_V2.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = Search_With_UP_V2.json; sourceTree = ""; }; + B4468A182B4FC24A002CCEB2 /* AboutView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AboutView.swift; sourceTree = ""; }; + B4468A192B4FC24A002CCEB2 /* FirstUsingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FirstUsingView.swift; sourceTree = ""; }; + B4468A1A2B4FC24A002CCEB2 /* SettingsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingsView.swift; sourceTree = ""; }; + B4468A1B2B4FC24A002CCEB2 /* LoginView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LoginView.swift; sourceTree = ""; }; + B4468A1D2B4FC24A002CCEB2 /* SkinChooserView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SkinChooserView.swift; sourceTree = ""; }; + B4468A1E2B4FC24A002CCEB2 /* SkinExplorerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SkinExplorerView.swift; sourceTree = ""; }; + B4468A1F2B4FC24A002CCEB2 /* SkinDownloadView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SkinDownloadView.swift; sourceTree = ""; }; + B4468A202B4FC24A002CCEB2 /* NoticeView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NoticeView.swift; sourceTree = ""; }; + B4468A222B4FC24A002CCEB2 /* AVExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AVExtension.h; sourceTree = ""; }; + B4468A232B4FC24A002CCEB2 /* CodingTime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CodingTime.h; sourceTree = ""; }; + B4468A242B4FC24A002CCEB2 /* AVExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AVExtension.m; sourceTree = ""; }; + B4468A252B4FC24A002CCEB2 /* CodingTime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CodingTime.m; sourceTree = ""; }; + B4468A272B4FC24A002CCEB2 /* DownloadsView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DownloadsView.swift; sourceTree = ""; }; + B4468A292B4FC24A002CCEB2 /* bMessageSendView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = bMessageSendView.swift; sourceTree = ""; }; + B4468A2A2B4FC24A002CCEB2 /* PersonAccountView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PersonAccountView.swift; sourceTree = ""; }; + B4468A2B2B4FC24A002CCEB2 /* FavoriteView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FavoriteView.swift; sourceTree = ""; }; + B4468A2C2B4FC24A002CCEB2 /* FollowListView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FollowListView.swift; sourceTree = ""; }; + B4468A2D2B4FC24A002CCEB2 /* ArticleView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ArticleView.swift; sourceTree = ""; }; + B4468A2E2B4FC24A002CCEB2 /* UserDetailView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UserDetailView.swift; sourceTree = ""; }; + B4468A2F2B4FC24A002CCEB2 /* HistoryView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryView.swift; sourceTree = ""; }; + B4468A302B4FC24A002CCEB2 /* WatchLaterView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WatchLaterView.swift; sourceTree = ""; }; + B4468A662B4FC286002CCEB2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + B4468A692B4FC2A4002CCEB2 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; + B4C5E9562B4FD60600E2605B /* DarockBili-Watch-App-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "DarockBili-Watch-App-Info.plist"; sourceTree = SOURCE_ROOT; }; + E2565AF22B52BFDF000E01ED /* BangumiDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BangumiDetailView.swift; sourceTree = ""; }; + E2565AF42B52C017000E01ED /* BangumiDownloadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BangumiDownloadView.swift; sourceTree = ""; }; + E2565AF62B52C06D000E01ED /* BangumiCommentsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BangumiCommentsView.swift; sourceTree = ""; }; + E2565AF82B52C076000E01ED /* BangumiPlayerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BangumiPlayerView.swift; sourceTree = ""; }; + E2565AFA2B52C114000E01ED /* LiveDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveDetailView.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 6BA20BC22A7185B100AAD0C7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BA20BCF2A7185D300AAD0C7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BFF28FF2A6C0B3A00914A8E /* Frameworks */ = { + B44689CD2B4FC15A002CCEB2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6BFF29A62A6C10EB00914A8E /* DarockKit in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BFF29592A6C0D1C00914A8E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 6BC8CB2A2A6D758000D2E9E9 /* SDWebImageSwiftUI in Frameworks */, - 6BC8CB362A6D758000D2E9E9 /* CachedAsyncImage in Frameworks */, - 6BC8CB282A6D758000D2E9E9 /* EFQRCode in Frameworks */, - 5C56762A2AFF67AC00E58541 /* Marquee in Frameworks */, - 6BC8CB2C2A6D758000D2E9E9 /* SDWebImageWebPCoder in Frameworks */, - 6BC8CB302A6D758000D2E9E9 /* SDWebImagePDFCoder in Frameworks */, - 6B853FEA2A7509DC0067B55C /* ZipArchive in Frameworks */, - 6BC8CB342A6D758000D2E9E9 /* DarockKit in Frameworks */, - 6B37B4BD2A715EF900F26F1A /* SFSymbol in Frameworks */, - 8CA453822AE42A3E00138CE4 /* Dynamic in Frameworks */, - 5C56762D2AFF72E900E58541 /* SwiftDate in Frameworks */, - 6BC8CB2E2A6D758000D2E9E9 /* SDWebImageSVGCoder in Frameworks */, - 6BC8CB322A6D758000D2E9E9 /* SwiftSoup in Frameworks */, + B4468A942B4FC8B7002CCEB2 /* SDWebImageSwiftUI in Frameworks */, + B4468A9A2B4FC8B7002CCEB2 /* SDWebImagePDFCoder in Frameworks */, + B4468A6D2B4FC2C8002CCEB2 /* Alamofire in Frameworks */, + B4468A8C2B4FC85A002CCEB2 /* SwiftyJSON in Frameworks */, + B4468A982B4FC8B7002CCEB2 /* SDWebImageSVGCoder in Frameworks */, + B4468A702B4FC5E7002CCEB2 /* Marquee in Frameworks */, + B4468A9E2B4FC8B7002CCEB2 /* CachedAsyncImage in Frameworks */, + B4468A782B4FC60B002CCEB2 /* SFSymbol in Frameworks */, + B4468A732B4FC5F2002CCEB2 /* SwiftDate in Frameworks */, + B4468A922B4FC8B7002CCEB2 /* EFQRCode in Frameworks */, + B4468A8F2B4FC8AC002CCEB2 /* DarockKit in Frameworks */, + B4468A962B4FC8B7002CCEB2 /* SDWebImageWebPCoder in Frameworks */, + B4468AA02B4FC8B7002CCEB2 /* Dynamic in Frameworks */, + B4468A762B4FC602002CCEB2 /* SFSymbol in Frameworks */, + B4468A7B2B4FC618002CCEB2 /* ZipArchive in Frameworks */, + B4468A9C2B4FC8B7002CCEB2 /* SwiftSoup in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 5CD61C9C2AF52102002D2097 /* Offline */ = { + B44689C32B4FC15A002CCEB2 = { isa = PBXGroup; children = ( - 5CD61C9D2AF52144002D2097 /* OfflineMainView.swift */, + B44689D42B4FC15A002CCEB2 /* DarockBili Watch App */, + B44689CB2B4FC15A002CCEB2 /* Products */, + B4468A902B4FC8B7002CCEB2 /* Frameworks */, ); - path = Offline; sourceTree = ""; }; - 6B0064DE2A73D5EE0093A423 /* Live */ = { + B44689CB2B4FC15A002CCEB2 /* Products */ = { isa = PBXGroup; children = ( - 6B2469B32A73DA5A00291AC6 /* LivePlayerView.swift */, - ); - path = Live; - sourceTree = ""; - }; - 6B0253AD2A4EF59600567986 = { - isa = PBXGroup; - children = ( - 8CA4537E2AE408A700138CE4 /* README.md */, - 6BFF29032A6C0B3A00914A8E /* DarockBili */, - 6B0253BE2A4EF59600567986 /* DarockBili Watch App */, - 6BA20BC62A7185B100AAD0C7 /* DarockBili Watch App Unit Tests */, - 6BA20BD32A7185D300AAD0C7 /* DarockBili Watch App UI Tests */, - 6B0253B52A4EF59600567986 /* Products */, - 6BFF29962A6C0EC200914A8E /* Frameworks */, - ); - sourceTree = ""; - }; - 6B0253B52A4EF59600567986 /* Products */ = { - isa = PBXGroup; - children = ( - 6BFF29022A6C0B3A00914A8E /* DarockBili.app */, - 6BFF295C2A6C0D1C00914A8E /* DarockBili Watch App.app */, - 6BA20BC52A7185B100AAD0C7 /* DarockBili Watch App Unit Tests.xctest */, - 6BA20BD22A7185D300AAD0C7 /* DarockBili Watch App UI Tests.xctest */, + B44689CA2B4FC15A002CCEB2 /* DarockBili.app */, + B44689D02B4FC15A002CCEB2 /* 喵哩喵哩.app */, ); name = Products; sourceTree = ""; }; - 6B0253BE2A4EF59600567986 /* DarockBili Watch App */ = { + B44689D42B4FC15A002CCEB2 /* DarockBili Watch App */ = { isa = PBXGroup; children = ( - 6B21E4522A72DB9B0000C225 /* JSONReturnExamples */, - 6B4FC05C2A70172B00164A5B /* DarockBili-Bridging-Header.h */, - 6B56A9242A53CFC10089DD31 /* Localizable.xcstrings */, - 6B0253DB2A4F109700567986 /* DarockBili-Watch-App-Info.plist */, - 6B0253BF2A4EF59600567986 /* DarockBiliApp.swift */, - 6BC8CB152A6CEBDC00D2E9E9 /* Extension */, - 6B91C4A72A5597F60020259E /* InMain */, - 6B6790A12A52965900FAE216 /* PersonalCenter */, - 6B4AF9E42A72D6C50046817D /* UserDynamic */, - 6B6790A22A52968300FAE216 /* Video */, - 5CD61C9C2AF52102002D2097 /* Offline */, - 6B0064DE2A73D5EE0093A423 /* Live */, - 6B91C4A52A5597C20020259E /* Others */, - 6B91C4A62A5597E10020259E /* Errors */, - 6B0253C32A4EF59700567986 /* Assets.xcassets */, - 6B0253C52A4EF59700567986 /* Preview Content */, + B4C5E9562B4FD60600E2605B /* DarockBili-Watch-App-Info.plist */, + B4468A682B4FC2A4002CCEB2 /* Preview Content */, + B4468A662B4FC286002CCEB2 /* Assets.xcassets */, + B4468A042B4FC249002CCEB2 /* DarockBili-Bridging-Header.h */, + B44689FF2B4FC249002CCEB2 /* DarockBiliApp.swift */, + E2565AF12B52BF0F000E01ED /* Bangumi */, + B44689E72B4FC249002CCEB2 /* Errors */, + B44689F62B4FC249002CCEB2 /* Extension */, + B4468A002B4FC249002CCEB2 /* InMain */, + B4468A142B4FC24A002CCEB2 /* JSONReturnExamples */, + B44689FD2B4FC249002CCEB2 /* Live */, + B4468A082B4FC249002CCEB2 /* Localizable.xcstrings */, + B4468A092B4FC249002CCEB2 /* Offline */, + B4468A172B4FC24A002CCEB2 /* Others */, + B4468A262B4FC24A002CCEB2 /* PersonalCenter */, + B4468A122B4FC24A002CCEB2 /* Preview Content */, + B4468A052B4FC249002CCEB2 /* UserDynamic */, + B4468A0B2B4FC24A002CCEB2 /* Video */, + B44689DB2B4FC15B002CCEB2 /* Preview Content */, ); path = "DarockBili Watch App"; sourceTree = ""; }; - 6B0253C52A4EF59700567986 /* Preview Content */ = { + B44689DB2B4FC15B002CCEB2 /* Preview Content */ = { isa = PBXGroup; children = ( - 6B0253C62A4EF59700567986 /* Preview Assets.xcassets */, ); path = "Preview Content"; sourceTree = ""; }; - 6B21E4522A72DB9B0000C225 /* JSONReturnExamples */ = { + B44689E72B4FC249002CCEB2 /* Errors */ = { isa = PBXGroup; children = ( - 6B8858012A72DC2200DBEA21 /* Dynamic_Feed_All.json */, - 6BFC824A2A78F3CB00E1FD20 /* Search_With_UP_V2.json */, + B44689E82B4FC249002CCEB2 /* NetworkFixView.swift */, + B44689E92B4FC249002CCEB2 /* SignalErrorView.swift */, + B44689EA2B4FC249002CCEB2 /* MemoryWarningView.swift */, + B44689EB2B4FC249002CCEB2 /* Backtrace */, + B44689EF2B4FC249002CCEB2 /* FeedbackView.swift */, + B44689F02B4FC249002CCEB2 /* DarockFeedback */, + B44689F52B4FC249002CCEB2 /* ErrorGetView.swift */, ); - path = JSONReturnExamples; + path = Errors; sourceTree = ""; }; - 6B2D76492A610E9E00AA57DA /* Backtrace */ = { + B44689EB2B4FC249002CCEB2 /* Backtrace */ = { isa = PBXGroup; children = ( - 6B2D76472A610E7000AA57DA /* Backtrace.swift */, - 6B2D764A2A610EC800AA57DA /* backtrace.h */, - 6B2D764B2A610EC800AA57DA /* backtrace.c */, + B44689EC2B4FC249002CCEB2 /* backtrace.h */, + B44689ED2B4FC249002CCEB2 /* backtrace.c */, + B44689EE2B4FC249002CCEB2 /* Backtrace.swift */, ); path = Backtrace; sourceTree = ""; }; - 6B4AF9E42A72D6C50046817D /* UserDynamic */ = { + B44689F02B4FC249002CCEB2 /* DarockFeedback */ = { isa = PBXGroup; children = ( - 6B21E4502A72D7A00000C225 /* UserDynamicMainView.swift */, - 6B2BCA6F2A7412F9002195BB /* ImageViewerView.swift */, + B44689F12B4FC249002CCEB2 /* FeedbackLoginView.swift */, + B44689F22B4FC249002CCEB2 /* FeedbackEnterView.swift */, + B44689F32B4FC249002CCEB2 /* FeedbackMainView.swift */, + B44689F42B4FC249002CCEB2 /* FeedbackDetailsView.swift */, ); - path = UserDynamic; + path = DarockFeedback; sourceTree = ""; }; - 6B4FC0552A6FA44C00164A5B /* bMessage */ = { + B44689F62B4FC249002CCEB2 /* Extension */ = { isa = PBXGroup; children = ( - 6B4FC0562A6FA49B00164A5B /* bMessageSendView.swift */, + B44689F72B4FC249002CCEB2 /* CodeExt.swift */, + B44689F82B4FC249002CCEB2 /* AppFileManager.swift */, + B44689F92B4FC249002CCEB2 /* ColorThief */, + B44689FC2B4FC249002CCEB2 /* UIExt.swift */, ); - path = bMessage; + path = Extension; sourceTree = ""; }; - 6B4FC0582A70169800164A5B /* CCodes */ = { + B44689F92B4FC249002CCEB2 /* ColorThief */ = { isa = PBXGroup; children = ( - 6B4FC05B2A7016DF00164A5B /* CodingTime.h */, - 6B4FC0592A7016CE00164A5B /* CodingTime.m */, - 6B0A562B2A714DB300D0CC32 /* AVExtension.h */, - 6B37B4B62A714DDE00F26F1A /* AVExtension.m */, + B44689FA2B4FC249002CCEB2 /* ColorThief.swift */, + B44689FB2B4FC249002CCEB2 /* MMCQ.swift */, ); - path = CCodes; + path = ColorThief; sourceTree = ""; }; - 6B6790A12A52965900FAE216 /* PersonalCenter */ = { + B44689FD2B4FC249002CCEB2 /* Live */ = { isa = PBXGroup; children = ( - 6B4FC0552A6FA44C00164A5B /* bMessage */, - 6B0253E12A4F23DB00567986 /* PersonAccountView.swift */, - 6BBFF7BD2A50040E00DE050E /* FollowListView.swift */, - 6BBFF7BF2A50046C00DE050E /* UserDetailView.swift */, - 6BBFF7D52A5073FC00DE050E /* ArticleView.swift */, - 6B56A9002A53B8D30089DD31 /* DownloadsView.swift */, - 6B6790A32A5296FB00FAE216 /* HistoryView.swift */, - 6B56A8FE2A53A9F80089DD31 /* FavoriteView.swift */, - 6B56A9262A53E6850089DD31 /* WatchLaterView.swift */, + B44689FE2B4FC249002CCEB2 /* LivePlayerView.swift */, + E2565AFA2B52C114000E01ED /* LiveDetailView.swift */, ); - path = PersonalCenter; + path = Live; sourceTree = ""; }; - 6B6790A22A52968300FAE216 /* Video */ = { + B4468A002B4FC249002CCEB2 /* InMain */ = { isa = PBXGroup; children = ( - 6B0253DC2A4F155800567986 /* VideoDetailView.swift */, - 6B0253DE2A4F1DCF00567986 /* VideoPlayerView.swift */, - 6BC8CB3F2A6D7F6F00D2E9E9 /* AudioPlayerView.swift */, - 6BBFA2BD2A51236900FE61D1 /* VideoCommentsView.swift */, - 6B56A9022A53B9770089DD31 /* VideoDownloadView.swift */, - 6BF45C272A760C2C006E7A34 /* LyricerView.swift */, + B4468A012B4FC249002CCEB2 /* SearchView.swift */, + B4468A022B4FC249002CCEB2 /* MainView.swift */, + B4468A032B4FC249002CCEB2 /* ContentView.swift */, ); - path = Video; + path = InMain; sourceTree = ""; }; - 6B8C2AFB2A601990001FEC85 /* DarockFeedback */ = { + B4468A052B4FC249002CCEB2 /* UserDynamic */ = { isa = PBXGroup; children = ( - 6B8C2AFE2A601E36001FEC85 /* FeedbackEnterView.swift */, - 6B8C2AFC2A6019B6001FEC85 /* FeedbackLoginView.swift */, - 6B8C2B002A601E57001FEC85 /* FeedbackMainView.swift */, - 6B8C2B022A6020F2001FEC85 /* FeedbackDetailsView.swift */, + B4468A062B4FC249002CCEB2 /* ImageViewerView.swift */, + B4468A072B4FC249002CCEB2 /* UserDynamicMainView.swift */, ); - path = DarockFeedback; + path = UserDynamic; sourceTree = ""; }; - 6B91C4A52A5597C20020259E /* Others */ = { + B4468A092B4FC249002CCEB2 /* Offline */ = { isa = PBXGroup; children = ( - 6BEB13812A74D88D00422FC9 /* Skins */, - 6B4FC0582A70169800164A5B /* CCodes */, - 6B0253E32A4F265100567986 /* LoginView.swift */, - 6BBFA2C42A515D8B00FE61D1 /* FirstUsingView.swift */, - 6B91C4A82A5598260020259E /* SettingsView.swift */, - 6BBFA2C22A512CF500FE61D1 /* AboutView.swift */, - 6BBFA32C2A51C39F00FE61D1 /* NoticeView.swift */, + B4468A0A2B4FC249002CCEB2 /* OfflineMainView.swift */, ); - path = Others; + path = Offline; sourceTree = ""; }; - 6B91C4A62A5597E10020259E /* Errors */ = { + B4468A0B2B4FC24A002CCEB2 /* Video */ = { isa = PBXGroup; children = ( - 6B2D76492A610E9E00AA57DA /* Backtrace */, - 6B8C2AFB2A601990001FEC85 /* DarockFeedback */, - 6B91C4AC2A55A40D0020259E /* FeedbackView.swift */, - 6BA3F5692A543B3A0016BD8D /* ErrorGetView.swift */, - 6BF6B5CE2A544A1F004A31BC /* NetworkFixView.swift */, - 6B2D764D2A61154300AA57DA /* SignalErrorView.swift */, - 6B9943852A6E257100E2F5D5 /* MemoryWarningView.swift */, + B4468A0C2B4FC24A002CCEB2 /* VideoPlayerView.swift */, + B4468A0D2B4FC24A002CCEB2 /* LyricerView.swift */, + B4468A0E2B4FC24A002CCEB2 /* VideoDownloadView.swift */, + B4468A0F2B4FC24A002CCEB2 /* VideoCommentsView.swift */, + B4468A102B4FC24A002CCEB2 /* VideoDetailView.swift */, + B4468A112B4FC24A002CCEB2 /* AudioPlayerView.swift */, ); - path = Errors; + path = Video; sourceTree = ""; }; - 6B91C4A72A5597F60020259E /* InMain */ = { + B4468A122B4FC24A002CCEB2 /* Preview Content */ = { isa = PBXGroup; children = ( - 6B0253C12A4EF59600567986 /* ContentView.swift */, - 6B0253D42A4EF64C00567986 /* MainView.swift */, - 6BBFF7D02A50411400DE050E /* SearchView.swift */, + B4468A132B4FC24A002CCEB2 /* Preview Assets.xcassets */, ); - path = InMain; + path = "Preview Content"; sourceTree = ""; }; - 6BA20BC62A7185B100AAD0C7 /* DarockBili Watch App Unit Tests */ = { + B4468A142B4FC24A002CCEB2 /* JSONReturnExamples */ = { isa = PBXGroup; children = ( - 6B2B62312A7187E70051B879 /* WatchAppUnitTestPlan.xctestplan */, - 6BA20BC72A7185B100AAD0C7 /* DarockBili_Watch_App_Unit_Tests.swift */, + B4468A152B4FC24A002CCEB2 /* Dynamic_Feed_All.json */, + B4468A162B4FC24A002CCEB2 /* Search_With_UP_V2.json */, ); - path = "DarockBili Watch App Unit Tests"; + path = JSONReturnExamples; sourceTree = ""; }; - 6BA20BD32A7185D300AAD0C7 /* DarockBili Watch App UI Tests */ = { + B4468A172B4FC24A002CCEB2 /* Others */ = { isa = PBXGroup; children = ( - 6B2B622F2A7187CC0051B879 /* WatchAppUITestPlan.xctestplan */, - 6BA20BD42A7185D300AAD0C7 /* DarockBili_Watch_App_UI_Tests.swift */, - 6BA20BD62A7185D300AAD0C7 /* DarockBili_Watch_App_UI_TestsLaunchTests.swift */, + B4468A182B4FC24A002CCEB2 /* AboutView.swift */, + B4468A192B4FC24A002CCEB2 /* FirstUsingView.swift */, + B4468A1A2B4FC24A002CCEB2 /* SettingsView.swift */, + B4468A1B2B4FC24A002CCEB2 /* LoginView.swift */, + B4468A1C2B4FC24A002CCEB2 /* Skins */, + B4468A202B4FC24A002CCEB2 /* NoticeView.swift */, + B4468A212B4FC24A002CCEB2 /* CCodes */, ); - path = "DarockBili Watch App UI Tests"; + path = Others; sourceTree = ""; }; - 6BC8CB152A6CEBDC00D2E9E9 /* Extension */ = { + B4468A1C2B4FC24A002CCEB2 /* Skins */ = { isa = PBXGroup; children = ( - 6BC8CB182A6CEC5F00D2E9E9 /* ColorThief */, - 6B56A9042A53BD330089DD31 /* AppFileManager.swift */, - 6BE4AA792A56798600F18565 /* CodeExt.swift */, - 6B2773C02A599FE300950EB7 /* UIExt.swift */, + B4468A1D2B4FC24A002CCEB2 /* SkinChooserView.swift */, + B4468A1E2B4FC24A002CCEB2 /* SkinExplorerView.swift */, + B4468A1F2B4FC24A002CCEB2 /* SkinDownloadView.swift */, ); - path = Extension; + path = Skins; sourceTree = ""; }; - 6BC8CB182A6CEC5F00D2E9E9 /* ColorThief */ = { + B4468A212B4FC24A002CCEB2 /* CCodes */ = { isa = PBXGroup; children = ( - 6BC8CB192A6CEC7400D2E9E9 /* ColorThief.swift */, - 6BC8CB1B2A6CEC8400D2E9E9 /* MMCQ.swift */, + B4468A222B4FC24A002CCEB2 /* AVExtension.h */, + B4468A232B4FC24A002CCEB2 /* CodingTime.h */, + B4468A242B4FC24A002CCEB2 /* AVExtension.m */, + B4468A252B4FC24A002CCEB2 /* CodingTime.m */, ); - path = ColorThief; + path = CCodes; sourceTree = ""; }; - 6BEB13812A74D88D00422FC9 /* Skins */ = { + B4468A262B4FC24A002CCEB2 /* PersonalCenter */ = { isa = PBXGroup; children = ( - 6B853FEB2A750BD70067B55C /* SkinExplorerView.swift */, - 6B853FE42A74D9C10067B55C /* SkinChooserView.swift */, - 6B853FE62A7507CD0067B55C /* SkinDownloadView.swift */, + B4468A272B4FC24A002CCEB2 /* DownloadsView.swift */, + B4468A282B4FC24A002CCEB2 /* bMessage */, + B4468A2A2B4FC24A002CCEB2 /* PersonAccountView.swift */, + B4468A2B2B4FC24A002CCEB2 /* FavoriteView.swift */, + B4468A2C2B4FC24A002CCEB2 /* FollowListView.swift */, + B4468A2D2B4FC24A002CCEB2 /* ArticleView.swift */, + B4468A2E2B4FC24A002CCEB2 /* UserDetailView.swift */, + B4468A2F2B4FC24A002CCEB2 /* HistoryView.swift */, + B4468A302B4FC24A002CCEB2 /* WatchLaterView.swift */, ); - path = Skins; + path = PersonalCenter; sourceTree = ""; }; - 6BFF29032A6C0B3A00914A8E /* DarockBili */ = { + B4468A282B4FC24A002CCEB2 /* bMessage */ = { isa = PBXGroup; children = ( - 6BFF29A72A6C25FC00914A8E /* Info.plist */, - 6BFF29042A6C0B3A00914A8E /* DarockBiliApp.swift */, - 6BFF29062A6C0B3A00914A8E /* ContentView.swift */, - 6BFF29082A6C0B3F00914A8E /* Assets.xcassets */, - 6BFF290A2A6C0B3F00914A8E /* Preview Content */, + B4468A292B4FC24A002CCEB2 /* bMessageSendView.swift */, ); - path = DarockBili; + path = bMessage; sourceTree = ""; }; - 6BFF290A2A6C0B3F00914A8E /* Preview Content */ = { + B4468A682B4FC2A4002CCEB2 /* Preview Content */ = { isa = PBXGroup; children = ( - 6BFF290B2A6C0B3F00914A8E /* Preview Assets.xcassets */, + B4468A692B4FC2A4002CCEB2 /* Preview Assets.xcassets */, ); path = "Preview Content"; sourceTree = ""; }; - 6BFF29962A6C0EC200914A8E /* Frameworks */ = { + B4468A902B4FC8B7002CCEB2 /* Frameworks */ = { isa = PBXGroup; children = ( ); name = Frameworks; sourceTree = ""; }; + E2565AF12B52BF0F000E01ED /* Bangumi */ = { + isa = PBXGroup; + children = ( + E2565AF22B52BFDF000E01ED /* BangumiDetailView.swift */, + E2565AF42B52C017000E01ED /* BangumiDownloadView.swift */, + E2565AF62B52C06D000E01ED /* BangumiCommentsView.swift */, + E2565AF82B52C076000E01ED /* BangumiPlayerView.swift */, + ); + path = Bangumi; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - 6BA20BC42A7185B100AAD0C7 /* DarockBili Watch App Unit Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6BA20BCB2A7185B100AAD0C7 /* Build configuration list for PBXNativeTarget "DarockBili Watch App Unit Tests" */; - buildPhases = ( - 6BA20BC12A7185B100AAD0C7 /* Sources */, - 6BA20BC22A7185B100AAD0C7 /* Frameworks */, - 6BA20BC32A7185B100AAD0C7 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 6BA20BCA2A7185B100AAD0C7 /* PBXTargetDependency */, - ); - name = "DarockBili Watch App Unit Tests"; - productName = "DarockBili Watch App Unit Tests"; - productReference = 6BA20BC52A7185B100AAD0C7 /* DarockBili Watch App Unit Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; - 6BA20BD12A7185D300AAD0C7 /* DarockBili Watch App UI Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6BA20BDA2A7185D300AAD0C7 /* Build configuration list for PBXNativeTarget "DarockBili Watch App UI Tests" */; - buildPhases = ( - 6BA20BCE2A7185D300AAD0C7 /* Sources */, - 6BA20BCF2A7185D300AAD0C7 /* Frameworks */, - 6BA20BD02A7185D300AAD0C7 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 6BA20BD92A7185D300AAD0C7 /* PBXTargetDependency */, - ); - name = "DarockBili Watch App UI Tests"; - productName = "DarockBili Watch App UI Tests"; - productReference = 6BA20BD22A7185D300AAD0C7 /* DarockBili Watch App UI Tests.xctest */; - productType = "com.apple.product-type.bundle.ui-testing"; - }; - 6BFF29012A6C0B3A00914A8E /* DarockBili */ = { + B44689C92B4FC15A002CCEB2 /* DarockBili */ = { isa = PBXNativeTarget; - buildConfigurationList = 6BFF290D2A6C0B3F00914A8E /* Build configuration list for PBXNativeTarget "DarockBili" */; + buildConfigurationList = B44689E42B4FC15B002CCEB2 /* Build configuration list for PBXNativeTarget "DarockBili" */; buildPhases = ( - 6BFF28FE2A6C0B3A00914A8E /* Sources */, - 6BFF28FF2A6C0B3A00914A8E /* Frameworks */, - 6BFF29002A6C0B3A00914A8E /* Resources */, - 6BFF296D2A6C0D2100914A8E /* Embed Watch Content */, + B44689C82B4FC15A002CCEB2 /* Resources */, + B44689E32B4FC15B002CCEB2 /* Embed Watch Content */, ); buildRules = ( ); dependencies = ( - 6BFF29682A6C0D2100914A8E /* PBXTargetDependency */, + B44689D32B4FC15A002CCEB2 /* PBXTargetDependency */, ); name = DarockBili; - packageProductDependencies = ( - 6BFF29A52A6C10EB00914A8E /* DarockKit */, - ); productName = DarockBili; - productReference = 6BFF29022A6C0B3A00914A8E /* DarockBili.app */; - productType = "com.apple.product-type.application"; + productReference = B44689CA2B4FC15A002CCEB2 /* DarockBili.app */; + productType = "com.apple.product-type.application.watchapp2-container"; }; - 6BFF295B2A6C0D1C00914A8E /* DarockBili Watch App */ = { + B44689CF2B4FC15A002CCEB2 /* DarockBili Watch App */ = { isa = PBXNativeTarget; - buildConfigurationList = 6BFF296A2A6C0D2100914A8E /* Build configuration list for PBXNativeTarget "DarockBili Watch App" */; + buildConfigurationList = B44689E02B4FC15B002CCEB2 /* Build configuration list for PBXNativeTarget "DarockBili Watch App" */; buildPhases = ( - 6BFF29582A6C0D1C00914A8E /* Sources */, - 6BFF29592A6C0D1C00914A8E /* Frameworks */, - 6BFF295A2A6C0D1C00914A8E /* Resources */, + B44689CC2B4FC15A002CCEB2 /* Sources */, + B44689CD2B4FC15A002CCEB2 /* Frameworks */, + B44689CE2B4FC15A002CCEB2 /* Resources */, ); buildRules = ( ); @@ -594,51 +498,46 @@ ); name = "DarockBili Watch App"; packageProductDependencies = ( - 6BC8CB272A6D758000D2E9E9 /* EFQRCode */, - 6BC8CB292A6D758000D2E9E9 /* SDWebImageSwiftUI */, - 6BC8CB2B2A6D758000D2E9E9 /* SDWebImageWebPCoder */, - 6BC8CB2D2A6D758000D2E9E9 /* SDWebImageSVGCoder */, - 6BC8CB2F2A6D758000D2E9E9 /* SDWebImagePDFCoder */, - 6BC8CB312A6D758000D2E9E9 /* SwiftSoup */, - 6BC8CB332A6D758000D2E9E9 /* DarockKit */, - 6BC8CB352A6D758000D2E9E9 /* CachedAsyncImage */, - 6B37B4BC2A715EF900F26F1A /* SFSymbol */, - 6B853FE92A7509DC0067B55C /* ZipArchive */, - 8CA453812AE42A3E00138CE4 /* Dynamic */, - 5C5676292AFF67AC00E58541 /* Marquee */, - 5C56762C2AFF72E900E58541 /* SwiftDate */, + B4468A6C2B4FC2C8002CCEB2 /* Alamofire */, + B4468A6F2B4FC5E7002CCEB2 /* Marquee */, + B4468A722B4FC5F1002CCEB2 /* SwiftDate */, + B4468A752B4FC602002CCEB2 /* SFSymbol */, + B4468A772B4FC60B002CCEB2 /* SFSymbol */, + B4468A7A2B4FC618002CCEB2 /* ZipArchive */, + B4468A8B2B4FC85A002CCEB2 /* SwiftyJSON */, + B4468A8E2B4FC8AC002CCEB2 /* DarockKit */, + B4468A912B4FC8B7002CCEB2 /* EFQRCode */, + B4468A932B4FC8B7002CCEB2 /* SDWebImageSwiftUI */, + B4468A952B4FC8B7002CCEB2 /* SDWebImageWebPCoder */, + B4468A972B4FC8B7002CCEB2 /* SDWebImageSVGCoder */, + B4468A992B4FC8B7002CCEB2 /* SDWebImagePDFCoder */, + B4468A9B2B4FC8B7002CCEB2 /* SwiftSoup */, + B4468A9D2B4FC8B7002CCEB2 /* CachedAsyncImage */, + B4468A9F2B4FC8B7002CCEB2 /* Dynamic */, ); - productName = "DarockBili WatchKit App Watch App"; - productReference = 6BFF295C2A6C0D1C00914A8E /* DarockBili Watch App.app */; + productName = "DarockBili Watch App"; + productReference = B44689D02B4FC15A002CCEB2 /* 喵哩喵哩.app */; productType = "com.apple.product-type.application"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 6B0253AE2A4EF59600567986 /* Project object */ = { + B44689C42B4FC15A002CCEB2 /* Project object */ = { isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = 1; - LastSwiftUpdateCheck = 1500; - LastUpgradeCheck = 1500; + LastSwiftUpdateCheck = 1520; + LastUpgradeCheck = 1520; TargetAttributes = { - 6BA20BC42A7185B100AAD0C7 = { - CreatedOnToolsVersion = 15.0; - TestTargetID = 6BFF295B2A6C0D1C00914A8E; - }; - 6BA20BD12A7185D300AAD0C7 = { - CreatedOnToolsVersion = 15.0; - TestTargetID = 6BFF295B2A6C0D1C00914A8E; - }; - 6BFF29012A6C0B3A00914A8E = { - CreatedOnToolsVersion = 15.0; + B44689C92B4FC15A002CCEB2 = { + CreatedOnToolsVersion = 15.2; }; - 6BFF295B2A6C0D1C00914A8E = { - CreatedOnToolsVersion = 15.0; + B44689CF2B4FC15A002CCEB2 = { + CreatedOnToolsVersion = 15.2; }; }; }; - buildConfigurationList = 6B0253B12A4EF59600567986 /* Build configuration list for PBXProject "DarockBili" */; + buildConfigurationList = B44689C72B4FC15A002CCEB2 /* Build configuration list for PBXProject "DarockBili" */; compatibilityVersion = "Xcode 14.0"; developmentRegion = "zh-Hans"; hasScannedForEncodings = 0; @@ -647,178 +546,131 @@ Base, "zh-Hans", ); - mainGroup = 6B0253AD2A4EF59600567986; + mainGroup = B44689C32B4FC15A002CCEB2; packageReferences = ( - 6BBFF7BA2A4FF18100DE050E /* XCRemoteSwiftPackageReference "EFQRCode" */, - 6BBFF7C12A5012B800DE050E /* XCRemoteSwiftPackageReference "SDWebImageSwiftUI" */, - 6BBFF7C42A5012DB00DE050E /* XCRemoteSwiftPackageReference "SDWebImageWebPCoder" */, - 6BBFF7C72A5012EC00DE050E /* XCRemoteSwiftPackageReference "SDWebImageSVGCoder" */, - 6BBFF7CA2A5012FF00DE050E /* XCRemoteSwiftPackageReference "SDWebImagePDFCoder" */, - 6BBFF7D22A50737C00DE050E /* XCRemoteSwiftPackageReference "SwiftSoup" */, - 6BA1E5492A6AF2A900293B2C /* XCRemoteSwiftPackageReference "DarockKit" */, - 6BC8CB1D2A6CF48400D2E9E9 /* XCRemoteSwiftPackageReference "swiftui-cached-async-image" */, - 6B37B4BB2A715EF800F26F1A /* XCRemoteSwiftPackageReference "SFSymbol" */, - 6B853FE82A7509DC0067B55C /* XCRemoteSwiftPackageReference "ZipArchive" */, - 8CA453802AE42A3E00138CE4 /* XCRemoteSwiftPackageReference "Dynamic" */, - 5C5676282AFF67AC00E58541 /* XCRemoteSwiftPackageReference "Marquee" */, - 5C56762B2AFF72E900E58541 /* XCRemoteSwiftPackageReference "SwiftDate" */, + B4468A6B2B4FC2C8002CCEB2 /* XCRemoteSwiftPackageReference "Alamofire" */, + B4468A6E2B4FC5E7002CCEB2 /* XCRemoteSwiftPackageReference "Marquee" */, + B4468A712B4FC5F1002CCEB2 /* XCRemoteSwiftPackageReference "SwiftDate" */, + B4468A742B4FC602002CCEB2 /* XCRemoteSwiftPackageReference "SFSymbol" */, + B4468A792B4FC618002CCEB2 /* XCRemoteSwiftPackageReference "ZipArchive" */, + B4468A7E2B4FC675002CCEB2 /* XCRemoteSwiftPackageReference "EFQRCode" */, + B4468A7F2B4FC681002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageSwiftUI" */, + B4468A802B4FC68C002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageWebPCoder" */, + B4468A812B4FC697002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageSVGCoder" */, + B4468A822B4FC6A1002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImagePDFCoder" */, + B4468A832B4FC6B1002CCEB2 /* XCRemoteSwiftPackageReference "SwiftSoup" */, + B4468A842B4FC6BE002CCEB2 /* XCRemoteSwiftPackageReference "swiftui-cached-async-image" */, + B4468A852B4FC6C6002CCEB2 /* XCRemoteSwiftPackageReference "Dynamic" */, + B4468A8A2B4FC85A002CCEB2 /* XCRemoteSwiftPackageReference "SwiftyJSON" */, + B4468A8D2B4FC8AC002CCEB2 /* XCRemoteSwiftPackageReference "DarockKit" */, ); - productRefGroup = 6B0253B52A4EF59600567986 /* Products */; + productRefGroup = B44689CB2B4FC15A002CCEB2 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - 6BFF29012A6C0B3A00914A8E /* DarockBili */, - 6BFF295B2A6C0D1C00914A8E /* DarockBili Watch App */, - 6BA20BC42A7185B100AAD0C7 /* DarockBili Watch App Unit Tests */, - 6BA20BD12A7185D300AAD0C7 /* DarockBili Watch App UI Tests */, + B44689C92B4FC15A002CCEB2 /* DarockBili */, + B44689CF2B4FC15A002CCEB2 /* DarockBili Watch App */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 6BA20BC32A7185B100AAD0C7 /* Resources */ = { + B44689C82B4FC15A002CCEB2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6B2B62322A7187E70051B879 /* WatchAppUnitTestPlan.xctestplan in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6BA20BD02A7185D300AAD0C7 /* Resources */ = { + B44689CE2B4FC15A002CCEB2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6B2B62302A7187CC0051B879 /* WatchAppUITestPlan.xctestplan in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BFF29002A6C0B3A00914A8E /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8CA4537F2AE408A700138CE4 /* README.md in Resources */, - 6BFF290C2A6C0B3F00914A8E /* Preview Assets.xcassets in Resources */, - 6BFF29092A6C0B3F00914A8E /* Assets.xcassets in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BFF295A2A6C0D1C00914A8E /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6BFF29722A6C0DE500914A8E /* DarockBili-Watch-App-Info.plist in Resources */, - 6BFF29952A6C0E2200914A8E /* Preview Assets.xcassets in Resources */, - 6BFF29902A6C0E1D00914A8E /* Assets.xcassets in Resources */, + B4468A522B4FC24A002CCEB2 /* Search_With_UP_V2.json in Resources */, + B4468A502B4FC24A002CCEB2 /* Preview Assets.xcassets in Resources */, + B4468A482B4FC24A002CCEB2 /* Localizable.xcstrings in Resources */, + B4468A672B4FC286002CCEB2 /* Assets.xcassets in Resources */, + B4468A6A2B4FC2A4002CCEB2 /* Preview Assets.xcassets in Resources */, + B4468A512B4FC24A002CCEB2 /* Dynamic_Feed_All.json in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 6BA20BC12A7185B100AAD0C7 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6BA20BC82A7185B100AAD0C7 /* DarockBili_Watch_App_Unit_Tests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BA20BCE2A7185D300AAD0C7 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6BA20BD72A7185D300AAD0C7 /* DarockBili_Watch_App_UI_TestsLaunchTests.swift in Sources */, - 6BA20BD52A7185D300AAD0C7 /* DarockBili_Watch_App_UI_Tests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BFF28FE2A6C0B3A00914A8E /* Sources */ = { + B44689CC2B4FC15A002CCEB2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6BFF29072A6C0B3A00914A8E /* ContentView.swift in Sources */, - 6BFF29052A6C0B3A00914A8E /* DarockBiliApp.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6BFF29582A6C0D1C00914A8E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6B4FC0572A6FA49B00164A5B /* bMessageSendView.swift in Sources */, - 6BFF29882A6C0DFF00914A8E /* NoticeView.swift in Sources */, - 6BFF29852A6C0DFF00914A8E /* SettingsView.swift in Sources */, - 6B37B4B72A714DDE00F26F1A /* AVExtension.m in Sources */, - 6BFF29732A6C0DE600914A8E /* CodeExt.swift in Sources */, - 6BFF29832A6C0DFC00914A8E /* VideoDetailView.swift in Sources */, - 6BFF29782A6C0DF900914A8E /* FollowListView.swift in Sources */, - 6B853FEC2A750BD80067B55C /* SkinExplorerView.swift in Sources */, - 6BFF29942A6C0E1D00914A8E /* SignalErrorView.swift in Sources */, - 6BC8CB1C2A6CEC8400D2E9E9 /* MMCQ.swift in Sources */, - 6BFF29822A6C0DFC00914A8E /* VideoDownloadView.swift in Sources */, - 6B2469B42A73DA5A00291AC6 /* LivePlayerView.swift in Sources */, - 6BFF297D2A6C0DF900914A8E /* PersonAccountView.swift in Sources */, - 6BFF29762A6C0DF500914A8E /* MainView.swift in Sources */, - 6BFF298A2A6C0E0B00914A8E /* Backtrace.swift in Sources */, - 6BC8CB1A2A6CEC7400D2E9E9 /* ColorThief.swift in Sources */, - 6BFF297E2A6C0DF900914A8E /* UserDetailView.swift in Sources */, - 6BF45C282A760C2C006E7A34 /* LyricerView.swift in Sources */, - 6BFF298C2A6C0E1D00914A8E /* FeedbackMainView.swift in Sources */, - 6BFF29862A6C0DFF00914A8E /* LoginView.swift in Sources */, - 6BFF29752A6C0DF500914A8E /* ContentView.swift in Sources */, - 6BFF297C2A6C0DF900914A8E /* DownloadsView.swift in Sources */, - 6B4FC05A2A7016CE00164A5B /* CodingTime.m in Sources */, - 6B853FE72A7507CD0067B55C /* SkinDownloadView.swift in Sources */, - 6BFF297F2A6C0DF900914A8E /* ArticleView.swift in Sources */, - 6BFF298E2A6C0E1D00914A8E /* NetworkFixView.swift in Sources */, - 6BFF29912A6C0E1D00914A8E /* FeedbackEnterView.swift in Sources */, - 6BFF29772A6C0DF500914A8E /* SearchView.swift in Sources */, - 6BFF29712A6C0DE500914A8E /* DarockBiliApp.swift in Sources */, - 6BFF29932A6C0E1D00914A8E /* FeedbackLoginView.swift in Sources */, - 6BFF296E2A6C0DE500914A8E /* AppFileManager.swift in Sources */, - 6B2BCA702A7412F9002195BB /* ImageViewerView.swift in Sources */, - 6BFF29922A6C0E1D00914A8E /* FeedbackDetailsView.swift in Sources */, - 6BFF29792A6C0DF900914A8E /* HistoryView.swift in Sources */, - 6BFF298B2A6C0E1900914A8E /* backtrace.c in Sources */, - 6BFF29842A6C0DFC00914A8E /* VideoCommentsView.swift in Sources */, - 6BFF29892A6C0DFF00914A8E /* AboutView.swift in Sources */, - 6BC8CB402A6D7F6F00D2E9E9 /* AudioPlayerView.swift in Sources */, - 6BFF29872A6C0DFF00914A8E /* FirstUsingView.swift in Sources */, - 6B21E4512A72D7A10000C225 /* UserDynamicMainView.swift in Sources */, - 6BFF297A2A6C0DF900914A8E /* FavoriteView.swift in Sources */, - 6BFF298D2A6C0E1D00914A8E /* ErrorGetView.swift in Sources */, - 6B9943862A6E257100E2F5D5 /* MemoryWarningView.swift in Sources */, - 6B853FE52A74D9C20067B55C /* SkinChooserView.swift in Sources */, - 6BFF297B2A6C0DF900914A8E /* WatchLaterView.swift in Sources */, - 6BFF296F2A6C0DE500914A8E /* UIExt.swift in Sources */, - 6BFF298F2A6C0E1D00914A8E /* FeedbackView.swift in Sources */, - 6BFF29802A6C0DFC00914A8E /* VideoPlayerView.swift in Sources */, - 5CD61C9E2AF52144002D2097 /* OfflineMainView.swift in Sources */, + B4468A552B4FC24A002CCEB2 /* SettingsView.swift in Sources */, + E2565AFB2B52C114000E01ED /* LiveDetailView.swift in Sources */, + E2565AF92B52C076000E01ED /* BangumiPlayerView.swift in Sources */, + B4468A592B4FC24A002CCEB2 /* SkinDownloadView.swift in Sources */, + B4468A462B4FC24A002CCEB2 /* ImageViewerView.swift in Sources */, + B4468A5B2B4FC24A002CCEB2 /* AVExtension.m in Sources */, + E2565AF72B52C06D000E01ED /* BangumiCommentsView.swift in Sources */, + B4468A412B4FC24A002CCEB2 /* LivePlayerView.swift in Sources */, + E2565AF32B52BFDF000E01ED /* BangumiDetailView.swift in Sources */, + B4468A342B4FC24A002CCEB2 /* backtrace.c in Sources */, + B4468A372B4FC24A002CCEB2 /* FeedbackLoginView.swift in Sources */, + B4468A642B4FC24A002CCEB2 /* HistoryView.swift in Sources */, + B4468A3A2B4FC24A002CCEB2 /* FeedbackDetailsView.swift in Sources */, + B4468A472B4FC24A002CCEB2 /* UserDynamicMainView.swift in Sources */, + B4468A5A2B4FC24A002CCEB2 /* NoticeView.swift in Sources */, + B4468A612B4FC24A002CCEB2 /* FollowListView.swift in Sources */, + B4468A542B4FC24A002CCEB2 /* FirstUsingView.swift in Sources */, + B4468A4C2B4FC24A002CCEB2 /* VideoDownloadView.swift in Sources */, + B4468A402B4FC24A002CCEB2 /* UIExt.swift in Sources */, + B4468A382B4FC24A002CCEB2 /* FeedbackEnterView.swift in Sources */, + B4468A312B4FC24A002CCEB2 /* NetworkFixView.swift in Sources */, + B4468A4F2B4FC24A002CCEB2 /* AudioPlayerView.swift in Sources */, + B4468A442B4FC24A002CCEB2 /* MainView.swift in Sources */, + B4468A5F2B4FC24A002CCEB2 /* PersonAccountView.swift in Sources */, + B4468A5E2B4FC24A002CCEB2 /* bMessageSendView.swift in Sources */, + B4468A422B4FC24A002CCEB2 /* DarockBiliApp.swift in Sources */, + B4468A572B4FC24A002CCEB2 /* SkinChooserView.swift in Sources */, + B4468A582B4FC24A002CCEB2 /* SkinExplorerView.swift in Sources */, + B4468A602B4FC24A002CCEB2 /* FavoriteView.swift in Sources */, + B4468A532B4FC24A002CCEB2 /* AboutView.swift in Sources */, + B4468A632B4FC24A002CCEB2 /* UserDetailView.swift in Sources */, + B4468A492B4FC24A002CCEB2 /* OfflineMainView.swift in Sources */, + B4468A4D2B4FC24A002CCEB2 /* VideoCommentsView.swift in Sources */, + B4468A3C2B4FC24A002CCEB2 /* CodeExt.swift in Sources */, + B4468A432B4FC24A002CCEB2 /* SearchView.swift in Sources */, + B4468A5C2B4FC24A002CCEB2 /* CodingTime.m in Sources */, + B4468A4E2B4FC24A002CCEB2 /* VideoDetailView.swift in Sources */, + B4468A352B4FC24A002CCEB2 /* Backtrace.swift in Sources */, + B4468A362B4FC24A002CCEB2 /* FeedbackView.swift in Sources */, + B4468A3E2B4FC24A002CCEB2 /* ColorThief.swift in Sources */, + B4468A652B4FC24A002CCEB2 /* WatchLaterView.swift in Sources */, + B4468A332B4FC24A002CCEB2 /* MemoryWarningView.swift in Sources */, + B4468A452B4FC24A002CCEB2 /* ContentView.swift in Sources */, + B4468A322B4FC24A002CCEB2 /* SignalErrorView.swift in Sources */, + B4468A3B2B4FC24A002CCEB2 /* ErrorGetView.swift in Sources */, + B4468A562B4FC24A002CCEB2 /* LoginView.swift in Sources */, + E2565AF52B52C017000E01ED /* BangumiDownloadView.swift in Sources */, + B4468A4A2B4FC24A002CCEB2 /* VideoPlayerView.swift in Sources */, + B4468A3D2B4FC24A002CCEB2 /* AppFileManager.swift in Sources */, + B4468A622B4FC24A002CCEB2 /* ArticleView.swift in Sources */, + B4468A4B2B4FC24A002CCEB2 /* LyricerView.swift in Sources */, + B4468A392B4FC24A002CCEB2 /* FeedbackMainView.swift in Sources */, + B4468A3F2B4FC24A002CCEB2 /* MMCQ.swift in Sources */, + B4468A5D2B4FC24A002CCEB2 /* DownloadsView.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 6BA20BCA2A7185B100AAD0C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 6BFF295B2A6C0D1C00914A8E /* DarockBili Watch App */; - targetProxy = 6BA20BC92A7185B100AAD0C7 /* PBXContainerItemProxy */; - }; - 6BA20BD92A7185D300AAD0C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = 6BFF295B2A6C0D1C00914A8E /* DarockBili Watch App */; - targetProxy = 6BA20BD82A7185D300AAD0C7 /* PBXContainerItemProxy */; - }; - 6BFF29682A6C0D2100914A8E /* PBXTargetDependency */ = { + B44689D32B4FC15A002CCEB2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = 6BFF295B2A6C0D1C00914A8E /* DarockBili Watch App */; - targetProxy = 6BFF29672A6C0D2100914A8E /* PBXContainerItemProxy */; + target = B44689CF2B4FC15A002CCEB2 /* DarockBili Watch App */; + targetProxy = B44689D22B4FC15A002CCEB2 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 6B0253C82A4EF59700567986 /* Debug */ = { + B44689DE2B4FC15B002CCEB2 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -876,10 +728,11 @@ ONLY_ACTIVE_ARCH = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + WATCHOS_DEPLOYMENT_TARGET = 9.0; }; name = Debug; }; - 6B0253C92A4EF59700567986 /* Release */ = { + B44689DF2B4FC15B002CCEB2 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -929,283 +782,132 @@ MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SWIFT_COMPILATION_MODE = wholemodule; + WATCHOS_DEPLOYMENT_TARGET = 9.0; }; name = Release; }; - 6BA20BCC2A7185B100AAD0C7 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 180; - DEVELOPMENT_TEAM = B57D8PP775; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = "com.darock.DarockBili-Watch-App-Unit-Tests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = watchos; - SWIFT_EMIT_LOC_STRINGS = NO; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 4; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DarockBili Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/DarockBili Watch App"; - WATCHOS_DEPLOYMENT_TARGET = 10.0; - }; - name = Debug; - }; - 6BA20BCD2A7185B100AAD0C7 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - BUNDLE_LOADER = "$(TEST_HOST)"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 180; - DEVELOPMENT_TEAM = B57D8PP775; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = "com.darock.DarockBili-Watch-App-Unit-Tests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = watchos; - SWIFT_EMIT_LOC_STRINGS = NO; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 4; - TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DarockBili Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/DarockBili Watch App"; - VALIDATE_PRODUCT = YES; - WATCHOS_DEPLOYMENT_TARGET = 10.0; - }; - name = Release; - }; - 6BA20BDB2A7185D300AAD0C7 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 180; - DEVELOPMENT_TEAM = B57D8PP775; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = "com.darock.DarockBili-Watch-App-UI-Tests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = watchos; - SWIFT_EMIT_LOC_STRINGS = NO; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 4; - TEST_TARGET_NAME = "DarockBili Watch App"; - WATCHOS_DEPLOYMENT_TARGET = 10.0; - }; - name = Debug; - }; - 6BA20BDC2A7185D300AAD0C7 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 180; - DEVELOPMENT_TEAM = B57D8PP775; - GENERATE_INFOPLIST_FILE = YES; - MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = "com.darock.DarockBili-Watch-App-UI-Tests"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = watchos; - SWIFT_EMIT_LOC_STRINGS = NO; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 4; - TEST_TARGET_NAME = "DarockBili Watch App"; - VALIDATE_PRODUCT = YES; - WATCHOS_DEPLOYMENT_TARGET = 10.0; - }; - name = Release; - }; - 6BFF290E2A6C0B3F00914A8E /* Debug */ = { + B44689E12B4FC15B002CCEB2 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 180; - DEVELOPMENT_ASSET_PATHS = "\"DarockBili/Preview Content\""; + DEVELOPMENT_ASSET_PATHS = "\"DarockBili Watch App/Preview Content\""; DEVELOPMENT_TEAM = B57D8PP775; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_FILE = DarockBili/Info.plist; - INFOPLIST_KEY_CFBundleDisplayName = "喵哩喵哩"; - INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; - INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; - INFOPLIST_KEY_UILaunchScreen_Generation = YES; - INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; - IPHONEOS_DEPLOYMENT_TARGET = 16.0; + INFOPLIST_FILE = "DarockBili-Watch-App-Info.plist"; + INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; + INFOPLIST_KEY_WKWatchOnly = YES; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = com.darock.DarockBili; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SUPPORTS_MACCATALYST = NO; - SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; - SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; + PRODUCT_BUNDLE_IDENTIFIER = com.darock.DarockBili.watchkitapp; + PRODUCT_NAME = "喵哩喵哩"; + SDKROOT = watchos; + SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OBJC_BRIDGING_HEADER = "DarockBili Watch App/DarockBili-Bridging-Header.h"; SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 1; + TARGETED_DEVICE_FAMILY = 4; + WATCHOS_DEPLOYMENT_TARGET = 9.0; }; name = Debug; }; - 6BFF290F2A6C0B3F00914A8E /* Release */ = { + B44689E22B4FC15B002CCEB2 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CODE_SIGN_ENTITLEMENTS = ""; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 180; - DEVELOPMENT_ASSET_PATHS = "\"DarockBili/Preview Content\""; + DEVELOPMENT_ASSET_PATHS = "\"DarockBili Watch App/Preview Content\""; DEVELOPMENT_TEAM = B57D8PP775; ENABLE_PREVIEWS = YES; GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_FILE = DarockBili/Info.plist; - INFOPLIST_KEY_CFBundleDisplayName = "喵哩喵哩"; - INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; - INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; - INFOPLIST_KEY_UILaunchScreen_Generation = YES; - INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; - IPHONEOS_DEPLOYMENT_TARGET = 16.0; + INFOPLIST_FILE = "DarockBili-Watch-App-Info.plist"; + INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; + INFOPLIST_KEY_WKWatchOnly = YES; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = com.darock.DarockBili; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SUPPORTS_MACCATALYST = NO; - SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; - SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; + PRODUCT_BUNDLE_IDENTIFIER = com.darock.DarockBili.watchkitapp; + PRODUCT_NAME = "喵哩喵哩"; + SDKROOT = watchos; + SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OBJC_BRIDGING_HEADER = "DarockBili Watch App/DarockBili-Bridging-Header.h"; SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 1; + TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; + WATCHOS_DEPLOYMENT_TARGET = 9.0; }; name = Release; }; - 6BFF296B2A6C0D2100914A8E /* Debug */ = { + B44689E52B4FC15B002CCEB2 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CODE_SIGN_ENTITLEMENTS = ""; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 180; - DEFINES_MODULE = YES; - DEVELOPMENT_ASSET_PATHS = "\"DarockBili Watch App/Preview Content\""; + CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = B57D8PP775; - ENABLE_PREVIEWS = YES; - GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_FILE = "DarockBili-Watch-App-Info.plist"; - INFOPLIST_KEY_CFBundleDisplayName = "喵哩喵哩"; - INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; - INFOPLIST_KEY_WKCompanionAppBundleIdentifier = com.darock.DarockBili; - INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = YES; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + INFOPLIST_KEY_CFBundleDisplayName = DarockBili; MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = com.darock.DarockBili.watchkitapp; + PRODUCT_BUNDLE_IDENTIFIER = com.darock.DarockBili; PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = watchos; - SKIP_INSTALL = YES; - SWIFT_EMIT_LOC_STRINGS = YES; - SWIFT_OBJC_BRIDGING_HEADER = "DarockBili Watch App/DarockBili-Bridging-Header.h"; + SDKROOT = iphoneos; SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 4; - WATCHOS_DEPLOYMENT_TARGET = 9.0; }; name = Debug; }; - 6BFF296C2A6C0D2100914A8E /* Release */ = { + B44689E62B4FC15B002CCEB2 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CODE_SIGN_ENTITLEMENTS = ""; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 180; - DEFINES_MODULE = YES; - DEVELOPMENT_ASSET_PATHS = "\"DarockBili Watch App/Preview Content\""; + CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = B57D8PP775; - ENABLE_PREVIEWS = YES; - GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_FILE = "DarockBili-Watch-App-Info.plist"; - INFOPLIST_KEY_CFBundleDisplayName = "喵哩喵哩"; - INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown"; - INFOPLIST_KEY_WKCompanionAppBundleIdentifier = com.darock.DarockBili; - INFOPLIST_KEY_WKRunsIndependentlyOfCompanionApp = YES; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); + INFOPLIST_KEY_CFBundleDisplayName = DarockBili; MARKETING_VERSION = 1.0.0; - PRODUCT_BUNDLE_IDENTIFIER = com.darock.DarockBili.watchkitapp; + PRODUCT_BUNDLE_IDENTIFIER = com.darock.DarockBili; PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = watchos; - SKIP_INSTALL = YES; - SWIFT_EMIT_LOC_STRINGS = YES; - SWIFT_OBJC_BRIDGING_HEADER = "DarockBili Watch App/DarockBili-Bridging-Header.h"; + SDKROOT = iphoneos; SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; - WATCHOS_DEPLOYMENT_TARGET = 9.0; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 6B0253B12A4EF59600567986 /* Build configuration list for PBXProject "DarockBili" */ = { + B44689C72B4FC15A002CCEB2 /* Build configuration list for PBXProject "DarockBili" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6B0253C82A4EF59700567986 /* Debug */, - 6B0253C92A4EF59700567986 /* Release */, + B44689DE2B4FC15B002CCEB2 /* Debug */, + B44689DF2B4FC15B002CCEB2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6BA20BCB2A7185B100AAD0C7 /* Build configuration list for PBXNativeTarget "DarockBili Watch App Unit Tests" */ = { + B44689E02B4FC15B002CCEB2 /* Build configuration list for PBXNativeTarget "DarockBili Watch App" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6BA20BCC2A7185B100AAD0C7 /* Debug */, - 6BA20BCD2A7185B100AAD0C7 /* Release */, + B44689E12B4FC15B002CCEB2 /* Debug */, + B44689E22B4FC15B002CCEB2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6BA20BDA2A7185D300AAD0C7 /* Build configuration list for PBXNativeTarget "DarockBili Watch App UI Tests" */ = { + B44689E42B4FC15B002CCEB2 /* Build configuration list for PBXNativeTarget "DarockBili" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6BA20BDB2A7185D300AAD0C7 /* Debug */, - 6BA20BDC2A7185D300AAD0C7 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6BFF290D2A6C0B3F00914A8E /* Build configuration list for PBXNativeTarget "DarockBili" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6BFF290E2A6C0B3F00914A8E /* Debug */, - 6BFF290F2A6C0B3F00914A8E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6BFF296A2A6C0D2100914A8E /* Build configuration list for PBXNativeTarget "DarockBili Watch App" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6BFF296B2A6C0D2100914A8E /* Debug */, - 6BFF296C2A6C0D2100914A8E /* Release */, + B44689E52B4FC15B002CCEB2 /* Debug */, + B44689E62B4FC15B002CCEB2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -1213,7 +915,15 @@ /* End XCConfigurationList section */ /* Begin XCRemoteSwiftPackageReference section */ - 5C5676282AFF67AC00E58541 /* XCRemoteSwiftPackageReference "Marquee" */ = { + B4468A6B2B4FC2C8002CCEB2 /* XCRemoteSwiftPackageReference "Alamofire" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/Alamofire/Alamofire"; + requirement = { + kind = exactVersion; + version = 5.5.0; + }; + }; + B4468A6E2B4FC5E7002CCEB2 /* XCRemoteSwiftPackageReference "Marquee" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/SwiftUIKit/Marquee"; requirement = { @@ -1221,7 +931,7 @@ minimumVersion = 0.3.0; }; }; - 5C56762B2AFF72E900E58541 /* XCRemoteSwiftPackageReference "SwiftDate" */ = { + B4468A712B4FC5F1002CCEB2 /* XCRemoteSwiftPackageReference "SwiftDate" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/malcommac/SwiftDate"; requirement = { @@ -1229,31 +939,23 @@ minimumVersion = 7.0.0; }; }; - 6B37B4BB2A715EF800F26F1A /* XCRemoteSwiftPackageReference "SFSymbol" */ = { + B4468A742B4FC602002CCEB2 /* XCRemoteSwiftPackageReference "SFSymbol" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/Nirma/SFSymbol"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 2.2.0; + minimumVersion = 2.3.0; }; }; - 6B853FE82A7509DC0067B55C /* XCRemoteSwiftPackageReference "ZipArchive" */ = { + B4468A792B4FC618002CCEB2 /* XCRemoteSwiftPackageReference "ZipArchive" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/ZipArchive/ZipArchive"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 2.5.4; - }; - }; - 6BA1E5492A6AF2A900293B2C /* XCRemoteSwiftPackageReference "DarockKit" */ = { - isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/Darock-Studio/DarockKit"; - requirement = { - branch = main; - kind = branch; + minimumVersion = 2.5.5; }; }; - 6BBFF7BA2A4FF18100DE050E /* XCRemoteSwiftPackageReference "EFQRCode" */ = { + B4468A7E2B4FC675002CCEB2 /* XCRemoteSwiftPackageReference "EFQRCode" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/EFPrefix/EFQRCode"; requirement = { @@ -1261,23 +963,23 @@ minimumVersion = 6.2.2; }; }; - 6BBFF7C12A5012B800DE050E /* XCRemoteSwiftPackageReference "SDWebImageSwiftUI" */ = { + B4468A7F2B4FC681002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageSwiftUI" */ = { isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/SDWebImage/SDWebImageSwiftUI"; + repositoryURL = "https://github.com/SDWebImage/SDWebImageSwiftUI.git"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 2.2.3; + minimumVersion = 2.2.6; }; }; - 6BBFF7C42A5012DB00DE050E /* XCRemoteSwiftPackageReference "SDWebImageWebPCoder" */ = { + B4468A802B4FC68C002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageWebPCoder" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/SDWebImage/SDWebImageWebPCoder"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 0.12.0; + minimumVersion = 0.14.2; }; }; - 6BBFF7C72A5012EC00DE050E /* XCRemoteSwiftPackageReference "SDWebImageSVGCoder" */ = { + B4468A812B4FC697002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageSVGCoder" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/SDWebImage/SDWebImageSVGCoder"; requirement = { @@ -1285,23 +987,23 @@ minimumVersion = 1.7.0; }; }; - 6BBFF7CA2A5012FF00DE050E /* XCRemoteSwiftPackageReference "SDWebImagePDFCoder" */ = { + B4468A822B4FC6A1002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImagePDFCoder" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/SDWebImage/SDWebImagePDFCoder"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 1.0.0; + minimumVersion = 1.0.1; }; }; - 6BBFF7D22A50737C00DE050E /* XCRemoteSwiftPackageReference "SwiftSoup" */ = { + B4468A832B4FC6B1002CCEB2 /* XCRemoteSwiftPackageReference "SwiftSoup" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/scinfu/SwiftSoup"; requirement = { kind = upToNextMajorVersion; - minimumVersion = 2.6.1; + minimumVersion = 2.7.0; }; }; - 6BC8CB1D2A6CF48400D2E9E9 /* XCRemoteSwiftPackageReference "swiftui-cached-async-image" */ = { + B4468A842B4FC6BE002CCEB2 /* XCRemoteSwiftPackageReference "swiftui-cached-async-image" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/lorenzofiamingo/swiftui-cached-async-image"; requirement = { @@ -1309,7 +1011,7 @@ minimumVersion = 2.1.1; }; }; - 8CA453802AE42A3E00138CE4 /* XCRemoteSwiftPackageReference "Dynamic" */ = { + B4468A852B4FC6C6002CCEB2 /* XCRemoteSwiftPackageReference "Dynamic" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/mhdhejazi/Dynamic"; requirement = { @@ -1317,80 +1019,106 @@ minimumVersion = 1.2.0; }; }; + B4468A8A2B4FC85A002CCEB2 /* XCRemoteSwiftPackageReference "SwiftyJSON" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/SwiftyJSON/SwiftyJSON.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 4.0.0; + }; + }; + B4468A8D2B4FC8AC002CCEB2 /* XCRemoteSwiftPackageReference "DarockKit" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/Darock-Studio/DarockKit"; + requirement = { + branch = main; + kind = branch; + }; + }; /* End XCRemoteSwiftPackageReference section */ /* Begin XCSwiftPackageProductDependency section */ - 5C5676292AFF67AC00E58541 /* Marquee */ = { + B4468A6C2B4FC2C8002CCEB2 /* Alamofire */ = { + isa = XCSwiftPackageProductDependency; + package = B4468A6B2B4FC2C8002CCEB2 /* XCRemoteSwiftPackageReference "Alamofire" */; + productName = Alamofire; + }; + B4468A6F2B4FC5E7002CCEB2 /* Marquee */ = { isa = XCSwiftPackageProductDependency; - package = 5C5676282AFF67AC00E58541 /* XCRemoteSwiftPackageReference "Marquee" */; + package = B4468A6E2B4FC5E7002CCEB2 /* XCRemoteSwiftPackageReference "Marquee" */; productName = Marquee; }; - 5C56762C2AFF72E900E58541 /* SwiftDate */ = { + B4468A722B4FC5F1002CCEB2 /* SwiftDate */ = { isa = XCSwiftPackageProductDependency; - package = 5C56762B2AFF72E900E58541 /* XCRemoteSwiftPackageReference "SwiftDate" */; + package = B4468A712B4FC5F1002CCEB2 /* XCRemoteSwiftPackageReference "SwiftDate" */; productName = SwiftDate; }; - 6B37B4BC2A715EF900F26F1A /* SFSymbol */ = { + B4468A752B4FC602002CCEB2 /* SFSymbol */ = { isa = XCSwiftPackageProductDependency; - package = 6B37B4BB2A715EF800F26F1A /* XCRemoteSwiftPackageReference "SFSymbol" */; + package = B4468A742B4FC602002CCEB2 /* XCRemoteSwiftPackageReference "SFSymbol" */; productName = SFSymbol; }; - 6B853FE92A7509DC0067B55C /* ZipArchive */ = { + B4468A772B4FC60B002CCEB2 /* SFSymbol */ = { isa = XCSwiftPackageProductDependency; - package = 6B853FE82A7509DC0067B55C /* XCRemoteSwiftPackageReference "ZipArchive" */; + package = B4468A742B4FC602002CCEB2 /* XCRemoteSwiftPackageReference "SFSymbol" */; + productName = SFSymbol; + }; + B4468A7A2B4FC618002CCEB2 /* ZipArchive */ = { + isa = XCSwiftPackageProductDependency; + package = B4468A792B4FC618002CCEB2 /* XCRemoteSwiftPackageReference "ZipArchive" */; productName = ZipArchive; }; - 6BC8CB272A6D758000D2E9E9 /* EFQRCode */ = { + B4468A8B2B4FC85A002CCEB2 /* SwiftyJSON */ = { + isa = XCSwiftPackageProductDependency; + package = B4468A8A2B4FC85A002CCEB2 /* XCRemoteSwiftPackageReference "SwiftyJSON" */; + productName = SwiftyJSON; + }; + B4468A8E2B4FC8AC002CCEB2 /* DarockKit */ = { isa = XCSwiftPackageProductDependency; - package = 6BBFF7BA2A4FF18100DE050E /* XCRemoteSwiftPackageReference "EFQRCode" */; + package = B4468A8D2B4FC8AC002CCEB2 /* XCRemoteSwiftPackageReference "DarockKit" */; + productName = DarockKit; + }; + B4468A912B4FC8B7002CCEB2 /* EFQRCode */ = { + isa = XCSwiftPackageProductDependency; + package = B4468A7E2B4FC675002CCEB2 /* XCRemoteSwiftPackageReference "EFQRCode" */; productName = EFQRCode; }; - 6BC8CB292A6D758000D2E9E9 /* SDWebImageSwiftUI */ = { + B4468A932B4FC8B7002CCEB2 /* SDWebImageSwiftUI */ = { isa = XCSwiftPackageProductDependency; - package = 6BBFF7C12A5012B800DE050E /* XCRemoteSwiftPackageReference "SDWebImageSwiftUI" */; + package = B4468A7F2B4FC681002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageSwiftUI" */; productName = SDWebImageSwiftUI; }; - 6BC8CB2B2A6D758000D2E9E9 /* SDWebImageWebPCoder */ = { + B4468A952B4FC8B7002CCEB2 /* SDWebImageWebPCoder */ = { isa = XCSwiftPackageProductDependency; - package = 6BBFF7C42A5012DB00DE050E /* XCRemoteSwiftPackageReference "SDWebImageWebPCoder" */; + package = B4468A802B4FC68C002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageWebPCoder" */; productName = SDWebImageWebPCoder; }; - 6BC8CB2D2A6D758000D2E9E9 /* SDWebImageSVGCoder */ = { + B4468A972B4FC8B7002CCEB2 /* SDWebImageSVGCoder */ = { isa = XCSwiftPackageProductDependency; - package = 6BBFF7C72A5012EC00DE050E /* XCRemoteSwiftPackageReference "SDWebImageSVGCoder" */; + package = B4468A812B4FC697002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImageSVGCoder" */; productName = SDWebImageSVGCoder; }; - 6BC8CB2F2A6D758000D2E9E9 /* SDWebImagePDFCoder */ = { + B4468A992B4FC8B7002CCEB2 /* SDWebImagePDFCoder */ = { isa = XCSwiftPackageProductDependency; - package = 6BBFF7CA2A5012FF00DE050E /* XCRemoteSwiftPackageReference "SDWebImagePDFCoder" */; + package = B4468A822B4FC6A1002CCEB2 /* XCRemoteSwiftPackageReference "SDWebImagePDFCoder" */; productName = SDWebImagePDFCoder; }; - 6BC8CB312A6D758000D2E9E9 /* SwiftSoup */ = { + B4468A9B2B4FC8B7002CCEB2 /* SwiftSoup */ = { isa = XCSwiftPackageProductDependency; - package = 6BBFF7D22A50737C00DE050E /* XCRemoteSwiftPackageReference "SwiftSoup" */; + package = B4468A832B4FC6B1002CCEB2 /* XCRemoteSwiftPackageReference "SwiftSoup" */; productName = SwiftSoup; }; - 6BC8CB332A6D758000D2E9E9 /* DarockKit */ = { + B4468A9D2B4FC8B7002CCEB2 /* CachedAsyncImage */ = { isa = XCSwiftPackageProductDependency; - package = 6BA1E5492A6AF2A900293B2C /* XCRemoteSwiftPackageReference "DarockKit" */; - productName = DarockKit; - }; - 6BC8CB352A6D758000D2E9E9 /* CachedAsyncImage */ = { - isa = XCSwiftPackageProductDependency; - package = 6BC8CB1D2A6CF48400D2E9E9 /* XCRemoteSwiftPackageReference "swiftui-cached-async-image" */; + package = B4468A842B4FC6BE002CCEB2 /* XCRemoteSwiftPackageReference "swiftui-cached-async-image" */; productName = CachedAsyncImage; }; - 6BFF29A52A6C10EB00914A8E /* DarockKit */ = { - isa = XCSwiftPackageProductDependency; - package = 6BA1E5492A6AF2A900293B2C /* XCRemoteSwiftPackageReference "DarockKit" */; - productName = DarockKit; - }; - 8CA453812AE42A3E00138CE4 /* Dynamic */ = { + B4468A9F2B4FC8B7002CCEB2 /* Dynamic */ = { isa = XCSwiftPackageProductDependency; - package = 8CA453802AE42A3E00138CE4 /* XCRemoteSwiftPackageReference "Dynamic" */; + package = B4468A852B4FC6C6002CCEB2 /* XCRemoteSwiftPackageReference "Dynamic" */; productName = Dynamic; }; /* End XCSwiftPackageProductDependency section */ }; - rootObject = 6B0253AE2A4EF59600567986 /* Project object */; + rootObject = B44689C42B4FC15A002CCEB2 /* Project object */; } diff --git a/DarockBili.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/DarockBili.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index c63857025..8ea1aafb4 100644 --- a/DarockBili.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/DarockBili.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -15,7 +15,7 @@ "location" : "https://github.com/Darock-Studio/DarockKit", "state" : { "branch" : "main", - "revision" : "8653ae946660d0669fc2bbbd40a40f62dc192308" + "revision" : "eee2eb242a2008d628990cbdaf7ee27b400df2d9" } }, { @@ -41,8 +41,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/SDWebImage/libwebp-Xcode.git", "state" : { - "revision" : "1cdddb80ccef6d30e869c4abe1f9f3d3871a25b5", - "version" : "1.3.1" + "revision" : "b2b1d20a90b14d11f6ef4241da6b81c1d3f171e4", + "version" : "1.3.2" } }, { @@ -59,8 +59,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/SDWebImage/SDWebImage.git", "state" : { - "revision" : "633996a807442ec28df9d33b0f88ce57a0e2fdbf", - "version" : "5.17.0" + "revision" : "59730af512c06fb569c119d737df4c1c499e001d", + "version" : "5.18.10" } }, { @@ -68,8 +68,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/SDWebImage/SDWebImagePDFCoder", "state" : { - "revision" : "d9139666985f93292caa8971c7892870bd700cd8", - "version" : "1.0.0" + "revision" : "2aecb0a16e4d054c7f36a140f7feef6e1ede7bb6", + "version" : "1.0.1" } }, { @@ -84,10 +84,10 @@ { "identity" : "sdwebimageswiftui", "kind" : "remoteSourceControl", - "location" : "https://github.com/SDWebImage/SDWebImageSwiftUI", + "location" : "https://github.com/SDWebImage/SDWebImageSwiftUI.git", "state" : { - "revision" : "e837c37d45449fbd3b4745c10c5b5274e73edead", - "version" : "2.2.3" + "revision" : "261b6cec35686d2dc192b809ab50742b4502a73b", + "version" : "2.2.6" } }, { @@ -95,8 +95,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/SDWebImage/SDWebImageWebPCoder", "state" : { - "revision" : "3819cb70faa2454b54d8364779bfacd8c216a6e2", - "version" : "0.13.0" + "revision" : "db4603921b31a6ce0f8c26d36d6a3fffc2dba481", + "version" : "0.14.2" } }, { @@ -104,8 +104,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/Nirma/SFSymbol", "state" : { - "revision" : "c18f260b9b69d1c24e40ad367e8a589563fb8f3d", - "version" : "2.2.0" + "revision" : "1b127194b976a58ea460a2cbe10f00fa994b1ece", + "version" : "2.3.0" } }, { @@ -131,8 +131,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/scinfu/SwiftSoup", "state" : { - "revision" : "8b6cf29eead8841a1fa7822481cb3af4ddaadba6", - "version" : "2.6.1" + "revision" : "f83c097597094a04124eb6e0d1e894d24129af87", + "version" : "2.7.0" } }, { @@ -147,7 +147,7 @@ { "identity" : "swiftyjson", "kind" : "remoteSourceControl", - "location" : "https://github.com/SwiftyJSON/SwiftyJSON", + "location" : "https://github.com/SwiftyJSON/SwiftyJSON.git", "state" : { "revision" : "2b6054efa051565954e1d2b9da831680026cd768", "version" : "4.3.0" @@ -158,8 +158,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/ZipArchive/ZipArchive", "state" : { - "revision" : "b56f8c605a233fb25fe8d49f1b9ed50912c2d1b7", - "version" : "2.5.4" + "revision" : "79d4dc9729096c6ad83dd3cee2b9f354d1b4ab7b", + "version" : "2.5.5" } } ], diff --git a/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/WindowsMEMZ.xcuserdatad/UserInterfaceState.xcuserstate b/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/WindowsMEMZ.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 8b7c213df..000000000 Binary files a/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/WindowsMEMZ.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/boring.xcuserdatad/UserInterfaceState.xcuserstate b/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/boring.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 3c91c871a..000000000 Binary files a/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/boring.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/lion.xcuserdatad/UserInterfaceState.xcuserstate b/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/lion.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 7f34627ba..000000000 Binary files a/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/lion.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/memz233.xcuserdatad/UserInterfaceState.xcuserstate b/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/memz233.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index de4eb6b19..000000000 Binary files a/DarockBili.xcodeproj/project.xcworkspace/xcuserdata/memz233.xcuserdatad/UserInterfaceState.xcuserstate and /dev/null differ diff --git a/DarockBili.xcodeproj/xcshareddata/xcbaselines/6B56A9092A53C9BE0089DD31.xcbaseline/91360AFE-5D96-424A-B7AF-019174FB3EB8.plist b/DarockBili.xcodeproj/xcshareddata/xcbaselines/6B56A9092A53C9BE0089DD31.xcbaseline/91360AFE-5D96-424A-B7AF-019174FB3EB8.plist deleted file mode 100644 index ce919a13b..000000000 --- a/DarockBili.xcodeproj/xcshareddata/xcbaselines/6B56A9092A53C9BE0089DD31.xcbaseline/91360AFE-5D96-424A-B7AF-019174FB3EB8.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - classNames - - DarockBili_Tests - - testPerformanceExample() - - com.apple.XCTPerformanceMetric_WallClockTime - - baselineAverage - 0.000073 - baselineIntegrationDisplayName - Local Baseline - - - - - - diff --git a/DarockBili.xcodeproj/xcshareddata/xcbaselines/6B56A9092A53C9BE0089DD31.xcbaseline/Info.plist b/DarockBili.xcodeproj/xcshareddata/xcbaselines/6B56A9092A53C9BE0089DD31.xcbaseline/Info.plist deleted file mode 100644 index 936b11536..000000000 --- a/DarockBili.xcodeproj/xcshareddata/xcbaselines/6B56A9092A53C9BE0089DD31.xcbaseline/Info.plist +++ /dev/null @@ -1,40 +0,0 @@ - - - - - runDestinationsByUUID - - 91360AFE-5D96-424A-B7AF-019174FB3EB8 - - localComputer - - busSpeedInMHz - 0 - cpuCount - 1 - cpuKind - Apple M2 - cpuSpeedInMHz - 0 - logicalCPUCoresPerPackage - 8 - modelCode - Mac14,3 - physicalCPUCoresPerPackage - 8 - platformIdentifier - com.apple.platform.macosx - - targetArchitecture - arm64 - targetDevice - - modelCode - Watch6,14 - platformIdentifier - com.apple.platform.watchsimulator - - - - - diff --git a/DarockBili.xcodeproj/xcshareddata/xcbaselines/6BA20BD12A7185D300AAD0C7.xcbaseline/63B27FFF-4E82-4A3A-A22F-7C7772900782.plist b/DarockBili.xcodeproj/xcshareddata/xcbaselines/6BA20BD12A7185D300AAD0C7.xcbaseline/63B27FFF-4E82-4A3A-A22F-7C7772900782.plist deleted file mode 100644 index 2a47b6046..000000000 --- a/DarockBili.xcodeproj/xcshareddata/xcbaselines/6BA20BD12A7185D300AAD0C7.xcbaseline/63B27FFF-4E82-4A3A-A22F-7C7772900782.plist +++ /dev/null @@ -1,22 +0,0 @@ - - - - - classNames - - DarockBili_Watch_App_UI_Tests - - testLaunchPerformance() - - com.apple.dt.XCTMetric_ApplicationLaunch-AppLaunch.duration - - baselineAverage - 1.270000 - baselineIntegrationDisplayName - Local Baseline - - - - - - diff --git a/DarockBili.xcodeproj/xcshareddata/xcbaselines/6BA20BD12A7185D300AAD0C7.xcbaseline/Info.plist b/DarockBili.xcodeproj/xcshareddata/xcbaselines/6BA20BD12A7185D300AAD0C7.xcbaseline/Info.plist deleted file mode 100644 index c07b049e2..000000000 --- a/DarockBili.xcodeproj/xcshareddata/xcbaselines/6BA20BD12A7185D300AAD0C7.xcbaseline/Info.plist +++ /dev/null @@ -1,40 +0,0 @@ - - - - - runDestinationsByUUID - - 63B27FFF-4E82-4A3A-A22F-7C7772900782 - - localComputer - - busSpeedInMHz - 0 - cpuCount - 1 - cpuKind - Apple M2 - cpuSpeedInMHz - 0 - logicalCPUCoresPerPackage - 8 - modelCode - Mac14,3 - physicalCPUCoresPerPackage - 8 - platformIdentifier - com.apple.platform.macosx - - targetArchitecture - arm64 - targetDevice - - modelCode - Watch6,14 - platformIdentifier - com.apple.platform.watchsimulator - - - - - diff --git a/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili Watch App (Notification).xcscheme b/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili Watch App (Notification).xcscheme deleted file mode 100644 index 440689624..000000000 --- a/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili Watch App (Notification).xcscheme +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili Watch App.xcscheme b/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili Watch App.xcscheme deleted file mode 100644 index fe3085c38..000000000 --- a/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili Watch App.xcscheme +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili.xcscheme b/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili.xcscheme deleted file mode 100644 index 142c480e3..000000000 --- a/DarockBili.xcodeproj/xcshareddata/xcschemes/DarockBili.xcscheme +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/DarockBili/Assets.xcassets/AccentColor.colorset/Contents.json b/DarockBili/Assets.xcassets/AccentColor.colorset/Contents.json deleted file mode 100644 index eb8789700..000000000 --- a/DarockBili/Assets.xcassets/AccentColor.colorset/Contents.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "colors" : [ - { - "idiom" : "universal" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/DarockBili/Assets.xcassets/AppIcon.appiconset/Contents.json b/DarockBili/Assets.xcassets/AppIcon.appiconset/Contents.json deleted file mode 100644 index f32144199..000000000 --- a/DarockBili/Assets.xcassets/AppIcon.appiconset/Contents.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "images" : [ - { - "filename" : "未标题-2.png", - "idiom" : "universal", - "platform" : "ios", - "size" : "1024x1024" - } - ], - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git "a/DarockBili/Assets.xcassets/AppIcon.appiconset/\346\234\252\346\240\207\351\242\230-2.png" "b/DarockBili/Assets.xcassets/AppIcon.appiconset/\346\234\252\346\240\207\351\242\230-2.png" deleted file mode 100644 index 324f01d9e..000000000 Binary files "a/DarockBili/Assets.xcassets/AppIcon.appiconset/\346\234\252\346\240\207\351\242\230-2.png" and /dev/null differ diff --git a/DarockBili/Assets.xcassets/Contents.json b/DarockBili/Assets.xcassets/Contents.json deleted file mode 100644 index 73c00596a..000000000 --- a/DarockBili/Assets.xcassets/Contents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/DarockBili/ContentView.swift b/DarockBili/ContentView.swift deleted file mode 100644 index a8ecebd53..000000000 --- a/DarockBili/ContentView.swift +++ /dev/null @@ -1,44 +0,0 @@ -// -// ContentView.swift -// DarockBili -// -// Created by WindowsMEMZ on 2023/7/22. -// - -import SwiftUI -import DarockKit - -struct ContentView: View { - @AppStorage("IsNetworkGetted") var isNetworkGetted = false - var body: some View { - NStack { - VStack { - NeuText("您需要在 iPhone 上授予 Apple Watch 网络权限", fontSize: 22) - .multilineTextAlignment(.center) - NeuButton(action: { - DarockKit.Network.shared.requestString("https://api.darock.top") { respStr, isSuccess in - if isSuccess { - debugPrint(respStr) - isNetworkGetted = true - } - } - }, label: { - Text("授权") - .font(.system(size: 20, weight: .bold)) - .padding(.horizontal, 5) - }) - if isNetworkGetted { - NeuText("已授权", fontSize: 22) - .multilineTextAlignment(.center) - } - } - .padding() - } - } -} - -struct ContentView_Previews: PreviewProvider { - static var previews: some View { - ContentView() - } -} diff --git a/DarockBili/DarockBiliApp.swift b/DarockBili/DarockBiliApp.swift deleted file mode 100644 index 9c44e308d..000000000 --- a/DarockBili/DarockBiliApp.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// DarockBiliApp.swift -// DarockBili -// -// Created by WindowsMEMZ on 2023/7/22. -// - -import SwiftUI - -@main -struct DarockBiliApp: App { - var body: some Scene { - WindowGroup { - ContentView() - } - } -} diff --git a/DarockBili/Info.plist b/DarockBili/Info.plist deleted file mode 100644 index 7cf2d2ccb..000000000 --- a/DarockBili/Info.plist +++ /dev/null @@ -1,10 +0,0 @@ - - - - - ITSAppUsesNonExemptEncryption - - NSAppTransportSecurity - - - diff --git a/DarockBili/Preview Content/Preview Assets.xcassets/Contents.json b/DarockBili/Preview Content/Preview Assets.xcassets/Contents.json deleted file mode 100644 index 73c00596a..000000000 --- a/DarockBili/Preview Content/Preview Assets.xcassets/Contents.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "info" : { - "author" : "xcode", - "version" : 1 - } -} diff --git a/ExportOptions/ad-hoc.plist b/ExportOptions/ad-hoc.plist index 651ae00a0..9060ab704 100644 --- a/ExportOptions/ad-hoc.plist +++ b/ExportOptions/ad-hoc.plist @@ -7,13 +7,13 @@ destination export method - ad-hoc + enterprise signingStyle automatic stripSwiftSymbols teamID - B57D8PP775 + H5SM6ZV38F thinning <none> diff --git a/Icons/.DS_Store b/Icons/.DS_Store index 9b596bada..8cd999494 100644 Binary files a/Icons/.DS_Store and b/Icons/.DS_Store differ diff --git a/LICENSE b/LICENSE deleted file mode 100644 index f288702d2..000000000 --- a/LICENSE +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/README.md b/README.md deleted file mode 100644 index ef03efecc..000000000 --- a/README.md +++ /dev/null @@ -1,42 +0,0 @@ -# 喵哩喵哩 - Apple Watch 上的B站客户端 - -![Swift](https://img.shields.io/badge/Swift-5.9-orange.svg)  -![GitHub commit activity](https://img.shields.io/github/commit-activity/m/Darock-Studio/Darock-Bili)  -![GitHub repo size](https://img.shields.io/github/repo-size/Darock-Studio/Darock-Bili)  -![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/Darock-Studio/Darock-Bili)  -![Uptime Robot status](https://img.shields.io/uptimerobot/status/m794152937-528042e5aee699af3224e7a6?label=Darock%20Main%20API%20Status)  -![GitHub tag](https://img.shields.io/github/v/tag/Darock-Studio/Darock-Bili?label=Latest%20Tag)  -![GitHub Release Date](https://img.shields.io/github/release-date-pre/Darock-Studio/Darock-Bili?label=Latest%20Release%20Date)  -![GitHub last commit (branch)](https://img.shields.io/github/last-commit/Darock-Studio/Darock-Bili/main?label=Main%20Branch%20Last%20Commit)  -![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/Darock-Studio/Darock-Bili/ios.yml) - -## 功能 -- 个性化推荐 -- 登录账号 -- 下载视频 -- 查看视频详情(播放量、简介等) -- 查看视频评论 -- 发送评论 -- 查看推荐视频 -- 视频操作(点赞、投币、收藏等) -- 用户详情页(粉丝、关注数,个性签名等) -- 用户视频、专栏 -- 用户操作(关注、私信) -- 搜索(视频、UP主) -- 关注列表 -- 收藏列表(收藏夹) -- 稍后再看(查看、添加) -- 动态查看 - -## 安装 -### TestFlight -[此处](https://testflight.apple.com/join/TbuBT6ig) - -## 贡献 -欢迎提交Issue和Pull Request帮助我们变得更好! - -## 版本号 -喵哩喵哩在GitHub和TestFlight(与关于页上相同)上的版本号**不同**,因为如果在TestFlight上递增版本号,App 需要重新接受审核,而递增 Build 版本则不用。 - -因此,我们在TestFlight上仅仅递增 Build 号,而GitHub上尽可能使用语义化版本,我们更推荐使用GitHub上的版本号来引用喵哩喵哩程序。 -