├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── RSRCManager.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── RSRCManager.xcscmblueprint ├── RSRCManager ├── AppDelegate.h ├── AppDelegate.m ├── Info.plist ├── Prefix.pch ├── PreviewCollectionView.h ├── PreviewCollectionView.m ├── RSRCManager.entitlements ├── ResourceCollectionItemView.h ├── ResourceCollectionItemView.m ├── ResourceManager │ ├── RSRCManager.h │ ├── RSRCManager.m │ ├── ResourceEntities.h │ ├── ResourceEntities.m │ ├── ResourceManager.h │ ├── ResourceManager.m │ └── ResourceManager_Protocol.h └── main.m └── Resources ├── Base.lproj └── MainMenu.xib ├── Images.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── icon128.png │ ├── icon128@2x.png │ ├── icon16.png │ ├── icon16@2x.png │ ├── icon256.png │ ├── icon256@2x.png │ ├── icon32.png │ ├── icon32@2x.png │ ├── icon512.png │ └── icon512@2x.png └── done.imageset │ ├── Contents.json │ ├── tick-icon-1.png │ └── tick-icon.png ├── RSRCManager.psd ├── en.lproj ├── Credits.rtf └── InfoPlist.strings └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/README.md -------------------------------------------------------------------------------- /RSRCManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSRCManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSRCManager.xcodeproj/project.xcworkspace/xcshareddata/RSRCManager.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager.xcodeproj/project.xcworkspace/xcshareddata/RSRCManager.xcscmblueprint -------------------------------------------------------------------------------- /RSRCManager/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/AppDelegate.h -------------------------------------------------------------------------------- /RSRCManager/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/AppDelegate.m -------------------------------------------------------------------------------- /RSRCManager/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/Info.plist -------------------------------------------------------------------------------- /RSRCManager/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/Prefix.pch -------------------------------------------------------------------------------- /RSRCManager/PreviewCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/PreviewCollectionView.h -------------------------------------------------------------------------------- /RSRCManager/PreviewCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/PreviewCollectionView.m -------------------------------------------------------------------------------- /RSRCManager/RSRCManager.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/RSRCManager.entitlements -------------------------------------------------------------------------------- /RSRCManager/ResourceCollectionItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceCollectionItemView.h -------------------------------------------------------------------------------- /RSRCManager/ResourceCollectionItemView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceCollectionItemView.m -------------------------------------------------------------------------------- /RSRCManager/ResourceManager/RSRCManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceManager/RSRCManager.h -------------------------------------------------------------------------------- /RSRCManager/ResourceManager/RSRCManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceManager/RSRCManager.m -------------------------------------------------------------------------------- /RSRCManager/ResourceManager/ResourceEntities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceManager/ResourceEntities.h -------------------------------------------------------------------------------- /RSRCManager/ResourceManager/ResourceEntities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceManager/ResourceEntities.m -------------------------------------------------------------------------------- /RSRCManager/ResourceManager/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceManager/ResourceManager.h -------------------------------------------------------------------------------- /RSRCManager/ResourceManager/ResourceManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceManager/ResourceManager.m -------------------------------------------------------------------------------- /RSRCManager/ResourceManager/ResourceManager_Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/ResourceManager/ResourceManager_Protocol.h -------------------------------------------------------------------------------- /RSRCManager/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/RSRCManager/main.m -------------------------------------------------------------------------------- /Resources/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon128.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon128@2x.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon16.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon16@2x.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon256.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon256@2x.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon32.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon32@2x.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon512.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/AppIcon.appiconset/icon512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/AppIcon.appiconset/icon512@2x.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/done.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/done.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Images.xcassets/done.imageset/tick-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/done.imageset/tick-icon-1.png -------------------------------------------------------------------------------- /Resources/Images.xcassets/done.imageset/tick-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/Images.xcassets/done.imageset/tick-icon.png -------------------------------------------------------------------------------- /Resources/RSRCManager.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/RSRCManager.psd -------------------------------------------------------------------------------- /Resources/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | CFBundleDisplayName = "RSRC Manager"; -------------------------------------------------------------------------------- /Resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IGRSoft/RSRCManager/HEAD/Resources/screenshot.png --------------------------------------------------------------------------------