├── .gitignore ├── Post Grabber.xcodeproj └── project.pbxproj ├── Post Grabber ├── PGMainWindowController.h ├── PGMainWindowController.m ├── Post Grabber-Info.plist ├── Post Grabber-Prefix.pch ├── Post_GrabberAppDelegate.h ├── Post_GrabberAppDelegate.m ├── en.lproj │ ├── InfoPlist.strings │ └── MainMenu.xib └── main.m ├── README.md └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | project.xcworkspace -------------------------------------------------------------------------------- /Post Grabber.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Post Grabber/PGMainWindowController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber/PGMainWindowController.h -------------------------------------------------------------------------------- /Post Grabber/PGMainWindowController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber/PGMainWindowController.m -------------------------------------------------------------------------------- /Post Grabber/Post Grabber-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber/Post Grabber-Info.plist -------------------------------------------------------------------------------- /Post Grabber/Post Grabber-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber/Post Grabber-Prefix.pch -------------------------------------------------------------------------------- /Post Grabber/Post_GrabberAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber/Post_GrabberAppDelegate.h -------------------------------------------------------------------------------- /Post Grabber/Post_GrabberAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber/Post_GrabberAppDelegate.m -------------------------------------------------------------------------------- /Post Grabber/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Post Grabber/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Post Grabber/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/Post Grabber/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaeltyson/PostGrabber/HEAD/screenshot.png --------------------------------------------------------------------------------