Skip to content

Commit 42d2eac

Browse files
authored
Merge pull request #422 from EhPanda-Team/develop
Bugfixes & Liquid Glass adaptation
2 parents c6c970e + 8944c3d commit 42d2eac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+479
-379
lines changed

.github/CODEOWNERS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# the repo. Unless a later match takes precedence,
66
# @global-owner1 and @global-owner2 will be requested for
77
# review when someone opens a pull request.
8-
* @ehpanda-maintainers
8+
# * @global-owner1 @global-owner2
99

1010
# Order is important; the last matching pattern takes the most
1111
# precedence. When someone opens a pull request that only
@@ -22,7 +22,7 @@
2222
# be identified in the format @org/team-name. Teams must have
2323
# explicit write access to the repository. In this example,
2424
# the octocats team in the octo-org organization owns all .txt files.
25-
# *.txt @octo-org/octocats
25+
* @EhPanda-Team/ehpanda-maintainers
2626

2727
# In this example, @doctocat owns any files in the build/logs
2828
# directory at the root of the repository and any of its

.github/workflows/dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
pull-requests: write
99
jobs:
1010
dependencies:
11-
runs-on: macos-15
11+
runs-on: macos-26
1212
steps:
1313
- uses: actions/checkout@v4
1414
with:
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
forceResolution: true
2121
failWhenOutdated: false
22-
xcodePath: '/Applications/Xcode_16.2.app'
22+
xcodePath: '/Applications/Xcode_26.0.1.app'
2323
- name: Create Pull Request
2424
if: steps.resolution.outputs.dependenciesChanged == 'true'
2525
uses: peter-evans/create-pull-request@v7

.github/workflows/deploy-pre-release.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
required: true
1616
type: string
1717
env:
18-
DEVELOPER_DIR: /Applications/Xcode_26_beta.app
18+
DEVELOPER_DIR: /Applications/Xcode_26.0.1.app
1919
SCHEME_NAME: 'EhPanda'
2020
ALTSTORE_JSON_PATH: './AltStore.json'
2121
BUILDS_PATH: '/tmp/action-builds'
@@ -26,7 +26,7 @@ env:
2626

2727
jobs:
2828
Deploy:
29-
runs-on: macos-15
29+
runs-on: macos-26
3030
if: github.event_name == 'workflow_dispatch'
3131
steps:
3232
- name: Checkout
@@ -36,14 +36,19 @@ jobs:
3636
git config user.name "github-actions[bot]"
3737
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
3838
- name: Install iOS 26 Platform
39-
run: xcodebuild -downloadPlatform iOS
39+
uses: nick-fields/retry@v3
40+
with:
41+
retry_on: error
42+
max_attempts: 10
43+
timeout_minutes: 999
44+
command: xcodebuild -downloadPlatform iOS
4045
- name: Show Xcode version
4146
run: xcodebuild -version
4247
- name: Run tests
4348
run: xcodebuild clean test
4449
-skipMacroValidation
4550
-scheme ${{ env.SCHEME_NAME }}
46-
-destination 'platform=iOS Simulator,name=iPhone 16 Pro'
51+
-destination 'platform=iOS Simulator,name=iPhone Air'
4752
- name: Bump version
4853
id: bump-version
4954
uses: yanamura/ios-bump-version@v1

.github/workflows/deploy.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55
- main
66
types: [closed]
77
env:
8-
DEVELOPER_DIR: /Applications/Xcode_16.2.app
9-
APP_VERSION: '2.7.10'
8+
DEVELOPER_DIR: /Applications/Xcode_26.0.1.app
9+
APP_VERSION: '2.8.0'
1010
SCHEME_NAME: 'EhPanda'
1111
ALTSTORE_JSON_PATH: './AltStore.json'
1212
BUILDS_PATH: '/tmp/action-builds'
@@ -19,22 +19,32 @@ env:
1919

