├── .github └── FUNDING.yml ├── Asset Catalog Previewer ├── Info.plist └── PreviewViewController.swift ├── Asset Catalog Viewer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── joseph.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Asset Catalog Viewer ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_128x128@1x.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_256x256@1x.png │ │ ├── icon_256x256@2x.png │ │ └── icon_512x512@1x.png │ ├── Contents.json │ ├── Icon.iconset │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ └── icon_32x32@2x.png │ └── circle.lefthalf.filled.symbolset │ │ ├── Contents.json │ │ └── circle.lefthalf.filled.svg ├── Base.lproj │ └── MainMenu.xib ├── Bridging-Headers │ ├── CUICatalog.h │ ├── CUICommonAssetStorage.h │ ├── CUINamedLookup.h │ ├── CUIRenditionKey.h │ ├── CUIStructuredThemeStore.h │ ├── CUIStructures.h │ ├── CUIThemeRendition.h │ └── CoreUI-Bridging-Header.h ├── Document.swift ├── Extensions │ ├── CGSize.swift │ ├── NSScreen.swift │ ├── NumberFormatter.swift │ ├── RawRepresentable.swift │ └── String.swift ├── Info.plist ├── Localizable.stringsdict ├── Model │ ├── AssetCatalog.swift │ ├── Attribute.swift │ ├── AttributeID.swift │ ├── CoreUIError.swift │ ├── Item.swift │ └── Rendition │ │ ├── Kind.swift │ │ ├── Layout.swift │ │ ├── PixelFormat.swift │ │ ├── Rendition.swift │ │ └── RenditionKey.swift └── View │ ├── CollectionView.swift │ ├── GridViewItem.swift │ ├── TableView.swift │ ├── TextCell.swift │ └── WindowController.swift ├── Asset Catalog ViewerTests └── Asset_Catalog_ViewerTests.swift ├── Asset Catalog ViewerUITests └── Asset_Catalog_ViewerUITests.swift ├── LICENSE └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: joey_gm 2 | -------------------------------------------------------------------------------- /Asset Catalog Previewer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Previewer/Info.plist -------------------------------------------------------------------------------- /Asset Catalog Previewer/PreviewViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Previewer/PreviewViewController.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Asset Catalog Viewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Asset Catalog Viewer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Asset Catalog Viewer.xcodeproj/xcuserdata/joseph.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer.xcodeproj/xcuserdata/joseph.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Asset Catalog Viewer.xcodeproj/xcuserdata/joseph.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer.xcodeproj/xcuserdata/joseph.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Asset Catalog Viewer/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/AppDelegate.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_128x128@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_128x128@1x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_256x256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_256x256@1x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_512x512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/AppIcon.appiconset/icon_512x512@1x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/Icon.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/circle.lefthalf.filled.symbolset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/circle.lefthalf.filled.symbolset/Contents.json -------------------------------------------------------------------------------- /Asset Catalog Viewer/Assets.xcassets/circle.lefthalf.filled.symbolset/circle.lefthalf.filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Assets.xcassets/circle.lefthalf.filled.symbolset/circle.lefthalf.filled.svg -------------------------------------------------------------------------------- /Asset Catalog Viewer/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Asset Catalog Viewer/Bridging-Headers/CUICatalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Bridging-Headers/CUICatalog.h -------------------------------------------------------------------------------- /Asset Catalog Viewer/Bridging-Headers/CUICommonAssetStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Bridging-Headers/CUICommonAssetStorage.h -------------------------------------------------------------------------------- /Asset Catalog Viewer/Bridging-Headers/CUINamedLookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Bridging-Headers/CUINamedLookup.h -------------------------------------------------------------------------------- /Asset Catalog Viewer/Bridging-Headers/CUIRenditionKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Bridging-Headers/CUIRenditionKey.h -------------------------------------------------------------------------------- /Asset Catalog Viewer/Bridging-Headers/CUIStructuredThemeStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Bridging-Headers/CUIStructuredThemeStore.h -------------------------------------------------------------------------------- /Asset Catalog Viewer/Bridging-Headers/CUIStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Bridging-Headers/CUIStructures.h -------------------------------------------------------------------------------- /Asset Catalog Viewer/Bridging-Headers/CUIThemeRendition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Bridging-Headers/CUIThemeRendition.h -------------------------------------------------------------------------------- /Asset Catalog Viewer/Bridging-Headers/CoreUI-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Bridging-Headers/CoreUI-Bridging-Header.h -------------------------------------------------------------------------------- /Asset Catalog Viewer/Document.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Document.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Extensions/CGSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Extensions/CGSize.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Extensions/NSScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Extensions/NSScreen.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Extensions/NumberFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Extensions/NumberFormatter.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Extensions/RawRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Extensions/RawRepresentable.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Extensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Extensions/String.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Info.plist -------------------------------------------------------------------------------- /Asset Catalog Viewer/Localizable.stringsdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Localizable.stringsdict -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/AssetCatalog.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/AssetCatalog.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/Attribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/Attribute.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/AttributeID.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/AttributeID.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/CoreUIError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/CoreUIError.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/Item.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/Rendition/Kind.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/Rendition/Kind.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/Rendition/Layout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/Rendition/Layout.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/Rendition/PixelFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/Rendition/PixelFormat.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/Rendition/Rendition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/Rendition/Rendition.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/Model/Rendition/RenditionKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/Model/Rendition/RenditionKey.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/View/CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/View/CollectionView.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/View/GridViewItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/View/GridViewItem.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/View/TableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/View/TableView.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/View/TextCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/View/TextCell.swift -------------------------------------------------------------------------------- /Asset Catalog Viewer/View/WindowController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog Viewer/View/WindowController.swift -------------------------------------------------------------------------------- /Asset Catalog ViewerTests/Asset_Catalog_ViewerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog ViewerTests/Asset_Catalog_ViewerTests.swift -------------------------------------------------------------------------------- /Asset Catalog ViewerUITests/Asset_Catalog_ViewerUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/Asset Catalog ViewerUITests/Asset_Catalog_ViewerUITests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joey-gm/Asset-Catalog-Viewer/HEAD/README.md --------------------------------------------------------------------------------