├── .gitignore ├── DevCleaner.xcodeproj └── project.pbxproj ├── DevCleaner ├── Base │ ├── AppDelegate.swift │ ├── CmdLine.swift │ └── main.swift ├── Managers │ ├── Donations.swift │ ├── FeedbackMailer.swift │ ├── Files.swift │ ├── Preferences.swift │ ├── ReviewRequests.swift │ └── ScanReminders.swift ├── Model │ ├── Entries │ │ ├── ArchiveFileEntry.swift │ │ ├── DerivedDataFileEntry.swift │ │ ├── DeviceLogsFileEntry.swift │ │ ├── DeviceSupportFileEntry.swift │ │ ├── DocumentationCacheFileEntry.swift │ │ ├── OldDocumentationFileEntry.swift │ │ └── XcodeFileEntry.swift │ └── XcodeFiles.swift ├── Resources │ ├── Assets.xcassets │ │ ├── Contents.json │ │ ├── DevCleanerIcon.imageset │ │ │ ├── Contents.json │ │ │ └── DevCleaner Icon - Tahoe-macOS-Default-256x256@2x.png │ │ ├── Devices │ │ │ ├── AppleTVIcon.imageset │ │ │ │ ├── AppleTVIcon.png │ │ │ │ ├── AppleTVIcon@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── MacBookIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MacBookIcon.png │ │ │ │ └── MacBookIcon@2x.png │ │ │ ├── VisionProIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VisionProIcon.png │ │ │ │ └── VisionProIcon@2x.png │ │ │ ├── WatchIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── WatchIcon.png │ │ │ │ └── WatchIcon@2x.png │ │ │ ├── iPadIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iPadIcon.png │ │ │ │ └── iPadIcon@2x.png │ │ │ └── iPhoneIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── iPhoneIcon.png │ │ │ │ └── iPhoneIcon@2x.png │ │ ├── Files │ │ │ ├── Contents.json │ │ │ └── XCArchive.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── XCArchive.png │ │ │ │ └── XCArchive@2x.png │ │ └── OS │ │ │ ├── Contents.json │ │ │ ├── iOS │ │ │ ├── 10.imageset │ │ │ │ ├── 10.png │ │ │ │ ├── 10@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 11.imageset │ │ │ │ ├── 11.png │ │ │ │ ├── 11@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 12.imageset │ │ │ │ ├── 12.png │ │ │ │ ├── 12@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 13.imageset │ │ │ │ ├── 13.png │ │ │ │ ├── 13@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 14.imageset │ │ │ │ ├── 14.png │ │ │ │ ├── 14@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 15.imageset │ │ │ │ ├── 15.png │ │ │ │ ├── 15@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 16.imageset │ │ │ │ ├── 16.png │ │ │ │ ├── 16@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 17.imageset │ │ │ │ ├── 17.png │ │ │ │ ├── 17@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 18.imageset │ │ │ │ ├── 18.png │ │ │ │ ├── 18@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 2.imageset │ │ │ │ ├── 2.png │ │ │ │ ├── 2@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 26.imageset │ │ │ │ ├── 26.png │ │ │ │ ├── 26@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 3.imageset │ │ │ │ ├── 3.png │ │ │ │ ├── 3@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 4.imageset │ │ │ │ ├── 4.png │ │ │ │ ├── 4@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 5.imageset │ │ │ │ ├── 5.png │ │ │ │ ├── 5@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 6.imageset │ │ │ │ ├── 6.png │ │ │ │ ├── 6@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 7.imageset │ │ │ │ ├── 7.png │ │ │ │ ├── 7@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 8.imageset │ │ │ │ ├── 8.png │ │ │ │ ├── 8@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 9.imageset │ │ │ │ ├── 9.png │ │ │ │ ├── 9@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Generic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Generic.png │ │ │ │ └── Generic@2x.png │ │ │ ├── macOS │ │ │ ├── 12.imageset │ │ │ │ ├── 12.png │ │ │ │ ├── 12@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 13.imageset │ │ │ │ ├── 13.png │ │ │ │ ├── 13@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 14.imageset │ │ │ │ ├── 14.png │ │ │ │ ├── 14@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 15.imageset │ │ │ │ ├── 15.png │ │ │ │ ├── 15@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 26.imageset │ │ │ │ ├── 26.png │ │ │ │ ├── 26@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Generic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Generic.png │ │ │ │ └── Generic@2x.png │ │ │ ├── tvOS │ │ │ ├── 10.imageset │ │ │ │ ├── 10.png │ │ │ │ ├── 10@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 11.imageset │ │ │ │ ├── 11.png │ │ │ │ ├── 11@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 12.imageset │ │ │ │ ├── 12.png │ │ │ │ ├── 12@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 13.imageset │ │ │ │ ├── 13.png │ │ │ │ ├── 13@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 14.imageset │ │ │ │ ├── 14.png │ │ │ │ ├── 14@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 15.imageset │ │ │ │ ├── 15.png │ │ │ │ ├── 15@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 16.imageset │ │ │ │ ├── 16.png │ │ │ │ ├── 16@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 17.imageset │ │ │ │ ├── 17.png │ │ │ │ ├── 17@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 18.imageset │ │ │ │ ├── 18.png │ │ │ │ ├── 18@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 26.imageset │ │ │ │ ├── 26.png │ │ │ │ ├── 26@2x.png │ │ │ │ └── Contents.json │ │ │ ├── 9.imageset │ │ │ │ ├── 9.png │ │ │ │ ├── 9@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Generic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Generic.png │ │ │ │ └── Generic@2x.png │ │ │ ├── visionOS │ │ │ ├── 2.imageset │ │ │ │ ├── 2-1.png │ │ │ │ ├── 2@0.5x.png │ │ │ │ └── Contents.json │ │ │ ├── 26.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── visionOS26.png │ │ │ │ └── visionOS26@2x.png │ │ │ ├── Contents.json │ │ │ └── Generic.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Generic.png │ │ │ │ └── Generic@2x.png │ │ │ └── watchOS │ │ │ ├── 10.imageset │ │ │ ├── 10.png │ │ │ ├── 10@2x.png │ │ │ └── Contents.json │ │ │ ├── 11.imageset │ │ │ ├── 11.png │ │ │ ├── 11@2x.png │ │ │ └── Contents.json │ │ │ ├── 2.imageset │ │ │ ├── 2.png │ │ │ ├── 2@2x.png │ │ │ └── Contents.json │ │ │ ├── 26.imageset │ │ │ ├── Contents.json │ │ │ ├── watchOS26.png │ │ │ └── watchOS26@2x.png │ │ │ ├── 3.imageset │ │ │ ├── 3.png │ │ │ ├── 3@2x.png │ │ │ └── Contents.json │ │ │ ├── 4.imageset │ │ │ ├── 4.png │ │ │ ├── 4@2x.png │ │ │ └── Contents.json │ │ │ ├── 5.imageset │ │ │ ├── 5.png │ │ │ ├── 5@2x.png │ │ │ └── Contents.json │ │ │ ├── 6.imageset │ │ │ ├── 6.png │ │ │ ├── 6@2x.png │ │ │ └── Contents.json │ │ │ ├── 7.imageset │ │ │ ├── 7.png │ │ │ ├── 7@2x.png │ │ │ └── Contents.json │ │ │ ├── 8.imageset │ │ │ ├── 8.png │ │ │ ├── 8@2x.png │ │ │ └── Contents.json │ │ │ ├── 9.imageset │ │ │ ├── 9.png │ │ │ ├── 9@2x.png │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Generic.imageset │ │ │ ├── Contents.json │ │ │ ├── Generic.png │ │ │ └── Generic@2x.png │ ├── Credits.rtf │ ├── DevCleaner.entitlements │ ├── DevCleaner.icon │ │ ├── Assets │ │ │ ├── PNG image 3.png │ │ │ ├── PNG image 6.png │ │ │ └── PNG image.png │ │ └── icon.json │ ├── DevCleanerStoreKit.storekit │ ├── Info.plist │ ├── Manual │ │ ├── Icon-128pt.png │ │ ├── Icon-128pt@2x.png │ │ ├── file-dark.png │ │ ├── file-dark@2x.png │ │ ├── file.png │ │ ├── file@2x.png │ │ ├── main-window-dark.png │ │ ├── main-window-dark@2x.png │ │ ├── main-window.png │ │ ├── main-window@2x.png │ │ ├── manual.css │ │ ├── manual.html │ │ ├── menu-dark.png │ │ ├── menu-dark@2x.png │ │ ├── menu.png │ │ ├── menu@2x.png │ │ ├── preferences-dark.png │ │ ├── preferences-dark@2x.png │ │ ├── preferences.png │ │ └── preferences@2x.png │ ├── dev-cleaner.sh │ └── device_identifiers.csv ├── Utilities │ ├── Alerts.swift │ ├── AppleBuild.swift │ ├── AppleDevices.swift │ ├── ArgumentsParser.swift │ ├── Extensions │ │ ├── Digest+Helpers.swift │ │ ├── FileManager+DateProperties.swift │ │ ├── FileManager+DirectorySize.swift │ │ ├── FileManager+HomeFolder.swift │ │ └── URL+AcquireAccessFromSandbox.swift │ ├── Logger.swift │ ├── Profiling │ │ ├── Profiler.swift │ │ └── Signposts.swift │ ├── Stack.swift │ ├── Version.swift │ └── Weak.swift ├── View Controllers │ ├── Command Line Install Window │ │ ├── CommandLineInstall.storyboard │ │ └── CommandLineInstallViewController.swift │ ├── Help Window │ │ ├── Help.storyboard │ │ └── HelpViewController.swift │ ├── Main Window │ │ ├── Base.lproj │ │ │ └── Main.storyboard │ │ ├── CleaningViewController.swift │ │ ├── DonationViewController.swift │ │ ├── MainViewController.swift │ │ └── Views │ │ │ ├── SizeCellView.swift │ │ │ └── XcodeEntryCellView.swift │ └── Preferences Window │ │ ├── Preferences.storyboard │ │ └── PreferencesViewController.swift └── Views │ ├── LoadingView.swift │ └── MessageView.swift ├── Documentation ├── Command Line Tool.md ├── Main Window Screenshot.png └── Preferences Window Screenshot.png ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/.gitignore -------------------------------------------------------------------------------- /DevCleaner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DevCleaner/Base/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Base/AppDelegate.swift -------------------------------------------------------------------------------- /DevCleaner/Base/CmdLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Base/CmdLine.swift -------------------------------------------------------------------------------- /DevCleaner/Base/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Base/main.swift -------------------------------------------------------------------------------- /DevCleaner/Managers/Donations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Managers/Donations.swift -------------------------------------------------------------------------------- /DevCleaner/Managers/FeedbackMailer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Managers/FeedbackMailer.swift -------------------------------------------------------------------------------- /DevCleaner/Managers/Files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Managers/Files.swift -------------------------------------------------------------------------------- /DevCleaner/Managers/Preferences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Managers/Preferences.swift -------------------------------------------------------------------------------- /DevCleaner/Managers/ReviewRequests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Managers/ReviewRequests.swift -------------------------------------------------------------------------------- /DevCleaner/Managers/ScanReminders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Managers/ScanReminders.swift -------------------------------------------------------------------------------- /DevCleaner/Model/Entries/ArchiveFileEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Model/Entries/ArchiveFileEntry.swift -------------------------------------------------------------------------------- /DevCleaner/Model/Entries/DerivedDataFileEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Model/Entries/DerivedDataFileEntry.swift -------------------------------------------------------------------------------- /DevCleaner/Model/Entries/DeviceLogsFileEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Model/Entries/DeviceLogsFileEntry.swift -------------------------------------------------------------------------------- /DevCleaner/Model/Entries/DeviceSupportFileEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Model/Entries/DeviceSupportFileEntry.swift -------------------------------------------------------------------------------- /DevCleaner/Model/Entries/DocumentationCacheFileEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Model/Entries/DocumentationCacheFileEntry.swift -------------------------------------------------------------------------------- /DevCleaner/Model/Entries/OldDocumentationFileEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Model/Entries/OldDocumentationFileEntry.swift -------------------------------------------------------------------------------- /DevCleaner/Model/Entries/XcodeFileEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Model/Entries/XcodeFileEntry.swift -------------------------------------------------------------------------------- /DevCleaner/Model/XcodeFiles.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Model/XcodeFiles.swift -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/DevCleanerIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/DevCleanerIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/DevCleanerIcon.imageset/DevCleaner Icon - Tahoe-macOS-Default-256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/DevCleanerIcon.imageset/DevCleaner Icon - Tahoe-macOS-Default-256x256@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/AppleTVIcon.imageset/AppleTVIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/AppleTVIcon.imageset/AppleTVIcon.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/AppleTVIcon.imageset/AppleTVIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/AppleTVIcon.imageset/AppleTVIcon@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/AppleTVIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/AppleTVIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/MacBookIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/MacBookIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/MacBookIcon.imageset/MacBookIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/MacBookIcon.imageset/MacBookIcon.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/MacBookIcon.imageset/MacBookIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/MacBookIcon.imageset/MacBookIcon@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/VisionProIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/VisionProIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/VisionProIcon.imageset/VisionProIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/VisionProIcon.imageset/VisionProIcon.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/VisionProIcon.imageset/VisionProIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/VisionProIcon.imageset/VisionProIcon@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/WatchIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/WatchIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/WatchIcon.imageset/WatchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/WatchIcon.imageset/WatchIcon.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/WatchIcon.imageset/WatchIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/WatchIcon.imageset/WatchIcon@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/iPadIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/iPadIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/iPadIcon.imageset/iPadIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/iPadIcon.imageset/iPadIcon.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/iPadIcon.imageset/iPadIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/iPadIcon.imageset/iPadIcon@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/iPhoneIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/iPhoneIcon.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/iPhoneIcon.imageset/iPhoneIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/iPhoneIcon.imageset/iPhoneIcon.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Devices/iPhoneIcon.imageset/iPhoneIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Devices/iPhoneIcon.imageset/iPhoneIcon@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Files/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Files/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Files/XCArchive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Files/XCArchive.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Files/XCArchive.imageset/XCArchive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Files/XCArchive.imageset/XCArchive.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/Files/XCArchive.imageset/XCArchive@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/Files/XCArchive.imageset/XCArchive@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/10.imageset/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/10.imageset/10.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/10.imageset/10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/10.imageset/10@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/10.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/11.imageset/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/11.imageset/11.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/11.imageset/11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/11.imageset/11@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/11.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/12.imageset/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/12.imageset/12.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/12.imageset/12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/12.imageset/12@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/12.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/13.imageset/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/13.imageset/13.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/13.imageset/13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/13.imageset/13@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/13.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/14.imageset/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/14.imageset/14.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/14.imageset/14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/14.imageset/14@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/14.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/15.imageset/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/15.imageset/15.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/15.imageset/15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/15.imageset/15@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/15.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/16.imageset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/16.imageset/16.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/16.imageset/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/16.imageset/16@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/16.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/17.imageset/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/17.imageset/17.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/17.imageset/17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/17.imageset/17@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/17.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/18.imageset/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/18.imageset/18.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/18.imageset/18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/18.imageset/18@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/18.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/2.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/2.imageset/2.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/2.imageset/2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/2.imageset/2@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/2.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/26.imageset/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/26.imageset/26.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/26.imageset/26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/26.imageset/26@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/26.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/26.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/3.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/3.imageset/3.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/3.imageset/3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/3.imageset/3@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/3.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/4.imageset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/4.imageset/4.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/4.imageset/4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/4.imageset/4@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/4.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/5.imageset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/5.imageset/5.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/5.imageset/5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/5.imageset/5@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/5.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/6.imageset/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/6.imageset/6.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/6.imageset/6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/6.imageset/6@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/6.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/7.imageset/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/7.imageset/7.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/7.imageset/7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/7.imageset/7@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/7.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/8.imageset/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/8.imageset/8.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/8.imageset/8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/8.imageset/8@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/8.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/9.imageset/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/9.imageset/9.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/9.imageset/9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/9.imageset/9@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/9.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/Generic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/Generic.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/Generic.imageset/Generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/Generic.imageset/Generic.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/iOS/Generic.imageset/Generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/iOS/Generic.imageset/Generic@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/12.imageset/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/12.imageset/12.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/12.imageset/12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/12.imageset/12@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/12.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/13.imageset/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/13.imageset/13.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/13.imageset/13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/13.imageset/13@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/13.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/14.imageset/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/14.imageset/14.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/14.imageset/14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/14.imageset/14@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/14.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/15.imageset/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/15.imageset/15.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/15.imageset/15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/15.imageset/15@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/15.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/26.imageset/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/26.imageset/26.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/26.imageset/26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/26.imageset/26@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/26.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/26.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/Generic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/Generic.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/Generic.imageset/Generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/Generic.imageset/Generic.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/macOS/Generic.imageset/Generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/macOS/Generic.imageset/Generic@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/10.imageset/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/10.imageset/10.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/10.imageset/10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/10.imageset/10@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/10.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/11.imageset/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/11.imageset/11.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/11.imageset/11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/11.imageset/11@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/11.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/12.imageset/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/12.imageset/12.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/12.imageset/12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/12.imageset/12@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/12.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/13.imageset/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/13.imageset/13.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/13.imageset/13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/13.imageset/13@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/13.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/14.imageset/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/14.imageset/14.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/14.imageset/14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/14.imageset/14@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/14.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/15.imageset/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/15.imageset/15.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/15.imageset/15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/15.imageset/15@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/15.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/16.imageset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/16.imageset/16.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/16.imageset/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/16.imageset/16@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/16.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/17.imageset/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/17.imageset/17.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/17.imageset/17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/17.imageset/17@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/17.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/18.imageset/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/18.imageset/18.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/18.imageset/18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/18.imageset/18@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/18.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/26.imageset/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/26.imageset/26.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/26.imageset/26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/26.imageset/26@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/26.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/26.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/9.imageset/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/9.imageset/9.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/9.imageset/9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/9.imageset/9@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/9.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/Generic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/Generic.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/Generic.imageset/Generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/Generic.imageset/Generic.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/tvOS/Generic.imageset/Generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/tvOS/Generic.imageset/Generic@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/2.imageset/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/2.imageset/2-1.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/2.imageset/2@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/2.imageset/2@0.5x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/2.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/26.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/26.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/26.imageset/visionOS26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/26.imageset/visionOS26.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/26.imageset/visionOS26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/26.imageset/visionOS26@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/Generic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/Generic.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/Generic.imageset/Generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/Generic.imageset/Generic.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/visionOS/Generic.imageset/Generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/visionOS/Generic.imageset/Generic@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/10.imageset/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/10.imageset/10.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/10.imageset/10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/10.imageset/10@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/10.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/11.imageset/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/11.imageset/11.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/11.imageset/11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/11.imageset/11@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/11.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/2.imageset/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/2.imageset/2.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/2.imageset/2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/2.imageset/2@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/2.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/26.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/26.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/26.imageset/watchOS26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/26.imageset/watchOS26.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/26.imageset/watchOS26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/26.imageset/watchOS26@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/3.imageset/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/3.imageset/3.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/3.imageset/3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/3.imageset/3@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/3.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/4.imageset/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/4.imageset/4.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/4.imageset/4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/4.imageset/4@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/4.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/5.imageset/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/5.imageset/5.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/5.imageset/5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/5.imageset/5@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/5.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/6.imageset/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/6.imageset/6.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/6.imageset/6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/6.imageset/6@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/6.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/7.imageset/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/7.imageset/7.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/7.imageset/7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/7.imageset/7@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/7.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/8.imageset/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/8.imageset/8.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/8.imageset/8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/8.imageset/8@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/8.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/9.imageset/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/9.imageset/9.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/9.imageset/9@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/9.imageset/9@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/9.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/Generic.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/Generic.imageset/Contents.json -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/Generic.imageset/Generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/Generic.imageset/Generic.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Assets.xcassets/OS/watchOS/Generic.imageset/Generic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Assets.xcassets/OS/watchOS/Generic.imageset/Generic@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Credits.rtf -------------------------------------------------------------------------------- /DevCleaner/Resources/DevCleaner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/DevCleaner.entitlements -------------------------------------------------------------------------------- /DevCleaner/Resources/DevCleaner.icon/Assets/PNG image 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/DevCleaner.icon/Assets/PNG image 3.png -------------------------------------------------------------------------------- /DevCleaner/Resources/DevCleaner.icon/Assets/PNG image 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/DevCleaner.icon/Assets/PNG image 6.png -------------------------------------------------------------------------------- /DevCleaner/Resources/DevCleaner.icon/Assets/PNG image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/DevCleaner.icon/Assets/PNG image.png -------------------------------------------------------------------------------- /DevCleaner/Resources/DevCleaner.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/DevCleaner.icon/icon.json -------------------------------------------------------------------------------- /DevCleaner/Resources/DevCleanerStoreKit.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/DevCleanerStoreKit.storekit -------------------------------------------------------------------------------- /DevCleaner/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Info.plist -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/Icon-128pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/Icon-128pt.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/Icon-128pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/Icon-128pt@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/file-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/file-dark.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/file-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/file-dark@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/file.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/file@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/main-window-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/main-window-dark.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/main-window-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/main-window-dark@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/main-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/main-window.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/main-window@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/main-window@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/manual.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/manual.css -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/manual.html -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/menu-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/menu-dark.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/menu-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/menu-dark@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/menu.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/menu@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/preferences-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/preferences-dark.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/preferences-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/preferences-dark@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/preferences.png -------------------------------------------------------------------------------- /DevCleaner/Resources/Manual/preferences@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/Manual/preferences@2x.png -------------------------------------------------------------------------------- /DevCleaner/Resources/dev-cleaner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/dev-cleaner.sh -------------------------------------------------------------------------------- /DevCleaner/Resources/device_identifiers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Resources/device_identifiers.csv -------------------------------------------------------------------------------- /DevCleaner/Utilities/Alerts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Alerts.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/AppleBuild.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/AppleBuild.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/AppleDevices.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/AppleDevices.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/ArgumentsParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/ArgumentsParser.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Extensions/Digest+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Extensions/Digest+Helpers.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Extensions/FileManager+DateProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Extensions/FileManager+DateProperties.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Extensions/FileManager+DirectorySize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Extensions/FileManager+DirectorySize.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Extensions/FileManager+HomeFolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Extensions/FileManager+HomeFolder.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Extensions/URL+AcquireAccessFromSandbox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Extensions/URL+AcquireAccessFromSandbox.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Logger.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Profiling/Profiler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Profiling/Profiler.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Profiling/Signposts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Profiling/Signposts.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Stack.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Stack.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Version.swift -------------------------------------------------------------------------------- /DevCleaner/Utilities/Weak.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Utilities/Weak.swift -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Command Line Install Window/CommandLineInstall.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Command Line Install Window/CommandLineInstall.storyboard -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Command Line Install Window/CommandLineInstallViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Command Line Install Window/CommandLineInstallViewController.swift -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Help Window/Help.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Help Window/Help.storyboard -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Help Window/HelpViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Help Window/HelpViewController.swift -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Main Window/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Main Window/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Main Window/CleaningViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Main Window/CleaningViewController.swift -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Main Window/DonationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Main Window/DonationViewController.swift -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Main Window/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Main Window/MainViewController.swift -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Main Window/Views/SizeCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Main Window/Views/SizeCellView.swift -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Main Window/Views/XcodeEntryCellView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Main Window/Views/XcodeEntryCellView.swift -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Preferences Window/Preferences.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Preferences Window/Preferences.storyboard -------------------------------------------------------------------------------- /DevCleaner/View Controllers/Preferences Window/PreferencesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/View Controllers/Preferences Window/PreferencesViewController.swift -------------------------------------------------------------------------------- /DevCleaner/Views/LoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Views/LoadingView.swift -------------------------------------------------------------------------------- /DevCleaner/Views/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/DevCleaner/Views/MessageView.swift -------------------------------------------------------------------------------- /Documentation/Command Line Tool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/Documentation/Command Line Tool.md -------------------------------------------------------------------------------- /Documentation/Main Window Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/Documentation/Main Window Screenshot.png -------------------------------------------------------------------------------- /Documentation/Preferences Window Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/Documentation/Preferences Window Screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vashpan/xcode-dev-cleaner/HEAD/README.md --------------------------------------------------------------------------------