Skip to content

Commit 6016b2c

Browse files
authored
[UniformTypeIdentifiers] Implement Xcode 16.0 beta 1-6 changes. (#21068)
Note: there were no changes in beta 2, beta 3, beta 4, beta 5 or beta 6.
1 parent d5b7674 commit 6016b2c

10 files changed

+35
-56
lines changed

src/uniformtypeidentifiers.cs

+28
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,10 @@ interface UTTypes {
230230
[Field ("UTTypeYAML")]
231231
UTType Yaml { get; }
232232

233+
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
234+
[Field ("UTTypeCSS")]
235+
UTType Css { get; }
236+
233237
[Field ("UTTypeSourceCode")]
234238
UTType SourceCode { get; }
235239

@@ -354,9 +358,21 @@ interface UTTypes {
354358
[Field ("UTTypeHEIC")]
355359
UTType Heic { get; }
356360

361+
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
362+
[Field ("UTTypeHEICS")]
363+
UTType Heics { get; }
364+
357365
[Field ("UTTypeWebP")]
358366
UTType WebP { get; }
359367

368+
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
369+
[Field ("UTTypeEXR")]
370+
UTType Exr { get; }
371+
372+
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
373+
[Field ("UTTypeDNG")]
374+
UTType Dng { get; }
375+
360376
[Field ("UTType3DContent")]
361377
UTType ThreeDContent { get; }
362378

@@ -492,6 +508,10 @@ interface UTTypes {
492508
[Field ("UTTypeAppleArchive")]
493509
UTType AppleArchive { get; }
494510

511+
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
512+
[Field ("UTTypeTarArchive")]
513+
UTType TarArchive { get; }
514+
495515
[Field ("UTTypeSpreadsheet")]
496516
UTType Spreadsheet { get; }
497517

@@ -546,6 +566,14 @@ interface UTTypes {
546566
[Watch (10, 0), TV (17, 0), MacCatalyst (17, 0), Mac (14, 0), iOS (17, 0)]
547567
[Field ("UTTypeAHAP")]
548568
UTType Ahap { get; }
569+
570+
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
571+
[Field ("UTTypeGeoJSON")]
572+
UTType GeoJson { get; }
573+
574+
[Watch (11, 0), TV (18, 0), Mac (15, 0), iOS (18, 0), MacCatalyst (18, 0)]
575+
[Field ("UTTypeLinkPresentationMetadata")]
576+
UTType LinkPresentationMetadata { get; }
549577
}
550578

551579
[Introduced (PlatformName.MacCatalyst, 14, 0)]

tests/cecil-tests/Documentation.KnownFailures.txt

+7
Original file line numberDiff line numberDiff line change
@@ -76055,23 +76055,28 @@ P:UniformTypeIdentifiers.UTTypes.Content
7605576055
P:UniformTypeIdentifiers.UTTypes.CPlusPlusHeader
7605676056
P:UniformTypeIdentifiers.UTTypes.CPlusPlusSource
7605776057
P:UniformTypeIdentifiers.UTTypes.CSource
76058+
P:UniformTypeIdentifiers.UTTypes.Css
7605876059
P:UniformTypeIdentifiers.UTTypes.Data
7605976060
P:UniformTypeIdentifiers.UTTypes.Database
7606076061
P:UniformTypeIdentifiers.UTTypes.DelimitedText
7606176062
P:UniformTypeIdentifiers.UTTypes.Directory
7606276063
P:UniformTypeIdentifiers.UTTypes.DiskImage
76064+
P:UniformTypeIdentifiers.UTTypes.Dng
7606376065
P:UniformTypeIdentifiers.UTTypes.EmailMessage
7606476066
P:UniformTypeIdentifiers.UTTypes.Epub
7606576067
P:UniformTypeIdentifiers.UTTypes.Exe
7606676068
P:UniformTypeIdentifiers.UTTypes.Executable
76069+
P:UniformTypeIdentifiers.UTTypes.Exr
7606776070
P:UniformTypeIdentifiers.UTTypes.FileUrl
7606876071
P:UniformTypeIdentifiers.UTTypes.FlatRtfd
7606976072
P:UniformTypeIdentifiers.UTTypes.Folder
7607076073
P:UniformTypeIdentifiers.UTTypes.Font
7607176074
P:UniformTypeIdentifiers.UTTypes.Framework
76075+
P:UniformTypeIdentifiers.UTTypes.GeoJson
7607276076
P:UniformTypeIdentifiers.UTTypes.Gif
7607376077
P:UniformTypeIdentifiers.UTTypes.Gzip
7607476078
P:UniformTypeIdentifiers.UTTypes.Heic
76079+
P:UniformTypeIdentifiers.UTTypes.Heics
7607576080
P:UniformTypeIdentifiers.UTTypes.Heif
7607676081
P:UniformTypeIdentifiers.UTTypes.Html
7607776082
P:UniformTypeIdentifiers.UTTypes.Icns
@@ -76082,6 +76087,7 @@ P:UniformTypeIdentifiers.UTTypes.Item
7608276087
P:UniformTypeIdentifiers.UTTypes.JavaScript
7608376088
P:UniformTypeIdentifiers.UTTypes.Jpeg
7608476089
P:UniformTypeIdentifiers.UTTypes.Json
76090+
P:UniformTypeIdentifiers.UTTypes.LinkPresentationMetadata
7608576091
P:UniformTypeIdentifiers.UTTypes.LivePhoto
7608676092
P:UniformTypeIdentifiers.UTTypes.Log
7608776093
P:UniformTypeIdentifiers.UTTypes.M3uPlaylist
@@ -76132,6 +76138,7 @@ P:UniformTypeIdentifiers.UTTypes.SwiftSource
7613276138
P:UniformTypeIdentifiers.UTTypes.SymbolicLink
7613376139
P:UniformTypeIdentifiers.UTTypes.SystemPreferencesPane
7613476140
P:UniformTypeIdentifiers.UTTypes.TabSeparatedText
76141+
P:UniformTypeIdentifiers.UTTypes.TarArchive
7613576142
P:UniformTypeIdentifiers.UTTypes.Text
7613676143
P:UniformTypeIdentifiers.UTTypes.ThreeDContent
7613776144
P:UniformTypeIdentifiers.UTTypes.Tiff

tests/xtro-sharpie/api-annotations-dotnet/MacCatalyst-UniformTypeIdentifiers.todo

-7
This file was deleted.

tests/xtro-sharpie/api-annotations-dotnet/iOS-UniformTypeIdentifiers.todo

-7
This file was deleted.

tests/xtro-sharpie/api-annotations-dotnet/macOS-UniformTypeIdentifiers.todo

-7
This file was deleted.

tests/xtro-sharpie/api-annotations-dotnet/tvOS-UniformTypeIdentifiers.todo

-7
This file was deleted.

tests/xtro-sharpie/iOS-UniformTypeIdentifiers.todo

-7
This file was deleted.

tests/xtro-sharpie/macOS-UniformTypeIdentifiers.todo

-7
This file was deleted.

tests/xtro-sharpie/tvOS-UniformTypeIdentifiers.todo

-7
This file was deleted.

tests/xtro-sharpie/watchOS-UniformTypeIdentifiers.todo

-7
This file was deleted.

0 commit comments

Comments
 (0)