Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UniformTypeIdentifiers] Implement Xcode 16.0 beta 1-6 changes. #21068

Merged
merged 2 commits into from
Aug 23, 2024
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
28 changes: 28 additions & 0 deletions src/uniformtypeidentifiers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,10 @@ interface UTTypes {
[Field ("UTTypeYAML")]
UTType Yaml { get; }

[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("UTTypeCSS")]
UTType Css { get; }

[Field ("UTTypeSourceCode")]
UTType SourceCode { get; }

Expand Down Expand Up @@ -354,9 +358,21 @@ interface UTTypes {
[Field ("UTTypeHEIC")]
UTType Heic { get; }

[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("UTTypeHEICS")]
UTType Heics { get; }

[Field ("UTTypeWebP")]
UTType WebP { get; }

[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("UTTypeEXR")]
UTType Exr { get; }

[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("UTTypeDNG")]
UTType Dng { get; }

[Field ("UTType3DContent")]
UTType ThreeDContent { get; }

Expand Down Expand Up @@ -492,6 +508,10 @@ interface UTTypes {
[Field ("UTTypeAppleArchive")]
UTType AppleArchive { get; }

[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("UTTypeTarArchive")]
UTType TarArchive { get; }

[Field ("UTTypeSpreadsheet")]
UTType Spreadsheet { get; }

Expand Down Expand Up @@ -546,6 +566,14 @@ interface UTTypes {
[Watch (10, 0), TV (17, 0), MacCatalyst (17, 0), Mac (14, 0), iOS (17, 0)]
[Field ("UTTypeAHAP")]
UTType Ahap { get; }

[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("UTTypeGeoJSON")]
UTType GeoJson { get; }

[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
[Field ("UTTypeLinkPresentationMetadata")]
UTType LinkPresentationMetadata { get; }
}

[Introduced (PlatformName.MacCatalyst, 14, 0)]
Expand Down
7 changes: 7 additions & 0 deletions tests/cecil-tests/Documentation.KnownFailures.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75830,23 +75830,28 @@ P:UniformTypeIdentifiers.UTTypes.Content
P:UniformTypeIdentifiers.UTTypes.CPlusPlusHeader
P:UniformTypeIdentifiers.UTTypes.CPlusPlusSource
P:UniformTypeIdentifiers.UTTypes.CSource
P:UniformTypeIdentifiers.UTTypes.Css
P:UniformTypeIdentifiers.UTTypes.Data
P:UniformTypeIdentifiers.UTTypes.Database
P:UniformTypeIdentifiers.UTTypes.DelimitedText
P:UniformTypeIdentifiers.UTTypes.Directory
P:UniformTypeIdentifiers.UTTypes.DiskImage
P:UniformTypeIdentifiers.UTTypes.Dng
P:UniformTypeIdentifiers.UTTypes.EmailMessage
P:UniformTypeIdentifiers.UTTypes.Epub
P:UniformTypeIdentifiers.UTTypes.Exe
P:UniformTypeIdentifiers.UTTypes.Executable
P:UniformTypeIdentifiers.UTTypes.Exr
P:UniformTypeIdentifiers.UTTypes.FileUrl
P:UniformTypeIdentifiers.UTTypes.FlatRtfd
P:UniformTypeIdentifiers.UTTypes.Folder
P:UniformTypeIdentifiers.UTTypes.Font
P:UniformTypeIdentifiers.UTTypes.Framework
P:UniformTypeIdentifiers.UTTypes.GeoJson
P:UniformTypeIdentifiers.UTTypes.Gif
P:UniformTypeIdentifiers.UTTypes.Gzip
P:UniformTypeIdentifiers.UTTypes.Heic
P:UniformTypeIdentifiers.UTTypes.Heics
P:UniformTypeIdentifiers.UTTypes.Heif
P:UniformTypeIdentifiers.UTTypes.Html
P:UniformTypeIdentifiers.UTTypes.Icns
Expand All @@ -75857,6 +75862,7 @@ P:UniformTypeIdentifiers.UTTypes.Item
P:UniformTypeIdentifiers.UTTypes.JavaScript
P:UniformTypeIdentifiers.UTTypes.Jpeg
P:UniformTypeIdentifiers.UTTypes.Json
P:UniformTypeIdentifiers.UTTypes.LinkPresentationMetadata
P:UniformTypeIdentifiers.UTTypes.LivePhoto
P:UniformTypeIdentifiers.UTTypes.Log
P:UniformTypeIdentifiers.UTTypes.M3uPlaylist
Expand Down Expand Up @@ -75907,6 +75913,7 @@ P:UniformTypeIdentifiers.UTTypes.SwiftSource
P:UniformTypeIdentifiers.UTTypes.SymbolicLink
P:UniformTypeIdentifiers.UTTypes.SystemPreferencesPane
P:UniformTypeIdentifiers.UTTypes.TabSeparatedText
P:UniformTypeIdentifiers.UTTypes.TarArchive
P:UniformTypeIdentifiers.UTTypes.Text
P:UniformTypeIdentifiers.UTTypes.ThreeDContent
P:UniformTypeIdentifiers.UTTypes.Tiff
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions tests/xtro-sharpie/iOS-UniformTypeIdentifiers.todo

This file was deleted.

7 changes: 0 additions & 7 deletions tests/xtro-sharpie/macOS-UniformTypeIdentifiers.todo

This file was deleted.

7 changes: 0 additions & 7 deletions tests/xtro-sharpie/tvOS-UniformTypeIdentifiers.todo

This file was deleted.

7 changes: 0 additions & 7 deletions tests/xtro-sharpie/watchOS-UniformTypeIdentifiers.todo

This file was deleted.