├── .gitignore ├── Iro.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── Iro.xcworkspace └── contents.xcworkspacedata ├── Iro ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── MainMenu.xib ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── 16.png │ │ ├── 16@2x.png │ │ ├── 256.png │ │ ├── 256@2x.png │ │ ├── 32.png │ │ ├── 32@2x.png │ │ ├── 512.png │ │ ├── 512@2x.png │ │ └── Contents.json ├── Iro-Info.plist ├── Iro-Prefix.pch ├── Iro.entitlements ├── NSColor+Hex.h ├── NSColor+Hex.m ├── Status.png ├── Status@2x.png ├── StatusHighlighted.png ├── StatusHighlighted@2x.png ├── en.lproj │ ├── Credits.rtf │ └── InfoPlist.strings └── main.m ├── IroTests ├── IroTests-Info.plist ├── IroTests.m └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Podfile ├── Podfile.lock ├── Preview.png └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/.gitignore -------------------------------------------------------------------------------- /Iro.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Iro.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Iro.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Iro/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/AppDelegate.h -------------------------------------------------------------------------------- /Iro/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/AppDelegate.m -------------------------------------------------------------------------------- /Iro/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/16@2x.png -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/256@2x.png -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/32@2x.png -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/512@2x.png -------------------------------------------------------------------------------- /Iro/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Iro/Iro-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Iro-Info.plist -------------------------------------------------------------------------------- /Iro/Iro-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Iro-Prefix.pch -------------------------------------------------------------------------------- /Iro/Iro.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Iro.entitlements -------------------------------------------------------------------------------- /Iro/NSColor+Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/NSColor+Hex.h -------------------------------------------------------------------------------- /Iro/NSColor+Hex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/NSColor+Hex.m -------------------------------------------------------------------------------- /Iro/Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Status.png -------------------------------------------------------------------------------- /Iro/Status@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/Status@2x.png -------------------------------------------------------------------------------- /Iro/StatusHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/StatusHighlighted.png -------------------------------------------------------------------------------- /Iro/StatusHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/StatusHighlighted@2x.png -------------------------------------------------------------------------------- /Iro/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Iro/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Iro/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Iro/main.m -------------------------------------------------------------------------------- /IroTests/IroTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/IroTests/IroTests-Info.plist -------------------------------------------------------------------------------- /IroTests/IroTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/IroTests/IroTests.m -------------------------------------------------------------------------------- /IroTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/Preview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ripeworks/iro/HEAD/README.md --------------------------------------------------------------------------------