2020
jobs:
2121
Deploy:
22-
runs-on: macos-15
23-
if: github.event.pull_request.merged == true && github.event.pull_request.user.login == 'chihchy'
22+
runs-on: macos-26
23+
if: |
24+
github.event.pull_request.merged == true && (
25+
github.event.pull_request.user.login == 'aalberrty' ||
26+
github.event.pull_request.user.login == 'chihchy')
2427
steps:
2528
- name: Checkout
2629
uses: actions/checkout@v4
2730
- name: Modify git config
2831
run: |
2932
git config user.name "github-actions[bot]"
3033
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
34+
- name: Install iOS 26 Platform
35+
uses: nick-fields/retry@v3
36+
with:
37+
retry_on: error
38+
max_attempts: 10
39+
timeout_minutes: 999
40+
command: xcodebuild -downloadPlatform iOS
3141
- name: Show Xcode version
3242
run: xcodebuild -version
3343
- name: Run tests
3444
run: xcodebuild clean test
3545
-skipMacroValidation
3646
-scheme ${{ env.SCHEME_NAME }}
37-
-destination 'platform=iOS Simulator,name=iPhone 16 Pro'
47+
-destination 'platform=iOS Simulator,name=iPhone Air'
3848
- name: Bump version
3949
id: bump-version
4050
uses: yanamura/ios-bump-version@v1

.github/workflows/test.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,25 @@ name: Test
22
on: [push, workflow_dispatch]
33
env:
44
SCHEME_NAME: 'EhPanda'
5-
DEVELOPER_DIR: /Applications/Xcode_16.2.app
5+
DEVELOPER_DIR: /Applications/Xcode_26.0.1.app
66
jobs:
77
Test:
8-
runs-on: macos-15
8+
runs-on: macos-26
99
if: ${{ !contains(github.event.head_commit.message, '[skip test]') }}
1010
steps:
1111
- name: Checkout
1212
uses: actions/checkout@v4
13+
- name: Install iOS 26 Platform
14+
uses: nick-fields/retry@v3
15+
with:
16+
retry_on: error
17+
max_attempts: 10
18+
timeout_minutes: 999
19+
command: xcodebuild -downloadPlatform iOS
1320
- name: Show Xcode version
1421
run: xcodebuild -version
1522
- name: Run tests
1623
run: xcodebuild clean test
1724
-skipMacroValidation
1825
-scheme ${{ env.SCHEME_NAME }}
19-
-destination 'platform=iOS Simulator,name=iPhone 16 Pro'
26+
-destination 'platform=iOS Simulator,name=iPhone Air'

