Update SF Symbols
This commit is contained in:
parent
f3de1b72b6
commit
b3c982b2b9
@ -1866,7 +1866,7 @@
|
||||
repositoryURL = "https://github.com/SFSafeSymbols/SFSafeSymbols";
|
||||
requirement = {
|
||||
kind = upToNextMajorVersion;
|
||||
minimumVersion = 5.3.0;
|
||||
minimumVersion = 6.0.0;
|
||||
};
|
||||
};
|
||||
E2FD1D502D4644B400B48627 /* XCRemoteSwiftPackageReference "SVGView" */ = {
|
||||
|
@ -132,8 +132,8 @@
|
||||
"kind" : "remoteSourceControl",
|
||||
"location" : "https://github.com/SFSafeSymbols/SFSafeSymbols",
|
||||
"state" : {
|
||||
"revision" : "e2e28f4e56e1769c2ec3c61c9355fc64eb7a535a",
|
||||
"version" : "5.3.0"
|
||||
"revision" : "3dd282d3269b061853a3b3bcd23a509d2aa166ce",
|
||||
"version" : "6.2.0"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -27,9 +27,9 @@ enum FileTypeCategory: String, CaseIterable {
|
||||
case .image: .photo
|
||||
case .code: .keyboard
|
||||
case .model: .cubeTransparent
|
||||
case .text: .docText
|
||||
case .text: .textDocument
|
||||
case .video: .video
|
||||
case .resource: .docZipper
|
||||
case .resource: .zipperPage
|
||||
case .audio: .speakerWave2CircleFill
|
||||
}
|
||||
}
|
||||
|
@ -59,7 +59,7 @@ struct FileContentView: View {
|
||||
}.foregroundStyle(.secondary)
|
||||
case .resource:
|
||||
VStack {
|
||||
Image(systemSymbol: .docQuestionmark)
|
||||
Image(systemSymbol: .questionmarkTextPage)
|
||||
.resizable()
|
||||
.aspectRatio(contentMode: .fit)
|
||||
.frame(width: iconSize)
|
||||
|
@ -10,7 +10,7 @@ struct FileToAddView: View {
|
||||
|
||||
var symbol: SFSymbol {
|
||||
if file.idAlreadyExists {
|
||||
return .docOnDoc
|
||||
return .documentOnDocument
|
||||
}
|
||||
if file.isSelected {
|
||||
return .checkmarkCircleFill
|
||||
|
@ -27,7 +27,7 @@ struct TextFileContentView: View {
|
||||
.textEditorStyle(.plain)
|
||||
.foregroundStyle(.primary)
|
||||
} else {
|
||||
Image(systemSymbol: .docText)
|
||||
Image(systemSymbol: .textDocument)
|
||||
.resizable()
|
||||
.aspectRatio(contentMode: .fit)
|
||||
.frame(width: 150)
|
||||
|
@ -68,13 +68,13 @@ struct PageContentResultsView: View {
|
||||
}
|
||||
+ results.missingLinkedPages.keys.map {
|
||||
TextWithSymbol(
|
||||
symbol: .doc,
|
||||
symbol: .document,
|
||||
color: .red,
|
||||
text: $0)
|
||||
}
|
||||
+ results.linkedPages.map {
|
||||
TextWithSymbol(
|
||||
symbol: .docBadgePlus,
|
||||
symbol: .documentBadgePlus,
|
||||
color: .blue,
|
||||
text: $0.title(in: language))
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ extension SettingsSection {
|
||||
case .paths: return .folder
|
||||
case .navigationBar: return .menubarArrowUpRectangle
|
||||
case .postFeed: return .rectangleGrid1x2
|
||||
case .pages: return .docRichtext
|
||||
case .pages: return .richtextPage
|
||||
case .tagOverview: return .tag
|
||||
case .audioPlayer: return .waveform
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user