Skip to content

Commit 5fe8a75

Browse files
committed
Minor fixes.
1 parent 37bfb1b commit 5fe8a75

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

Hanami.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -1222,7 +1222,7 @@
12221222
CODE_SIGN_ENTITLEMENTS = Hanami/Hanami.entitlements;
12231223
CODE_SIGN_IDENTITY = "Apple Development";
12241224
CODE_SIGN_STYLE = Automatic;
1225-
CURRENT_PROJECT_VERSION = 11;
1225+
CURRENT_PROJECT_VERSION = 12;
12261226
DEVELOPMENT_ASSET_PATHS = "\"Hanami/Preview Content\"";
12271227
DEVELOPMENT_TEAM = HJ9678T652;
12281228
ENABLE_PREVIEWS = YES;
@@ -1243,7 +1243,7 @@
12431243
"$(inherited)",
12441244
"@executable_path/Frameworks",
12451245
);
1246-
MARKETING_VERSION = 0.23.2;
1246+
MARKETING_VERSION = 0.23.3;
12471247
PRODUCT_BUNDLE_IDENTIFIER = moe.mkpwnz.Hanami;
12481248
PRODUCT_NAME = "Hanami - Manga Reader";
12491249
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -1263,7 +1263,7 @@
12631263
CODE_SIGN_ENTITLEMENTS = Hanami/Hanami.entitlements;
12641264
CODE_SIGN_IDENTITY = "Apple Development";
12651265
CODE_SIGN_STYLE = Automatic;
1266-
CURRENT_PROJECT_VERSION = 11;
1266+
CURRENT_PROJECT_VERSION = 12;
12671267
DEVELOPMENT_ASSET_PATHS = "\"Hanami/Preview Content\"";
12681268
DEVELOPMENT_TEAM = HJ9678T652;
12691269
ENABLE_PREVIEWS = YES;
@@ -1284,7 +1284,7 @@
12841284
"$(inherited)",
12851285
"@executable_path/Frameworks",
12861286
);
1287-
MARKETING_VERSION = 0.23.2;
1287+
MARKETING_VERSION = 0.23.3;
12881288
PRODUCT_BUNDLE_IDENTIFIER = moe.mkpwnz.Hanami;
12891289
PRODUCT_NAME = "Hanami - Manga Reader";
12901290
PROVISIONING_PROFILE_SPECIFIER = "";

Hanami.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"kind" : "remoteSourceControl",
2424
"location" : "https://github.com/kean/Nuke",
2525
"state" : {
26-
"revision" : "67bd45931180f652159e3342575277a7f197b3ab",
27-
"version" : "11.6.2"
26+
"revision" : "33f7e93be5d4ec027d42af77a8ec4680d1862ad2",
27+
"version" : "11.6.4"
2828
}
2929
},
3030
{
@@ -41,8 +41,8 @@
4141
"kind" : "remoteSourceControl",
4242
"location" : "https://github.com/pointfreeco/swift-case-paths",
4343
"state" : {
44-
"revision" : "c3a42e8d1a76ff557cf565ed6d8b0aee0e6e75af",
45-
"version" : "0.11.0"
44+
"revision" : "3c4eea896f8ee9cbe1c11d1d3d46b0f2809da958",
45+
"version" : "0.12.0"
4646
}
4747
},
4848
{
@@ -68,8 +68,8 @@
6868
"kind" : "remoteSourceControl",
6969
"location" : "https://github.com/pointfreeco/swift-composable-architecture",
7070
"state" : {
71-
"revision" : "1b998c43b3b3505876db6f66e03243dd2453e93a",
72-
"version" : "0.50.3"
71+
"revision" : "cd22f6a1b3a6210e1e365cbfa8706dbb1736ca27",
72+
"version" : "0.51.0"
7373
}
7474
},
7575
{
@@ -122,8 +122,8 @@
122122
"kind" : "remoteSourceControl",
123123
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
124124
"state" : {
125-
"revision" : "ace21305e0dd3a9e749aef79fef14be79a3b4669",
126-
"version" : "0.8.2"
125+
"revision" : "62041e6016a30f56952f5d7d3f12a3fd7029e1cd",
126+
"version" : "0.8.3"
127127
}
128128
}
129129
],

Hanami/App/Core/Manga/MangaView/Online/OnlineMangaView.swift

+9-9
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,6 @@ struct OnlineMangaView: View {
5959
LazyVStack(pinnedViews: .sectionHeaders) {
6060
header
6161
.id("header")
62-
.popup(isPresented: $showFirstChaptersPopup) {
63-
firstChaptersOptions
64-
.environment(\.colorScheme, colorScheme)
65-
} customize: {
66-
$0
67-
.closeOnTap(false)
68-
.closeOnTapOutside(true)
69-
.backgroundColor(.black.opacity(0.4))
70-
}
7162

7263
Section {
7364
mangaBodyView
@@ -76,6 +67,15 @@ struct OnlineMangaView: View {
7667
} footer: {
7768
footer
7869
}
70+
.popup(isPresented: $showFirstChaptersPopup) {
71+
firstChaptersOptions
72+
.environment(\.colorScheme, colorScheme)
73+
} customize: {
74+
$0
75+
.closeOnTap(false)
76+
.closeOnTapOutside(true)
77+
.backgroundColor(.black.opacity(0.4))
78+
}
7979
}
8080
.onChange(of: viewStore.selectedTab) { _ in
8181
if isCoverArtDisappeared {

0 commit comments

Comments
 (0)