├── .circleci └── config.yml ├── .github └── workflows │ └── assetlib.yml ├── .gitignore ├── .hound.yml ├── .swift-version ├── .swiftformat ├── .swiftlint.yml ├── Data ├── Data │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── BigAppIcon.appiconset │ │ └── Contents.json │ ├── BigImageSet.imageset │ │ └── Contents.json │ ├── Contents.json │ ├── ImageSet.imageset │ │ └── Contents.json │ ├── ImageSet02.imageset │ │ └── Contents.json │ ├── ImageSetScaled.imageset │ │ └── Contents.json │ ├── Localized.imageset │ │ └── Contents.json │ ├── MasterAppIcon.appiconset │ │ └── Contents.json │ ├── SingleImage.imageset │ │ └── Contents.json │ ├── group │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── iOS AppIcon.appiconset │ │ │ └── Contents.json │ ├── iOS AppIcon.appiconset │ │ └── Contents.json │ └── macOS AppIcon.appiconset │ │ └── Contents.json ├── InvalidScale │ ├── ImageSet.imageset │ │ └── Contents.json │ └── ImageSetScaled.imageset │ │ └── Contents.json └── InvalidSize │ ├── AppIcon.appiconset │ └── Contents.json │ ├── iOS AppIcon.appiconset │ └── Contents.json │ └── macOS AppIcon.appiconset │ └── Contents.json ├── Documentation └── Reference │ ├── AssetLib │ ├── README.md │ ├── enums │ │ ├── AppIconDevice.md │ │ ├── AppleWatchAutoScaingMethod.md │ │ ├── AppleWatchRole.md │ │ ├── AppleWatchScreenWidth.md │ │ ├── AssetSpecificationProperties.CodingKeys.md │ │ ├── CompressionType.md │ │ ├── Contrast.md │ │ ├── DeviceSubType.md │ │ ├── DisplayGamut.md │ │ ├── GraphicsFeatureSet.md │ │ ├── ImageIdiom.md │ │ ├── ImageSetDevice.md │ │ ├── LanguageDirection.md │ │ ├── Luminosity.md │ │ ├── Memory.md │ │ ├── RenderingIntent.md │ │ ├── Scales.md │ │ ├── SizeClass.md │ │ ├── Sizes.md │ │ ├── TemplateResult.md │ │ ├── TemplateScaling.md │ │ └── TemplateType.md │ ├── extensions │ │ ├── Appearance.md │ │ ├── DecodingError.md │ │ └── String.md │ ├── protocols │ │ ├── AppIconDeviceIdiomMapProtocol.md │ │ ├── AppIconMasterDocumentProviderProtocol.md │ │ ├── Appearance.md │ │ ├── AppearanceValue.md │ │ ├── AssetSpecificationDocumentProtocol.md │ │ ├── AssetSpecificationMetadataProtocol.md │ │ ├── AssetSpecificationPropertiesProtocol.md │ │ ├── AssetSpecificationProtocol.md │ │ ├── AssetURLIntializerProtocol.md │ │ ├── ISDeviceIdiomProviderProtocol.md │ │ ├── IdiomAppIconSpecProvider.md │ │ ├── IdiomScaleProviderProtocol.md │ │ ├── ImageIdiomDisplayGamutProtocol.md │ │ ├── TemplateDecoder.md │ │ ├── TemplateEncoder.md │ │ ├── TemplateResultParserProtocol.md │ │ ├── TemplateTypeParserProtocol.md │ │ └── TemplateWriterProtocol.md │ ├── structs │ │ ├── AnyAppearance.md │ │ ├── AppIconDeviceIdiomMap.md │ │ ├── AppIconMasterDocumentProvider.md │ │ ├── AppIconTemplate.md │ │ ├── AppIconTemplateBuilder.md │ │ ├── AssetSpecification.md │ │ ├── AssetSpecificationDocument.md │ │ ├── AssetSpecificationMetadata.md │ │ ├── AssetSpecificationProperties.md │ │ ├── AssetURLInitializer.md │ │ ├── ISDeviceIdiomProvider.md │ │ ├── IdiomAppIconSpecMap.md │ │ ├── IdiomScaleProvider.md │ │ ├── ImageIdiomDisplayGamut.md │ │ ├── ImageSetTemplate.md │ │ ├── ImageSetTemplateBuilder.md │ │ ├── Size.md │ │ ├── TemplateDetails.md │ │ ├── TemplateResultParser.md │ │ ├── TemplateTypeParser.md │ │ ├── TemplateWriter.md │ │ └── ValuedAppearance.md │ └── typealiases │ │ └── ImageSetIdiomDetail.md │ ├── README.md │ ├── assetlibrary │ └── README.md │ ├── enums │ ├── AppIconDevice.md │ ├── AppleWatchAutoScaingMethod.md │ ├── AppleWatchRole.md │ ├── AppleWatchScreenWidth.md │ ├── AppleWatchType.md │ ├── AssetSpecificationProperties.CodingKeys.md │ ├── CodingKeys.md │ ├── CompressionType.md │ ├── Contrast.md │ ├── DeviceSubType.md │ ├── DisplayGamut.md │ ├── GraphicsFeatureSet.md │ ├── ImageIdiom.md │ ├── ImageSetDevice.md │ ├── LanguageDirection.md │ ├── Luminosity.md │ ├── Memory.md │ ├── RenderingIntent.md │ ├── Scales.md │ ├── SizeClass.md │ ├── Sizes.md │ ├── TemplateResult.md │ ├── TemplateScaling.md │ └── TemplateType.md │ ├── extensions │ ├── Appearance.md │ ├── DecodingError.md │ └── String.md │ ├── protocols │ ├── AppIconDeviceIdiomMapProtocol.md │ ├── AppIconMasterDocumentProviderProtocol.md │ ├── Appearance.md │ ├── AppearanceValue.md │ ├── AssetSpecificationDocumentProtocol.md │ ├── AssetSpecificationMetadataProtocol.md │ ├── AssetSpecificationPropertiesProtocol.md │ ├── AssetSpecificationProtocol.md │ ├── AssetURLIntializerProtocol.md │ ├── ISDeviceIdiomProviderProtocol.md │ ├── IdiomAppIconSpecProvider.md │ ├── IdiomScaleProviderProtocol.md │ ├── ImageIdiomAppIconSpecificationProvider.md │ ├── ImageIdiomDependencyProvider.md │ ├── ImageIdiomDisplayGamutProtocol.md │ ├── ImageIdiomScaleProvider.md │ ├── TemplateDecoder.md │ ├── TemplateDetailsFactoryProtocol.md │ ├── TemplateEncoder.md │ ├── TemplateParser.md │ ├── TemplateParserProtocol.md │ ├── TemplateResultParserProtocol.md │ ├── TemplateTypeParserProtocol.md │ └── TemplateWriterProtocol.md │ ├── structs │ ├── AnyAppearance.md │ ├── AppIconDeviceIdiomMap.md │ ├── AppIconMasterDocumentProvider.md │ ├── AppIconTemplate.md │ ├── AppIconTemplateBuilder.md │ ├── AssetSpecification.md │ ├── AssetSpecificationDocument.md │ ├── AssetSpecificationMetadata.md │ ├── AssetSpecificationProperties.md │ ├── AssetURLInitializer.md │ ├── ISDeviceIdiomProvider.md │ ├── IdiomAppIconSpecMap.md │ ├── IdiomScaleProvider.md │ ├── ImageIdiomAppIconSpecificationMap.md │ ├── ImageIdiomDisplayGamut.md │ ├── ImageSetDeviceIdiomProvider.md │ ├── ImageSetTemplate.md │ ├── ImageSetTemplateBuilder.md │ ├── ScaleListProvider.md │ ├── Size.md │ ├── TemplateDetails.md │ ├── TemplateDetailsFactory.md │ ├── TemplateParser.md │ ├── TemplateResultParser.md │ ├── TemplateTypeParser.md │ ├── TemplateWriter.md │ ├── ValueAppearance.md │ └── ValuedAppearance.md │ └── typealiases │ └── ImageSetIdiomDetail.md ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Shared │ ├── DocumentMap.swift │ └── OrderedDictionary.swift ├── Templates │ ├── Assets.xcassets │ │ └── Contents.json │ ├── appicon-devices.json │ ├── appicon-gamut.json │ └── imageset-template.json ├── iOS Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── DocumentsTableViewController.swift │ └── Info.plist ├── iOS ExampleTests │ ├── Info.plist │ └── iOSExampleTests.swift ├── macOS Example │ ├── AppDelegate.swift │ ├── Application.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── DocumentsTableViewController.swift │ ├── Info.plist │ └── macOS_Example.entitlements ├── macOS ExampleTests │ ├── Info.plist │ └── macOSExampleTests.swift ├── tvOS Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - App Store.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── tvOS ExampleTests │ ├── Info.plist │ └── tvOSExampleTests.swift ├── watchOS Example Extension │ ├── Assets.xcassets │ │ └── Contents.json │ ├── ExtensionDelegate.swift │ ├── Info.plist │ └── InterfaceController.swift └── watchOS Example │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── Interface.storyboard │ └── Info.plist ├── LICENSE ├── Package.resolved ├── Package.swift ├── Package@swift-5.5.swift ├── README.md ├── Sources ├── AssetLib │ ├── Array.swift │ ├── Controllers │ │ ├── AppIconDeviceIdiomMap.swift │ │ ├── AppIconMasterDocumentProvider.swift │ │ ├── AppIconTemplateBuilder.swift │ │ ├── AssetTemplateBuilder.swift │ │ ├── AssetURLInitializer.swift │ │ ├── ISDeviceIdiomProvider.swift │ │ ├── IdiomAppIconSpecMap.swift │ │ ├── IdiomScaleProvider.swift │ │ ├── ImageIdiomDisplayGamut.swift │ │ ├── ImageSetTemplateBuilder.swift │ │ ├── TemplateResultParser.swift │ │ ├── TemplateTypeParser.swift │ │ └── TemplateWriter.swift │ ├── DecodingError.swift │ ├── Float.swift │ ├── Models │ │ ├── AnyAppearance.swift │ │ ├── AppIconTemplate.swift │ │ ├── AppIconTemplateBase64.swift │ │ ├── Appearance.swift │ │ ├── AppearanceValue.swift │ │ ├── AppleWatchAutoScaingMethod.swift │ │ ├── AppleWatchRole.swift │ │ ├── AppleWatchScreenWidth.swift │ │ ├── AssetSpecification.swift │ │ ├── AssetSpecificationBuilder.swift │ │ ├── AssetSpecificationDocument.swift │ │ ├── AssetSpecificationMetadata.swift │ │ ├── AssetSpecificationProperties.swift │ │ ├── CompressType.swift │ │ ├── Contrast.swift │ │ ├── Device.swift │ │ ├── DeviceSubType.swift │ │ ├── DisplayGamut.swift │ │ ├── GraphicsFeatureSet.swift │ │ ├── ImageIdiom.swift │ │ ├── ImageSetDevice.swift │ │ ├── ImageSetIdiomDetail.swift │ │ ├── ImageSetTemplate.swift │ │ ├── LanguageDirection.swift │ │ ├── Luminosity.swift │ │ ├── Memory.swift │ │ ├── ProductOperation.swift │ │ ├── RenderingIntent.swift │ │ ├── Scales.swift │ │ ├── Size.swift │ │ ├── SizeClass.swift │ │ ├── Sizes.swift │ │ ├── TemplateDetails.swift │ │ ├── TemplateResult.swift │ │ ├── TemplateScaling.swift │ │ ├── TemplateType.swift │ │ └── ValuedAppearance.swift │ ├── Protocols │ │ ├── AppIconDeviceIdiomMapProtocol.swift │ │ ├── AppIconMasterDocumentProviderProtocol.swift │ │ ├── AssetSpecificationDocumentProtocol.swift │ │ ├── AssetSpecificationMetadataProtocol.swift │ │ ├── AssetSpecificationPropertiesProtocol.swift │ │ ├── AssetSpecificationProtocol.swift │ │ ├── AssetURLIntializerProtocol.swift │ │ ├── ISDeviceIdiomProviderProtocol.swift │ │ ├── IdiomAppIconSpecProvider.swift │ │ ├── IdiomScaleProviderProtocol.swift │ │ ├── ImageIdiomDisplayGamutProtocol.swift │ │ ├── TemplateDecoder.swift │ │ ├── TemplateEncoder.swift │ │ ├── TemplateResultParserProtocol.swift │ │ ├── TemplateTypeParserProtocol.swift │ │ └── TemplateWriterProtocol.swift │ └── String.swift └── assetlibrary │ ├── AssetLibraryCommand.swift │ └── main.swift ├── Tests ├── AssetLibTests │ ├── Extensions │ │ ├── Array.swift │ │ ├── AssetSpecificationDocument.swift │ │ ├── Data.swift │ │ ├── Dictionary.swift │ │ └── TemplateResult.swift │ ├── Models │ │ ├── ErrorDecoder.swift │ │ ├── MockDecoder.swift │ │ ├── MockEncoder.swift │ │ ├── MockError.swift │ │ ├── MockValueType.swift │ │ └── SortedDictionary.swift │ ├── Tests │ │ ├── AppIconTemplateBuilderTests.swift │ │ ├── AssetSpecificationTests.swift │ │ ├── AssetURLInitializerTests.swift │ │ ├── ISDeviceIdiomProviderTests.swift │ │ ├── IdiomScaleProviderTestsTests.swift │ │ ├── ImageSetTemplateBuilderTests.swift │ │ ├── SizesTest.swift │ │ ├── TemplateDecodingTests.swift │ │ ├── TemplateResultParserTests.swift │ │ ├── TemplateTypeParserTests.swift │ │ ├── TemplateWriterTests.swift │ │ └── ValueAppearanceTests.swift │ └── XCTestManifests.swift └── LinuxMain.swift ├── bitrise.yml ├── codecov.yml ├── logo.png └── logo.svg /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/assetlib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/.github/workflows/assetlib.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/.gitignore -------------------------------------------------------------------------------- /.hound.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/.hound.yml -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Data/Data/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/Data/BigAppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/BigAppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/Data/BigImageSet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/BigImageSet.imageset/Contents.json -------------------------------------------------------------------------------- /Data/Data/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/Contents.json -------------------------------------------------------------------------------- /Data/Data/ImageSet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/ImageSet.imageset/Contents.json -------------------------------------------------------------------------------- /Data/Data/ImageSet02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/ImageSet02.imageset/Contents.json -------------------------------------------------------------------------------- /Data/Data/ImageSetScaled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/ImageSetScaled.imageset/Contents.json -------------------------------------------------------------------------------- /Data/Data/Localized.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/Localized.imageset/Contents.json -------------------------------------------------------------------------------- /Data/Data/MasterAppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/MasterAppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/Data/SingleImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/SingleImage.imageset/Contents.json -------------------------------------------------------------------------------- /Data/Data/group/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/group/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/Data/group/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/group/Contents.json -------------------------------------------------------------------------------- /Data/Data/group/iOS AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/group/iOS AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/Data/iOS AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/iOS AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/Data/macOS AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/Data/macOS AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/InvalidScale/ImageSet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/InvalidScale/ImageSet.imageset/Contents.json -------------------------------------------------------------------------------- /Data/InvalidScale/ImageSetScaled.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/InvalidScale/ImageSetScaled.imageset/Contents.json -------------------------------------------------------------------------------- /Data/InvalidSize/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/InvalidSize/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/InvalidSize/iOS AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/InvalidSize/iOS AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Data/InvalidSize/macOS AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Data/InvalidSize/macOS AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/README.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/AppIconDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/AppIconDevice.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/AppleWatchAutoScaingMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/AppleWatchAutoScaingMethod.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/AppleWatchRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/AppleWatchRole.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/AppleWatchScreenWidth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/AppleWatchScreenWidth.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/AssetSpecificationProperties.CodingKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/AssetSpecificationProperties.CodingKeys.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/CompressionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/CompressionType.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/Contrast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/Contrast.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/DeviceSubType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/DeviceSubType.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/DisplayGamut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/DisplayGamut.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/GraphicsFeatureSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/GraphicsFeatureSet.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/ImageIdiom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/ImageIdiom.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/ImageSetDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/ImageSetDevice.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/LanguageDirection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/LanguageDirection.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/Luminosity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/Luminosity.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/Memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/Memory.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/RenderingIntent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/RenderingIntent.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/Scales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/Scales.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/SizeClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/SizeClass.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/Sizes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/Sizes.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/TemplateResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/TemplateResult.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/TemplateScaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/TemplateScaling.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/enums/TemplateType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/enums/TemplateType.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/extensions/Appearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/extensions/Appearance.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/extensions/DecodingError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/extensions/DecodingError.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/extensions/String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/extensions/String.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/AppIconDeviceIdiomMapProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/AppIconDeviceIdiomMapProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/AppIconMasterDocumentProviderProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/AppIconMasterDocumentProviderProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/Appearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/Appearance.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/AppearanceValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/AppearanceValue.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/AssetSpecificationDocumentProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/AssetSpecificationDocumentProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/AssetSpecificationMetadataProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/AssetSpecificationMetadataProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/AssetSpecificationPropertiesProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/AssetSpecificationPropertiesProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/AssetSpecificationProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/AssetSpecificationProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/AssetURLIntializerProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/AssetURLIntializerProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/ISDeviceIdiomProviderProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/ISDeviceIdiomProviderProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/IdiomAppIconSpecProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/IdiomAppIconSpecProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/IdiomScaleProviderProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/IdiomScaleProviderProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/ImageIdiomDisplayGamutProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/ImageIdiomDisplayGamutProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/TemplateDecoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/TemplateDecoder.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/TemplateEncoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/TemplateEncoder.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/TemplateResultParserProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/TemplateResultParserProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/TemplateTypeParserProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/TemplateTypeParserProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/protocols/TemplateWriterProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/protocols/TemplateWriterProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AnyAppearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AnyAppearance.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AppIconDeviceIdiomMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AppIconDeviceIdiomMap.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AppIconMasterDocumentProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AppIconMasterDocumentProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AppIconTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AppIconTemplate.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AppIconTemplateBuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AppIconTemplateBuilder.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AssetSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AssetSpecification.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AssetSpecificationDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AssetSpecificationDocument.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AssetSpecificationMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AssetSpecificationMetadata.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AssetSpecificationProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AssetSpecificationProperties.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/AssetURLInitializer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/AssetURLInitializer.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/ISDeviceIdiomProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/ISDeviceIdiomProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/IdiomAppIconSpecMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/IdiomAppIconSpecMap.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/IdiomScaleProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/IdiomScaleProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/ImageIdiomDisplayGamut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/ImageIdiomDisplayGamut.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/ImageSetTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/ImageSetTemplate.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/ImageSetTemplateBuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/ImageSetTemplateBuilder.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/Size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/Size.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/TemplateDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/TemplateDetails.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/TemplateResultParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/TemplateResultParser.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/TemplateTypeParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/TemplateTypeParser.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/TemplateWriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/TemplateWriter.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/structs/ValuedAppearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/structs/ValuedAppearance.md -------------------------------------------------------------------------------- /Documentation/Reference/AssetLib/typealiases/ImageSetIdiomDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/AssetLib/typealiases/ImageSetIdiomDetail.md -------------------------------------------------------------------------------- /Documentation/Reference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/README.md -------------------------------------------------------------------------------- /Documentation/Reference/assetlibrary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/assetlibrary/README.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/AppIconDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/AppIconDevice.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/AppleWatchAutoScaingMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/AppleWatchAutoScaingMethod.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/AppleWatchRole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/AppleWatchRole.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/AppleWatchScreenWidth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/AppleWatchScreenWidth.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/AppleWatchType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/AppleWatchType.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/AssetSpecificationProperties.CodingKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/AssetSpecificationProperties.CodingKeys.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/CodingKeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/CodingKeys.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/CompressionType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/CompressionType.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/Contrast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/Contrast.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/DeviceSubType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/DeviceSubType.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/DisplayGamut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/DisplayGamut.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/GraphicsFeatureSet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/GraphicsFeatureSet.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/ImageIdiom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/ImageIdiom.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/ImageSetDevice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/ImageSetDevice.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/LanguageDirection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/LanguageDirection.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/Luminosity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/Luminosity.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/Memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/Memory.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/RenderingIntent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/RenderingIntent.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/Scales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/Scales.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/SizeClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/SizeClass.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/Sizes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/Sizes.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/TemplateResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/TemplateResult.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/TemplateScaling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/TemplateScaling.md -------------------------------------------------------------------------------- /Documentation/Reference/enums/TemplateType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/enums/TemplateType.md -------------------------------------------------------------------------------- /Documentation/Reference/extensions/Appearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/extensions/Appearance.md -------------------------------------------------------------------------------- /Documentation/Reference/extensions/DecodingError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/extensions/DecodingError.md -------------------------------------------------------------------------------- /Documentation/Reference/extensions/String.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/extensions/String.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/AppIconDeviceIdiomMapProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/AppIconDeviceIdiomMapProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/AppIconMasterDocumentProviderProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/AppIconMasterDocumentProviderProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/Appearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/Appearance.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/AppearanceValue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/AppearanceValue.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/AssetSpecificationDocumentProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/AssetSpecificationDocumentProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/AssetSpecificationMetadataProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/AssetSpecificationMetadataProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/AssetSpecificationPropertiesProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/AssetSpecificationPropertiesProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/AssetSpecificationProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/AssetSpecificationProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/AssetURLIntializerProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/AssetURLIntializerProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/ISDeviceIdiomProviderProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/ISDeviceIdiomProviderProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/IdiomAppIconSpecProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/IdiomAppIconSpecProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/IdiomScaleProviderProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/IdiomScaleProviderProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/ImageIdiomAppIconSpecificationProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/ImageIdiomAppIconSpecificationProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/ImageIdiomDependencyProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/ImageIdiomDependencyProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/ImageIdiomDisplayGamutProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/ImageIdiomDisplayGamutProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/ImageIdiomScaleProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/ImageIdiomScaleProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/TemplateDecoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/TemplateDecoder.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/TemplateDetailsFactoryProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/TemplateDetailsFactoryProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/TemplateEncoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/TemplateEncoder.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/TemplateParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/TemplateParser.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/TemplateParserProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/TemplateParserProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/TemplateResultParserProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/TemplateResultParserProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/TemplateTypeParserProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/TemplateTypeParserProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/protocols/TemplateWriterProtocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/protocols/TemplateWriterProtocol.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AnyAppearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AnyAppearance.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AppIconDeviceIdiomMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AppIconDeviceIdiomMap.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AppIconMasterDocumentProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AppIconMasterDocumentProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AppIconTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AppIconTemplate.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AppIconTemplateBuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AppIconTemplateBuilder.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AssetSpecification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AssetSpecification.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AssetSpecificationDocument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AssetSpecificationDocument.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AssetSpecificationMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AssetSpecificationMetadata.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AssetSpecificationProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AssetSpecificationProperties.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/AssetURLInitializer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/AssetURLInitializer.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ISDeviceIdiomProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ISDeviceIdiomProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/IdiomAppIconSpecMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/IdiomAppIconSpecMap.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/IdiomScaleProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/IdiomScaleProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ImageIdiomAppIconSpecificationMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ImageIdiomAppIconSpecificationMap.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ImageIdiomDisplayGamut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ImageIdiomDisplayGamut.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ImageSetDeviceIdiomProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ImageSetDeviceIdiomProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ImageSetTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ImageSetTemplate.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ImageSetTemplateBuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ImageSetTemplateBuilder.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ScaleListProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ScaleListProvider.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/Size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/Size.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/TemplateDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/TemplateDetails.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/TemplateDetailsFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/TemplateDetailsFactory.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/TemplateParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/TemplateParser.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/TemplateResultParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/TemplateResultParser.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/TemplateTypeParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/TemplateTypeParser.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/TemplateWriter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/TemplateWriter.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ValueAppearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ValueAppearance.md -------------------------------------------------------------------------------- /Documentation/Reference/structs/ValuedAppearance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/structs/ValuedAppearance.md -------------------------------------------------------------------------------- /Documentation/Reference/typealiases/ImageSetIdiomDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Documentation/Reference/typealiases/ImageSetIdiomDetail.md -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Shared/DocumentMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/Shared/DocumentMap.swift -------------------------------------------------------------------------------- /Example/Shared/OrderedDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/Shared/OrderedDictionary.swift -------------------------------------------------------------------------------- /Example/Templates/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/Templates/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Templates/appicon-devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/Templates/appicon-devices.json -------------------------------------------------------------------------------- /Example/Templates/appicon-gamut.json: -------------------------------------------------------------------------------- 1 | { 2 | "specify-gamut" : true 3 | } -------------------------------------------------------------------------------- /Example/Templates/imageset-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/Templates/imageset-template.json -------------------------------------------------------------------------------- /Example/iOS Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/iOS Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/iOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/iOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/iOS Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/iOS Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/iOS Example/DocumentsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/iOS Example/DocumentsTableViewController.swift -------------------------------------------------------------------------------- /Example/iOS Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/iOS Example/Info.plist -------------------------------------------------------------------------------- /Example/iOS ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/iOS ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/iOS ExampleTests/iOSExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/iOS ExampleTests/iOSExampleTests.swift -------------------------------------------------------------------------------- /Example/macOS Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/macOS Example/Application.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS Example/Application.swift -------------------------------------------------------------------------------- /Example/macOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/macOS Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/macOS Example/DocumentsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS Example/DocumentsTableViewController.swift -------------------------------------------------------------------------------- /Example/macOS Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS Example/Info.plist -------------------------------------------------------------------------------- /Example/macOS Example/macOS_Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS Example/macOS_Example.entitlements -------------------------------------------------------------------------------- /Example/macOS ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/macOS ExampleTests/macOSExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/macOS ExampleTests/macOSExampleTests.swift -------------------------------------------------------------------------------- /Example/tvOS Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/tvOS Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/tvOS Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/tvOS Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/Info.plist -------------------------------------------------------------------------------- /Example/tvOS Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS Example/ViewController.swift -------------------------------------------------------------------------------- /Example/tvOS ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS ExampleTests/Info.plist -------------------------------------------------------------------------------- /Example/tvOS ExampleTests/tvOSExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/tvOS ExampleTests/tvOSExampleTests.swift -------------------------------------------------------------------------------- /Example/watchOS Example Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/watchOS Example Extension/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/watchOS Example Extension/ExtensionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/watchOS Example Extension/ExtensionDelegate.swift -------------------------------------------------------------------------------- /Example/watchOS Example Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/watchOS Example Extension/Info.plist -------------------------------------------------------------------------------- /Example/watchOS Example Extension/InterfaceController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/watchOS Example Extension/InterfaceController.swift -------------------------------------------------------------------------------- /Example/watchOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/watchOS Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/watchOS Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/watchOS Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/watchOS Example/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/watchOS Example/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /Example/watchOS Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Example/watchOS Example/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Package@swift-5.5.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AssetLib/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Array.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/AppIconDeviceIdiomMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/AppIconDeviceIdiomMap.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/AppIconMasterDocumentProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/AppIconMasterDocumentProvider.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/AppIconTemplateBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/AppIconTemplateBuilder.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/AssetTemplateBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/AssetTemplateBuilder.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/AssetURLInitializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/AssetURLInitializer.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/ISDeviceIdiomProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/ISDeviceIdiomProvider.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/IdiomAppIconSpecMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/IdiomAppIconSpecMap.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/IdiomScaleProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/IdiomScaleProvider.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/ImageIdiomDisplayGamut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/ImageIdiomDisplayGamut.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/ImageSetTemplateBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/ImageSetTemplateBuilder.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/TemplateResultParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/TemplateResultParser.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/TemplateTypeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/TemplateTypeParser.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Controllers/TemplateWriter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Controllers/TemplateWriter.swift -------------------------------------------------------------------------------- /Sources/AssetLib/DecodingError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/DecodingError.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Float.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Float.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AnyAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AnyAppearance.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AppIconTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AppIconTemplate.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AppIconTemplateBase64.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AppIconTemplateBase64.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/Appearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/Appearance.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AppearanceValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AppearanceValue.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AppleWatchAutoScaingMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AppleWatchAutoScaingMethod.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AppleWatchRole.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AppleWatchRole.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AppleWatchScreenWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AppleWatchScreenWidth.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AssetSpecification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AssetSpecification.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AssetSpecificationBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AssetSpecificationBuilder.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AssetSpecificationDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AssetSpecificationDocument.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AssetSpecificationMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AssetSpecificationMetadata.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/AssetSpecificationProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/AssetSpecificationProperties.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/CompressType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/CompressType.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/Contrast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/Contrast.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/Device.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/Device.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/DeviceSubType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/DeviceSubType.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/DisplayGamut.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/DisplayGamut.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/GraphicsFeatureSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/GraphicsFeatureSet.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/ImageIdiom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/ImageIdiom.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/ImageSetDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/ImageSetDevice.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/ImageSetIdiomDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/ImageSetIdiomDetail.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/ImageSetTemplate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/ImageSetTemplate.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/LanguageDirection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/LanguageDirection.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/Luminosity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/Luminosity.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/Memory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/Memory.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/ProductOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/ProductOperation.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/RenderingIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/RenderingIntent.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/Scales.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/Scales.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/Size.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/Size.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/SizeClass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/SizeClass.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/Sizes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/Sizes.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/TemplateDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/TemplateDetails.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/TemplateResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/TemplateResult.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/TemplateScaling.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/TemplateScaling.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/TemplateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/TemplateType.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Models/ValuedAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Models/ValuedAppearance.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/AppIconDeviceIdiomMapProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/AppIconDeviceIdiomMapProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/AppIconMasterDocumentProviderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/AppIconMasterDocumentProviderProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/AssetSpecificationDocumentProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/AssetSpecificationDocumentProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/AssetSpecificationMetadataProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/AssetSpecificationMetadataProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/AssetSpecificationPropertiesProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/AssetSpecificationPropertiesProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/AssetSpecificationProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/AssetSpecificationProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/AssetURLIntializerProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/AssetURLIntializerProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/ISDeviceIdiomProviderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/ISDeviceIdiomProviderProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/IdiomAppIconSpecProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/IdiomAppIconSpecProvider.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/IdiomScaleProviderProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/IdiomScaleProviderProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/ImageIdiomDisplayGamutProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/ImageIdiomDisplayGamutProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/TemplateDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/TemplateDecoder.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/TemplateEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/TemplateEncoder.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/TemplateResultParserProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/TemplateResultParserProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/TemplateTypeParserProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/TemplateTypeParserProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/Protocols/TemplateWriterProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/Protocols/TemplateWriterProtocol.swift -------------------------------------------------------------------------------- /Sources/AssetLib/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/AssetLib/String.swift -------------------------------------------------------------------------------- /Sources/assetlibrary/AssetLibraryCommand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/assetlibrary/AssetLibraryCommand.swift -------------------------------------------------------------------------------- /Sources/assetlibrary/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Sources/assetlibrary/main.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Extensions/Array.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Extensions/Array.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Extensions/AssetSpecificationDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Extensions/AssetSpecificationDocument.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Extensions/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Extensions/Data.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Extensions/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Extensions/Dictionary.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Extensions/TemplateResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Extensions/TemplateResult.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Models/ErrorDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Models/ErrorDecoder.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Models/MockDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Models/MockDecoder.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Models/MockEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Models/MockEncoder.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Models/MockError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Models/MockError.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Models/MockValueType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Models/MockValueType.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Models/SortedDictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Models/SortedDictionary.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/AppIconTemplateBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/AppIconTemplateBuilderTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/AssetSpecificationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/AssetSpecificationTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/AssetURLInitializerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/AssetURLInitializerTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/ISDeviceIdiomProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/ISDeviceIdiomProviderTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/IdiomScaleProviderTestsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/IdiomScaleProviderTestsTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/ImageSetTemplateBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/ImageSetTemplateBuilderTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/SizesTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/SizesTest.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/TemplateDecodingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/TemplateDecodingTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/TemplateResultParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/TemplateResultParserTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/TemplateTypeParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/TemplateTypeParserTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/TemplateWriterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/TemplateWriterTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/Tests/ValueAppearanceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/Tests/ValueAppearanceTests.swift -------------------------------------------------------------------------------- /Tests/AssetLibTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/AssetLibTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /bitrise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/bitrise.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "Tests/**/*" 3 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brightdigit/AssetLib/HEAD/logo.svg --------------------------------------------------------------------------------