summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-02-26 21:57:40 -0800
committerFuwn <[email protected]>2025-02-26 21:57:40 -0800
commit2f0eef9b93bcba08b14d6db55260725b1aefdc64 (patch)
treebb65bfcc344d9609cb5c3a39b973cc70e1aab02d
parentfeat: Development commit (diff)
downloadsora-testing-2f0eef9b93bcba08b14d6db55260725b1aefdc64.tar.xz
sora-testing-2f0eef9b93bcba08b14d6db55260725b1aefdc64.zip
feat: Development commit
-rw-r--r--Localizable.xcstrings18
-rw-r--r--Sora/Views/Post/Details/PostDetailsTagsView.swift6
-rw-r--r--Sora/Views/Post/Details/PostDetailsView.swift1
3 files changed, 25 insertions, 0 deletions
diff --git a/Localizable.xcstrings b/Localizable.xcstrings
index f3adad6..087a297 100644
--- a/Localizable.xcstrings
+++ b/Localizable.xcstrings
@@ -1,6 +1,9 @@
{
"sourceLanguage" : "en",
"strings" : {
+ "%lld" : {
+
+ },
"Blur Content Ratings" : {
},
@@ -141,6 +144,9 @@
"Rabbit SVG created by Kim Sun Young" : {
},
+ "Refresh" : {
+
+ },
"Reset to Defaults" : {
"localizations" : {
"ja" : {
@@ -154,6 +160,9 @@
"Save Image" : {
},
+ "Save Tags to File During Download" : {
+
+ },
"Search" : {
"localizations" : {
"ja" : {
@@ -164,6 +173,9 @@
}
}
},
+ "Select a Post" : {
+
+ },
"Select Post" : {
},
@@ -177,6 +189,9 @@
}
}
},
+ "Share" : {
+
+ },
"Share Image" : {
},
@@ -196,6 +211,9 @@
"Tap the bookmark button on a search page to add a bookmark." : {
},
+ "Thumbnail Columns" : {
+
+ },
"Thumbnail Columns: %lld" : {
"localizations" : {
"ja" : {
diff --git a/Sora/Views/Post/Details/PostDetailsTagsView.swift b/Sora/Views/Post/Details/PostDetailsTagsView.swift
index 7bc04bc..94f9f69 100644
--- a/Sora/Views/Post/Details/PostDetailsTagsView.swift
+++ b/Sora/Views/Post/Details/PostDetailsTagsView.swift
@@ -20,3 +20,9 @@ struct PostDetailsTagsView: View {
}
}
}
+
+#Preview {
+ PostDetailsTagsView(
+ isPresented: .constant(true), tags: ["hololive", "absurdres", "nekomimi"]
+ )
+}
diff --git a/Sora/Views/Post/Details/PostDetailsView.swift b/Sora/Views/Post/Details/PostDetailsView.swift
index 578f59f..e6d090e 100644
--- a/Sora/Views/Post/Details/PostDetailsView.swift
+++ b/Sora/Views/Post/Details/PostDetailsView.swift
@@ -102,6 +102,7 @@ struct PostDetailsView: View {
}
.sheet(isPresented: $isTagsSheetPresented) {
PostDetailsTagsView(isPresented: $isTagsSheetPresented, tags: post.tags)
+ .frame(minHeight: 250)
}
}
}