refactor: Fix macOS standalone application

This commit is contained in:
世界
2026-01-05 01:21:24 +08:00
parent ef1c924c64
commit 59317f3c79
66 changed files with 2799 additions and 585 deletions
@@ -93,6 +93,14 @@ class FileProviderItem: NSObject, NSFileProviderItem {
return NSNumber(value: contents?.count ?? 0)
}
// MARK: - Local File Status
var isUploaded: Bool { true }
var isUploading: Bool { false }
var isDownloaded: Bool { true }
var isDownloading: Bool { false }
var isMostRecentVersionDownloaded: Bool { true }
private var isDirectory: Bool {
var isDir: ObjCBool = false
FileManager.default.fileExists(atPath: url.path, isDirectory: &isDir)