EhPanda.xcodeproj/project.pbxproj

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -214,14 +214,10 @@
214214
ABC3C78F2593699B00E0C11B /* ViewModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC3C7762593699A00E0C11B /* ViewModifiers.swift */; };
215215
ABC4A0792751B40E00968A4F /* Kingfisher in Frameworks */ = {isa = PBXBuildFile; productRef = ABC4A0782751B40E00968A4F /* Kingfisher */; };
216216
ABC681F326898D46007BBD69 /* Model.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = ABC681F126898D46007BBD69 /* Model.xcdatamodeld */; };
217-
ABC732C127B8962000D47DA9 /* LiveTextHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC732C027B8962000D47DA9 /* LiveTextHandler.swift */; };
218217
ABC732C527B9024500D47DA9 /* LiveText.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC732C427B9024500D47DA9 /* LiveText.swift */; };
219218
ABC732C727B90F0900D47DA9 /* LiveTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC732C627B90F0900D47DA9 /* LiveTextView.swift */; };
220219
ABC8355D27B118330091DCDB /* DetailSearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC8355C27B118330091DCDB /* DetailSearchView.swift */; };
221220
ABC8355F27B118370091DCDB /* DetailSearchReducer.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC8355E27B118370091DCDB /* DetailSearchReducer.swift */; };
222-
ABC8356127B357C50091DCDB /* GestureHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC8356027B357C50091DCDB /* GestureHandler.swift */; };
223-
ABC8356327B366760091DCDB /* PageHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC8356227B366760091DCDB /* PageHandler.swift */; };
224-
ABC8356527B36E550091DCDB /* AutoPlayHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABC8356427B36E550091DCDB /* AutoPlayHandler.swift */; };
225221
ABCA93BE26918DE100A98BC6 /* Persistence.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABCA93BD26918DE100A98BC6 /* Persistence.swift */; };
226222
ABCA93C02691925900A98BC6 /* GalleryMO+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABCA93BF2691925900A98BC6 /* GalleryMO+CoreDataClass.swift */; };
227223
ABCA93C22691929D00A98BC6 /* GalleryDetailMO+CoreDataClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABCA93C12691929D00A98BC6 /* GalleryDetailMO+CoreDataClass.swift */; };
@@ -280,6 +276,10 @@
280276
EA0C925E2C3EB49500D211F6 /* README.jpn.md in Resources */ = {isa = PBXBuildFile; fileRef = EA0C92582C3EB49500D211F6 /* README.jpn.md */; };
281277
EA2E2E7F2A1F7E500038A261 /* SettingReducer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA2E2E7E2A1F7E500038A261 /* SettingReducer.swift */; };
282278
EA2E2E822A1FA1060038A261 /* SearchReducer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA2E2E812A1FA1050038A261 /* SearchReducer.swift */; };
279+
EA5AA4A72EA9149E00BC2B5C /* PageHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA5AA4A62EA9149E00BC2B5C /* PageHandler.swift */; };
280+
EA5AA4A82EA9149E00BC2B5C /* LiveTextHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA5AA4A52EA9149E00BC2B5C /* LiveTextHandler.swift */; };
281+
EA5AA4A92EA9149E00BC2B5C /* GestureHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA5AA4A42EA9149E00BC2B5C /* GestureHandler.swift */; };
282+
EA5AA4AA2EA9149E00BC2B5C /* AutoPlayHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA5AA4A32EA9149E00BC2B5C /* AutoPlayHandler.swift */; };
283283
EA698C032CCDD2FB0058BC19 /* EquatableVoid.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA698C022CCDD2FB0058BC19 /* EquatableVoid.swift */; };
284284
EA698C092CCDE7090058BC19 /* IdentifiableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA698C082CCDE7050058BC19 /* IdentifiableBox.swift */; };
285285
EAE63E2129E2A6330048C601 /* SwiftyBeaver in Frameworks */ = {isa = PBXBuildFile; productRef = EAE63E2029E2A6330048C601 /* SwiftyBeaver */; };
@@ -527,14 +527,10 @@
527527
ABC3C7762593699A00E0C11B /* ViewModifiers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewModifiers.swift; sourceTree = "<group>"; };
528528
ABC4A07A2753084100968A4F /* Model 5.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = "Model 5.xcdatamodel"; sourceTree = "<group>"; };
529529
ABC681F226898D46007BBD69 /* Model.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = Model.xcdatamodel; sourceTree = "<group>"; };
530-
ABC732C027B8962000D47DA9 /* LiveTextHandler.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LiveTextHandler.swift; sourceTree = "<group>"; };
531530
ABC732C427B9024500D47DA9 /* LiveText.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveText.swift; sourceTree = "<group>"; };
532531
ABC732C627B90F0900D47DA9 /* LiveTextView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveTextView.swift; sourceTree = "<group>"; };
533532
ABC8355C27B118330091DCDB /* DetailSearchView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DetailSearchView.swift; sourceTree = "<group>"; };
534533
ABC8355E27B118370091DCDB /* DetailSearchReducer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DetailSearchReducer.swift; sourceTree = "<group>"; };
535-
ABC8356027B357C50091DCDB /* GestureHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GestureHandler.swift; sourceTree = "<group>"; };
536-
ABC8356227B366760091DCDB /* PageHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PageHandler.swift; sourceTree = "<group>"; };
537-
ABC8356427B36E550091DCDB /* AutoPlayHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutoPlayHandler.swift; sourceTree = "<group>"; };
538534
ABCA93BD26918DE100A98BC6 /* Persistence.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Persistence.swift; sourceTree = "<group>"; };
539535
ABCA93BF2691925900A98BC6 /* GalleryMO+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GalleryMO+CoreDataClass.swift"; sourceTree = "<group>"; };
540536
ABCA93C12691929D00A98BC6 /* GalleryDetailMO+CoreDataClass.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "GalleryDetailMO+CoreDataClass.swift"; sourceTree = "<group>"; };
@@ -606,6 +602,10 @@
606602
EA0C92582C3EB49500D211F6 /* README.jpn.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = README.jpn.md; path = READMEs/README.jpn.md; sourceTree = "<group>"; };
607603
EA2E2E7E2A1F7E500038A261 /* SettingReducer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SettingReducer.swift; sourceTree = "<group>"; };
608604
EA2E2E812A1FA1050038A261 /* SearchReducer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SearchReducer.swift; sourceTree = "<group>"; };
605+
EA5AA4A32EA9149E00BC2B5C /* AutoPlayHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AutoPlayHandler.swift; sourceTree = "<group>"; };
606+
EA5AA4A42EA9149E00BC2B5C /* GestureHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GestureHandler.swift; sourceTree = "<group>"; };
607+
EA5AA4A52EA9149E00BC2B5C /* LiveTextHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LiveTextHandler.swift; sourceTree = "<group>"; };
608+
EA5AA4A62EA9149E00BC2B5C /* PageHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PageHandler.swift; sourceTree = "<group>"; };
609609
EA698C022CCDD2FB0058BC19 /* EquatableVoid.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EquatableVoid.swift; sourceTree = "<group>"; };
610610
EA698C082CCDE7050058BC19 /* IdentifiableBox.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IdentifiableBox.swift; sourceTree = "<group>"; };
611611
/* End PBXFileReference section */
@@ -710,13 +710,13 @@
710710
AB24C561276757A30085C33A /* Support */ = {
711711
isa = PBXGroup;
712712
children = (
713+
EA5AA4A32EA9149E00BC2B5C /* AutoPlayHandler.swift */,
714+
EA5AA4A42EA9149E00BC2B5C /* GestureHandler.swift */,
715+
EA5AA4A52EA9149E00BC2B5C /* LiveTextHandler.swift */,
716+
EA5AA4A62EA9149E00BC2B5C /* PageHandler.swift */,
713717
ABC732C627B90F0900D47DA9 /* LiveTextView.swift */,
714718
AB69CB8126B3DAF400699359 /* ControlPanel.swift */,
715719
AB69CB7F26B3DABC00699359 /* AdvancedList.swift */,
716-
ABC8356227B366760091DCDB /* PageHandler.swift */,
717-
ABC8356027B357C50091DCDB /* GestureHandler.swift */,
718-
ABC732C027B8962000D47DA9 /* LiveTextHandler.swift */,
719-
ABC8356427B36E550091DCDB /* AutoPlayHandler.swift */,
720720
);
721721
path = Support;
722722
sourceTree = "<group>";
@@ -1855,7 +1855,6 @@
18551855
AB86ABF92782EC0D00E61E6A /* AboutView.swift in Sources */,
18561856
AB7BF2BA27A96562001865A3 /* Gallery.swift in Sources */,
18571857
AB0929BE2780032400F107CA /* EhSettingReducer.swift in Sources */,
1858-
ABC8356127B357C50091DCDB /* GestureHandler.swift in Sources */,
18591858
AB0929D42781EDDC00F107CA /* UserDefaultsClient.swift in Sources */,
18601859
AB0929D82782A83A00F107CA /* AuthorizationClient.swift in Sources */,
18611860
ABF45AEF25F3313D00ECB568 /* TorrentsView.swift in Sources */,
@@ -1900,7 +1899,6 @@
19001899
AB7BF2AB27A642FB001865A3 /* BrowsingCountry.swift in Sources */,
19011900
ABD49D60277C7722003D1A07 /* TabBarView.swift in Sources */,
19021901
AB26F59027ABF21000AB3468 /* Model5toModel6.xcmappingmodel in Sources */,
1903-
ABC8356327B366760091DCDB /* PageHandler.swift in Sources */,
19041902
AB706FA5278C3DDE0025A48A /* PreviewsView.swift in Sources */,
19051903
ABF45AE725F3313D00ECB568 /* RatingView.swift in Sources */,
19061904
AB2CED64268AB6AE003130F7 /* GalleryMO+CoreDataProperties.swift in Sources */,
@@ -1940,7 +1938,6 @@
19401938
AB706F8A278A4CC50025A48A /* PopularReducer.swift in Sources */,
19411939
ABD49D64277C7AD5003D1A07 /* TabBarReducer.swift in Sources */,
19421940
ABF45AF025F3313D00ECB568 /* CommentsView.swift in Sources */,
1943-
ABC8356527B36E550091DCDB /* AutoPlayHandler.swift in Sources */,
19441941
ABBB2671279AFA61007B6149 /* EnvironmentKeys.swift in Sources */,
19451942
AB7BF2DA27AA78CF001865A3 /* Reducer_Extension.swift in Sources */,
19461943
ABBD2B602768D7AD0072AED2 /* GalleryRankingCell.swift in Sources */,
@@ -1957,7 +1954,6 @@
19571954
EA698C092CCDE7090058BC19 /* IdentifiableBox.swift in Sources */,
19581955
AB0CFBD727C3B2D0004BD372 /* TagDetailView.swift in Sources */,
19591956
AB38A0CB25CA993D00764D64 /* ColorCodable.swift in Sources */,
1960-
ABC732C127B8962000D47DA9 /* LiveTextHandler.swift in Sources */,
19611957
ABBB2675279B933D007B6149 /* ReadingReducer.swift in Sources */,
19621958
ABF45AF425F3313D00ECB568 /* WebView.swift in Sources */,
19631959
AB7B29F626AC741600EE1F14 /* GenericList.swift in Sources */,
@@ -2000,6 +1996,10 @@
20001996
ABBB2638278FBD2F007B6149 /* SwiftUINavigation_Extension.swift in Sources */,
20011997
AB10117E26986B7D00C2C1A9 /* GalleryStateMO+CoreDataProperties.swift in Sources */,
20021998
AB26F59627ACCA1800AB3468 /* AppEnv.swift in Sources */,
1999+
EA5AA4A72EA9149E00BC2B5C /* PageHandler.swift in Sources */,
2000+
EA5AA4A82EA9149E00BC2B5C /* LiveTextHandler.swift in Sources */,
2001+
EA5AA4A92EA9149E00BC2B5C /* GestureHandler.swift in Sources */,
2002+
EA5AA4AA2EA9149E00BC2B5C /* AutoPlayHandler.swift in Sources */,
20032003
ABF45AE525F3313D00ECB568 /* PostCommentView.swift in Sources */,
20042004
AB358313269D7E89009466A5 /* DFRequest.swift in Sources */,
20052005
AB706F90278A5F680025A48A /* AppDelegateClient.swift in Sources */,
@@ -2096,7 +2096,7 @@
20962096
INFOPLIST_FILE = ShareExtension/Info.plist;
20972097
INFOPLIST_KEY_CFBundleDisplayName = ShareExtension;
20982098
INFOPLIST_KEY_NSHumanReadableCopyright = "";
2099-
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
2099+
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
21002100
LD_RUNPATH_SEARCH_PATHS = (
21012101
"$(inherited)",
21022102
"@executable_path/Frameworks",
@@ -2124,7 +2124,7 @@
21242124
INFOPLIST_FILE = ShareExtension/Info.plist;
21252125
INFOPLIST_KEY_CFBundleDisplayName = ShareExtension;
21262126
INFOPLIST_KEY_NSHumanReadableCopyright = "";
2127-
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
2127+
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
21282128
LD_RUNPATH_SEARCH_PATHS = (
21292129
"$(inherited)",
21302130
"@executable_path/Frameworks",
@@ -2274,7 +2274,7 @@
22742274
DEVELOPMENT_TEAM = 9SKQ7QTZ74;
22752275
ENABLE_PREVIEWS = YES;
22762276
INFOPLIST_FILE = EhPanda/App/Info.plist;
2277-
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
2277+
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
22782278
LD_RUNPATH_SEARCH_PATHS = (
22792279
"$(inherited)",
22802280
"@executable_path/Frameworks",
@@ -2303,7 +2303,7 @@
23032303
DEVELOPMENT_TEAM = 9SKQ7QTZ74;
23042304
ENABLE_PREVIEWS = YES;
23052305
INFOPLIST_FILE = EhPanda/App/Info.plist;
2306-
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
2306+
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
23072307
LD_RUNPATH_SEARCH_PATHS = (
23082308
"$(inherited)",
23092309
"@executable_path/Frameworks",
@@ -2327,7 +2327,7 @@
23272327
CURRENT_PROJECT_VERSION = 156;
23282328
DEVELOPMENT_TEAM = 9SKQ7QTZ74;
23292329
GENERATE_INFOPLIST_FILE = YES;
2330-
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
2330+
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
23312331
LD_RUNPATH_SEARCH_PATHS = (
23322332
"$(inherited)",
23332333
"@executable_path/Frameworks",
@@ -2354,7 +2354,7 @@
23542354
CURRENT_PROJECT_VERSION = 156;
23552355
DEVELOPMENT_TEAM = 9SKQ7QTZ74;
23562356
GENERATE_INFOPLIST_FILE = YES;
2357-
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
2357+
IPHONEOS_DEPLOYMENT_TARGET = 26.0;
23582358
LD_RUNPATH_SEARCH_PATHS = (
23592359
"$(inherited)",
23602360
"@executable_path/Frameworks",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict/>
5+
</plist>

0 commit comments

Comments
 (0)