Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions iosApp/filter_localizations.py

This file was deleted.

8 changes: 4 additions & 4 deletions iosApp/iosApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2025072801;
CURRENT_PROJECT_VERSION = 2025080701;
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
DEVELOPMENT_TEAM = 7LFDZ96332;
ENABLE_PREVIEWS = YES;
Expand All @@ -592,7 +592,7 @@
"@executable_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 15.0;
MARKETING_VERSION = 0.4.5;
MARKETING_VERSION = 0.4.6;
OTHER_LDFLAGS = (
"$(inherited)",
"-lsqlite3",
Expand Down Expand Up @@ -622,7 +622,7 @@
CODE_SIGN_IDENTITY = "Apple Development";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2025072801;
CURRENT_PROJECT_VERSION = 2025080701;
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
DEVELOPMENT_TEAM = 7LFDZ96332;
ENABLE_PREVIEWS = YES;
Expand All @@ -640,7 +640,7 @@
"@executable_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 15.0;
MARKETING_VERSION = 0.4.5;
MARKETING_VERSION = 0.4.6;
OTHER_LDFLAGS = (
"$(inherited)",
"-lsqlite3",
Expand Down
6 changes: 3 additions & 3 deletions iosApp/iosApp/Data/FLTabSettings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -987,11 +987,11 @@ public enum FLTabSettingsError: Error {
var localizedDescription: String {
switch self {
case let .serializationError(message):
"序列化错误: \(message)"
"error: \(message)"
case let .corruptionError(message):
"数据损坏: \(message)"
"data error: \(message)"
case let .storageError(message):
"存储错误: \(message)"
"save error: \(message)"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion iosApp/iosApp/FlareApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ struct FlareApp: SwiftUI.App {
#else
@UIApplicationDelegateAdaptor(AppDelegate.self) var delegate
#endif
@State private var router = FlareRouter()
@StateObject private var router = FlareRouter.shared
@StateObject private var podcastManager = IOSPodcastManager.shared
@State var theme = FlareTheme.shared

Expand Down
Loading