summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-22 02:22:32 -0700
committerFuwn <[email protected]>2025-09-22 02:22:32 -0700
commit1d634eafc0c316e0a88d1e321a9025f1c944686a (patch)
tree673eca151426d0db04ab4cbb3ff10f9ed2a9c8df
parentfeat: Development commit (diff)
downloadsora-testing-1d634eafc0c316e0a88d1e321a9025f1c944686a.tar.xz
sora-testing-1d634eafc0c316e0a88d1e321a9025f1c944686a.zip
feat: Development commit
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift (renamed from Sora/Views/Settings/Section/SettingsContentRatingsView.swift)4
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionCreditsView.swift (renamed from Sora/Views/Settings/Section/SettingsCreditsView.swift)2
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionDebugView.swift (renamed from Sora/Views/Settings/Section/SettingsDebugView.swift)2
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionImportExportView.swift (renamed from Sora/Views/Settings/Section/SettingsImportExportView.swift)2
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionSearchView.swift (renamed from Sora/Views/Settings/Section/SettingsSearchView.swift)2
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionSettingsView.swift (renamed from Sora/Views/Settings/Section/SettingsSettingsView.swift)2
-rw-r--r--Sora/Views/Settings/Section/SettingsSectionThumbnailsView.swift4
-rw-r--r--Sora/Views/Settings/SettingsView.swift10
8 files changed, 14 insertions, 14 deletions
diff --git a/Sora/Views/Settings/Section/SettingsContentRatingsView.swift b/Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift
index 39524ec..85b28af 100644
--- a/Sora/Views/Settings/Section/SettingsContentRatingsView.swift
+++ b/Sora/Views/Settings/Section/SettingsSectionContentRatingsView.swift
@@ -1,6 +1,6 @@
import SwiftUI
-struct SettingsContentRatingsView: View {
+struct SettingsSectionContentRatingsView: View {
@EnvironmentObject var settings: SettingsManager
var body: some View {
@@ -69,6 +69,6 @@ struct SettingsContentRatingsView: View {
}
#Preview {
- SettingsContentRatingsView()
+ SettingsSectionContentRatingsView()
.environmentObject(SettingsManager())
}
diff --git a/Sora/Views/Settings/Section/SettingsCreditsView.swift b/Sora/Views/Settings/Section/SettingsSectionCreditsView.swift
index 741ce25..f96f27b 100644
--- a/Sora/Views/Settings/Section/SettingsCreditsView.swift
+++ b/Sora/Views/Settings/Section/SettingsSectionCreditsView.swift
@@ -1,6 +1,6 @@
import SwiftUI
-struct SettingsCreditsView: View {
+struct SettingsSectionCreditsView: View {
var body: some View {
Text("Rabbit SVG created by Kim Sun Young")
.fontWeight(.light)
diff --git a/Sora/Views/Settings/Section/SettingsDebugView.swift b/Sora/Views/Settings/Section/SettingsSectionDebugView.swift
index 81c7b68..83acb81 100644
--- a/Sora/Views/Settings/Section/SettingsDebugView.swift
+++ b/Sora/Views/Settings/Section/SettingsSectionDebugView.swift
@@ -1,6 +1,6 @@
import SwiftUI
-struct SettingsDebugView: View {
+struct SettingsSectionDebugView: View {
@EnvironmentObject private var settingsManager: SettingsManager
var body: some View {
diff --git a/Sora/Views/Settings/Section/SettingsImportExportView.swift b/Sora/Views/Settings/Section/SettingsSectionImportExportView.swift
index d9f23b7..b74fe4b 100644
--- a/Sora/Views/Settings/Section/SettingsImportExportView.swift
+++ b/Sora/Views/Settings/Section/SettingsSectionImportExportView.swift
@@ -1,7 +1,7 @@
import SwiftUI
import UniformTypeIdentifiers
-struct SettingsImportExportView: View {
+struct SettingsSectionImportExportView: View {
@EnvironmentObject private var settings: SettingsManager
@State private var isFileExporterPresented = false
@State private var isFileImporterPresented = false
diff --git a/Sora/Views/Settings/Section/SettingsSearchView.swift b/Sora/Views/Settings/Section/SettingsSectionSearchView.swift
index 34b123b..6249c4a 100644
--- a/Sora/Views/Settings/Section/SettingsSearchView.swift
+++ b/Sora/Views/Settings/Section/SettingsSectionSearchView.swift
@@ -1,6 +1,6 @@
import SwiftUI
-struct SettingsSearchView: View {
+struct SettingsSectionSearchView: View {
@EnvironmentObject var settings: SettingsManager
var body: some View {
diff --git a/Sora/Views/Settings/Section/SettingsSettingsView.swift b/Sora/Views/Settings/Section/SettingsSectionSettingsView.swift
index 0b10d31..273cc82 100644
--- a/Sora/Views/Settings/Section/SettingsSettingsView.swift
+++ b/Sora/Views/Settings/Section/SettingsSectionSettingsView.swift
@@ -1,6 +1,6 @@
import SwiftUI
-struct SettingsSettingsView: View {
+struct SettingsSectionSettingsView: View {
@EnvironmentObject var settings: SettingsManager
var body: some View {
diff --git a/Sora/Views/Settings/Section/SettingsSectionThumbnailsView.swift b/Sora/Views/Settings/Section/SettingsSectionThumbnailsView.swift
index 27c4676..ddfbdcc 100644
--- a/Sora/Views/Settings/Section/SettingsSectionThumbnailsView.swift
+++ b/Sora/Views/Settings/Section/SettingsSectionThumbnailsView.swift
@@ -38,12 +38,12 @@ struct SettingsSectionThumbnailsView: View {
isShowingContentFiltering.toggle()
}
.sheet(isPresented: $isShowingContentFiltering) {
- SettingsContentRatingsView()
+ SettingsSectionContentRatingsView()
.frame(minHeight: 250)
}
.trailingFrame()
#else
- NavigationLink(destination: SettingsContentRatingsView()) {
+ NavigationLink(destination: SettingsSectionContentRatingsView()) {
Text("Content Filtering")
}
#endif
diff --git a/Sora/Views/Settings/SettingsView.swift b/Sora/Views/Settings/SettingsView.swift
index 6c034e3..3f1d309 100644
--- a/Sora/Views/Settings/SettingsView.swift
+++ b/Sora/Views/Settings/SettingsView.swift
@@ -19,7 +19,7 @@ struct SettingsView: View {
}
Section(header: Text("Search")) {
- SettingsSearchView()
+ SettingsSectionSearchView()
}
Section(header: Text("Collections")) {
@@ -29,21 +29,21 @@ struct SettingsView: View {
}
Section(header: Text("Settings")) {
- SettingsSettingsView()
+ SettingsSectionSettingsView()
}
Section(header: Text("Import & Export")) {
- SettingsImportExportView()
+ SettingsSectionImportExportView()
}
#if DEBUG
Section(header: Text("Debug")) {
- SettingsDebugView()
+ SettingsSectionDebugView()
}
#endif
Section(header: Text("Credits")) {
- SettingsCreditsView()
+ SettingsSectionCreditsView()
}
}
#if os(macOS)