├── .gitignore ├── LICENSE ├── README.md ├── Vendor ├── M13ProgressSuite │ ├── M13ProgressView.h │ ├── M13ProgressView.m │ ├── M13ProgressViewBar.h │ ├── M13ProgressViewBar.m │ ├── M13ProgressViewBorderedBar.h │ ├── M13ProgressViewBorderedBar.m │ ├── M13ProgressViewFilteredImage.h │ ├── M13ProgressViewFilteredImage.m │ ├── M13ProgressViewImage.h │ ├── M13ProgressViewImage.m │ ├── M13ProgressViewMetro.h │ ├── M13ProgressViewMetro.m │ ├── M13ProgressViewMetroDotPolygon.h │ ├── M13ProgressViewMetroDotPolygon.m │ ├── M13ProgressViewPie.h │ ├── M13ProgressViewPie.m │ ├── M13ProgressViewRadiative.h │ ├── M13ProgressViewRadiative.m │ ├── M13ProgressViewRing.h │ ├── M13ProgressViewRing.m │ ├── M13ProgressViewSegmentedBar.h │ ├── M13ProgressViewSegmentedBar.m │ ├── M13ProgressViewSegmentedRing.h │ ├── M13ProgressViewSegmentedRing.m │ ├── M13ProgressViewStripedBar.h │ └── M13ProgressViewStripedBar.m ├── NSFileManager+Utilities │ ├── NSFileManager+Utilities.h │ └── NSFileManager+Utilities.m └── UIColor+Utilities │ ├── UIColor-Expanded.h │ └── UIColor-Expanded.m ├── Watch Ring Generator.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Watch Ring Generator ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── bezel38mm.imageset │ │ ├── Contents.json │ │ └── bezel38mm@2x.png │ ├── bezel42mm.imageset │ │ ├── Contents.json │ │ └── bezel42mm@2x.png │ ├── paged38mm.imageset │ │ ├── 38mm-paged@2x.png │ │ └── Contents.json │ └── paged42mm.imageset │ │ ├── 42mm-paged@2x.png │ │ └── Contents.json ├── Info.plist ├── ViewController.h ├── ViewController.m ├── assets │ ├── 38mm-paged@2x.png │ ├── 38mm@2x.png │ ├── 42mm-paged@2x.png │ ├── 42mm@2x.png │ ├── bezel38mm@2x.png │ └── bezel42mm@2x.png └── main.m └── screen.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/README.md -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressView.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressView.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewBar.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewBar.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewBorderedBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewBorderedBar.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewBorderedBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewBorderedBar.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewFilteredImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewFilteredImage.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewFilteredImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewFilteredImage.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewImage.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewImage.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewMetro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewMetro.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewMetro.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewMetro.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewMetroDotPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewMetroDotPolygon.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewMetroDotPolygon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewMetroDotPolygon.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewPie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewPie.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewPie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewPie.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewRadiative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewRadiative.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewRadiative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewRadiative.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewRing.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewRing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewRing.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewSegmentedBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewSegmentedBar.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewSegmentedBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewSegmentedBar.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewSegmentedRing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewSegmentedRing.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewSegmentedRing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewSegmentedRing.m -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewStripedBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewStripedBar.h -------------------------------------------------------------------------------- /Vendor/M13ProgressSuite/M13ProgressViewStripedBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/M13ProgressSuite/M13ProgressViewStripedBar.m -------------------------------------------------------------------------------- /Vendor/NSFileManager+Utilities/NSFileManager+Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/NSFileManager+Utilities/NSFileManager+Utilities.h -------------------------------------------------------------------------------- /Vendor/NSFileManager+Utilities/NSFileManager+Utilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/NSFileManager+Utilities/NSFileManager+Utilities.m -------------------------------------------------------------------------------- /Vendor/UIColor+Utilities/UIColor-Expanded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/UIColor+Utilities/UIColor-Expanded.h -------------------------------------------------------------------------------- /Vendor/UIColor+Utilities/UIColor-Expanded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Vendor/UIColor+Utilities/UIColor-Expanded.m -------------------------------------------------------------------------------- /Watch Ring Generator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Watch Ring Generator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Watch Ring Generator/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/AppDelegate.h -------------------------------------------------------------------------------- /Watch Ring Generator/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/AppDelegate.m -------------------------------------------------------------------------------- /Watch Ring Generator/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Watch Ring Generator/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/bezel38mm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/bezel38mm.imageset/Contents.json -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/bezel38mm.imageset/bezel38mm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/bezel38mm.imageset/bezel38mm@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/bezel42mm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/bezel42mm.imageset/Contents.json -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/bezel42mm.imageset/bezel42mm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/bezel42mm.imageset/bezel42mm@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/paged38mm.imageset/38mm-paged@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/paged38mm.imageset/38mm-paged@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/paged38mm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/paged38mm.imageset/Contents.json -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/paged42mm.imageset/42mm-paged@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/paged42mm.imageset/42mm-paged@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/Images.xcassets/paged42mm.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Images.xcassets/paged42mm.imageset/Contents.json -------------------------------------------------------------------------------- /Watch Ring Generator/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/Info.plist -------------------------------------------------------------------------------- /Watch Ring Generator/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/ViewController.h -------------------------------------------------------------------------------- /Watch Ring Generator/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/ViewController.m -------------------------------------------------------------------------------- /Watch Ring Generator/assets/38mm-paged@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/assets/38mm-paged@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/assets/38mm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/assets/38mm@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/assets/42mm-paged@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/assets/42mm-paged@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/assets/42mm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/assets/42mm@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/assets/bezel38mm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/assets/bezel38mm@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/assets/bezel42mm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/assets/bezel42mm@2x.png -------------------------------------------------------------------------------- /Watch Ring Generator/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/Watch Ring Generator/main.m -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radianttap/WatchRingGenerator/HEAD/screen.png --------------------------------------------------------------------------------