├── .gitignore ├── .gitmodules ├── Application ├── ApplicationDelegate.h ├── ApplicationDelegate.m ├── BinaryImageCell.h ├── BinaryImageCell.m ├── Button.h ├── Button.m ├── CrashLog.h ├── CrashLog.m ├── CrashLogGroup.h ├── CrashLogGroup.m ├── Entitlements.plist ├── Makefile ├── ModalActionSheet.h ├── ModalActionSheet.m ├── PackageCache.h ├── PackageCache.m ├── RootCell.h ├── RootCell.m ├── RootViewController.h ├── RootViewController.m ├── ScriptViewController.h ├── ScriptViewController.m ├── SectionHeaderView.h ├── SectionHeaderView.m ├── SuspectsViewController.h ├── SuspectsViewController.m ├── TableViewCell.h ├── TableViewCell.m ├── TableViewCellLine.h ├── TableViewCellLine.m ├── TableViewController.h ├── TableViewController.m ├── UIImage+CrashReporter.h ├── UIImage+CrashReporter.m ├── UITableView+CrashReporter.h ├── UITableView+CrashReporter.m ├── VictimCell.h ├── VictimCell.m ├── VictimViewController.h ├── VictimViewController.m ├── font-awesome.h ├── main.m ├── pastie.h └── pastie.m ├── CHANGELOG.md ├── Design ├── icon-72.xcf ├── icon-72@2x.xcf ├── icon.idraw ├── icon.xcf ├── icon@2x.xcf └── navicon.xcf ├── LICENSE ├── Makefile ├── README.md ├── as_root ├── Entitlements.plist ├── Makefile └── as_root.c ├── common ├── crashlog_util.h ├── crashlog_util.m ├── exec_as_root.h ├── exec_as_root.m ├── paths.h └── preferences.h ├── extrainst_ ├── Entitlements.plist ├── Makefile └── main.mm ├── layout ├── Applications │ └── CrashReporter.app │ │ ├── CrashReporter_ │ │ ├── Default-568h@2x.png │ │ ├── Default-700-568h@2x.png │ │ ├── Default-700-Landscape@2x.png │ │ ├── Default-700-Portrait@2x.png │ │ ├── Default-700@2x.png │ │ ├── Default-800-667h@2x.png │ │ ├── Default-800-667h@3x.png │ │ ├── Default-800-Landscape-736h@3x.png │ │ ├── Default-800-Portrait-736h@3x.png │ │ ├── Default-Landscape.png │ │ ├── Default-Portrait.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Documentation │ │ ├── APPS.html │ │ ├── APP_EXTENSIONS.html │ │ ├── CRASHED_PROCESS.html │ │ ├── EARLIER.html │ │ ├── LATEST.html │ │ ├── LOADED_BINARIES.html │ │ ├── MAIN_SUSPECT.html │ │ ├── OTHER_SUSPECTS.html │ │ ├── REPORT_OVERVIEW.html │ │ ├── SERVICES.html │ │ └── style.css │ │ ├── FontAwesome.otf │ │ ├── Icon-60.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76@2x~ipad.png │ │ ├── Icon-76~ipad.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Info.plist │ │ ├── help_button.png │ │ ├── help_button@2x.png │ │ ├── help_button@3x.png │ │ ├── icon-72.png │ │ ├── icon-72@2x.png │ │ ├── icon.png │ │ ├── icon@2x.png │ │ ├── navicon.png │ │ ├── navicon@2x.png │ │ ├── notifier_ │ │ └── whitelist.plist ├── DEBIAN │ ├── control │ └── crash_reporter └── Library │ ├── MobileSubstrate │ └── DynamicLibraries │ │ ├── CrashReporter.dylib │ │ ├── CrashReporter.plist │ │ ├── CrashReporterScanner.dylib │ │ └── CrashReporterScanner.plist │ └── PreferenceLoader │ └── Preferences │ └── CrashReporter │ ├── CrashReporter.plist │ ├── icon.png │ ├── icon@2x.png │ └── icon@3x.png ├── monitor ├── Makefile ├── Tweak.xm └── monitor.plist ├── notifier ├── Entitlements.plist ├── Makefile └── main.m └── scanner ├── CRAlertItem.h ├── CRAlertItem.xm ├── CRCannotEmailAlertItem.h ├── CRCannotEmailAlertItem.xm ├── CRMailViewController.h ├── CRMailViewController.m ├── CRMissingFilterAlertItem.h ├── CRMissingFilterAlertItem.xm ├── Makefile ├── Tweak.xm └── scanner.plist /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/.gitmodules -------------------------------------------------------------------------------- /Application/ApplicationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/ApplicationDelegate.h -------------------------------------------------------------------------------- /Application/ApplicationDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/ApplicationDelegate.m -------------------------------------------------------------------------------- /Application/BinaryImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/BinaryImageCell.h -------------------------------------------------------------------------------- /Application/BinaryImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/BinaryImageCell.m -------------------------------------------------------------------------------- /Application/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/Button.h -------------------------------------------------------------------------------- /Application/Button.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/Button.m -------------------------------------------------------------------------------- /Application/CrashLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/CrashLog.h -------------------------------------------------------------------------------- /Application/CrashLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/CrashLog.m -------------------------------------------------------------------------------- /Application/CrashLogGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/CrashLogGroup.h -------------------------------------------------------------------------------- /Application/CrashLogGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/CrashLogGroup.m -------------------------------------------------------------------------------- /Application/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/Entitlements.plist -------------------------------------------------------------------------------- /Application/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/Makefile -------------------------------------------------------------------------------- /Application/ModalActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/ModalActionSheet.h -------------------------------------------------------------------------------- /Application/ModalActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/ModalActionSheet.m -------------------------------------------------------------------------------- /Application/PackageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/PackageCache.h -------------------------------------------------------------------------------- /Application/PackageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/PackageCache.m -------------------------------------------------------------------------------- /Application/RootCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/RootCell.h -------------------------------------------------------------------------------- /Application/RootCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/RootCell.m -------------------------------------------------------------------------------- /Application/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/RootViewController.h -------------------------------------------------------------------------------- /Application/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/RootViewController.m -------------------------------------------------------------------------------- /Application/ScriptViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/ScriptViewController.h -------------------------------------------------------------------------------- /Application/ScriptViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/ScriptViewController.m -------------------------------------------------------------------------------- /Application/SectionHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/SectionHeaderView.h -------------------------------------------------------------------------------- /Application/SectionHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/SectionHeaderView.m -------------------------------------------------------------------------------- /Application/SuspectsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/SuspectsViewController.h -------------------------------------------------------------------------------- /Application/SuspectsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/SuspectsViewController.m -------------------------------------------------------------------------------- /Application/TableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/TableViewCell.h -------------------------------------------------------------------------------- /Application/TableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/TableViewCell.m -------------------------------------------------------------------------------- /Application/TableViewCellLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/TableViewCellLine.h -------------------------------------------------------------------------------- /Application/TableViewCellLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/TableViewCellLine.m -------------------------------------------------------------------------------- /Application/TableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/TableViewController.h -------------------------------------------------------------------------------- /Application/TableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/TableViewController.m -------------------------------------------------------------------------------- /Application/UIImage+CrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/UIImage+CrashReporter.h -------------------------------------------------------------------------------- /Application/UIImage+CrashReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/UIImage+CrashReporter.m -------------------------------------------------------------------------------- /Application/UITableView+CrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/UITableView+CrashReporter.h -------------------------------------------------------------------------------- /Application/UITableView+CrashReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/UITableView+CrashReporter.m -------------------------------------------------------------------------------- /Application/VictimCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/VictimCell.h -------------------------------------------------------------------------------- /Application/VictimCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/VictimCell.m -------------------------------------------------------------------------------- /Application/VictimViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/VictimViewController.h -------------------------------------------------------------------------------- /Application/VictimViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/VictimViewController.m -------------------------------------------------------------------------------- /Application/font-awesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/font-awesome.h -------------------------------------------------------------------------------- /Application/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/main.m -------------------------------------------------------------------------------- /Application/pastie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/pastie.h -------------------------------------------------------------------------------- /Application/pastie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Application/pastie.m -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Design/icon-72.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Design/icon-72.xcf -------------------------------------------------------------------------------- /Design/icon-72@2x.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Design/icon-72@2x.xcf -------------------------------------------------------------------------------- /Design/icon.idraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Design/icon.idraw -------------------------------------------------------------------------------- /Design/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Design/icon.xcf -------------------------------------------------------------------------------- /Design/icon@2x.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Design/icon@2x.xcf -------------------------------------------------------------------------------- /Design/navicon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Design/navicon.xcf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/README.md -------------------------------------------------------------------------------- /as_root/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/as_root/Entitlements.plist -------------------------------------------------------------------------------- /as_root/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/as_root/Makefile -------------------------------------------------------------------------------- /as_root/as_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/as_root/as_root.c -------------------------------------------------------------------------------- /common/crashlog_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/common/crashlog_util.h -------------------------------------------------------------------------------- /common/crashlog_util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/common/crashlog_util.m -------------------------------------------------------------------------------- /common/exec_as_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/common/exec_as_root.h -------------------------------------------------------------------------------- /common/exec_as_root.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/common/exec_as_root.m -------------------------------------------------------------------------------- /common/paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/common/paths.h -------------------------------------------------------------------------------- /common/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/common/preferences.h -------------------------------------------------------------------------------- /extrainst_/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/extrainst_/Entitlements.plist -------------------------------------------------------------------------------- /extrainst_/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/extrainst_/Makefile -------------------------------------------------------------------------------- /extrainst_/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/extrainst_/main.mm -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/CrashReporter_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/CrashReporter_ -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-568h@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-700-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-700-568h@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-700-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-700-Landscape@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-700-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-700-Portrait@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-700@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-700@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-800-667h@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-800-667h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-800-667h@3x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-800-Landscape-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-800-Landscape-736h@3x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-Landscape.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default-Portrait.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Default@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/APPS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/APPS.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/APP_EXTENSIONS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/APP_EXTENSIONS.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/CRASHED_PROCESS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/CRASHED_PROCESS.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/EARLIER.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/EARLIER.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/LATEST.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/LATEST.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/LOADED_BINARIES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/LOADED_BINARIES.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/MAIN_SUSPECT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/MAIN_SUSPECT.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/OTHER_SUSPECTS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/OTHER_SUSPECTS.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/REPORT_OVERVIEW.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/REPORT_OVERVIEW.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/SERVICES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/SERVICES.html -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Documentation/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Documentation/style.css -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/FontAwesome.otf -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-60.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-60@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-60@3x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-76@2x~ipad.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-76~ipad.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-Small-40.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-Small-50.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-Small.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Icon-Small@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/Info.plist -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/help_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/help_button.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/help_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/help_button@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/help_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/help_button@3x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/icon-72.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/icon-72@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/icon.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/icon@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/navicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/navicon.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/navicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/navicon@2x.png -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/notifier_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/notifier_ -------------------------------------------------------------------------------- /layout/Applications/CrashReporter.app/whitelist.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Applications/CrashReporter.app/whitelist.plist -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/DEBIAN/crash_reporter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/DEBIAN/crash_reporter -------------------------------------------------------------------------------- /layout/Library/MobileSubstrate/DynamicLibraries/CrashReporter.dylib: -------------------------------------------------------------------------------- 1 | /Applications/CrashReporter.app/monitor.dylib -------------------------------------------------------------------------------- /layout/Library/MobileSubstrate/DynamicLibraries/CrashReporter.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Library/MobileSubstrate/DynamicLibraries/CrashReporter.plist -------------------------------------------------------------------------------- /layout/Library/MobileSubstrate/DynamicLibraries/CrashReporterScanner.dylib: -------------------------------------------------------------------------------- 1 | /Applications/CrashReporter.app/scanner.dylib -------------------------------------------------------------------------------- /layout/Library/MobileSubstrate/DynamicLibraries/CrashReporterScanner.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Library/MobileSubstrate/DynamicLibraries/CrashReporterScanner.plist -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/CrashReporter/CrashReporter.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Library/PreferenceLoader/Preferences/CrashReporter/CrashReporter.plist -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/CrashReporter/icon.png: -------------------------------------------------------------------------------- 1 | ../../../../Applications/CrashReporter.app/Icon-Small.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/CrashReporter/icon@2x.png: -------------------------------------------------------------------------------- 1 | ../../../../Applications/CrashReporter.app/Icon-Small@2x.png -------------------------------------------------------------------------------- /layout/Library/PreferenceLoader/Preferences/CrashReporter/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/layout/Library/PreferenceLoader/Preferences/CrashReporter/icon@3x.png -------------------------------------------------------------------------------- /monitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/monitor/Makefile -------------------------------------------------------------------------------- /monitor/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/monitor/Tweak.xm -------------------------------------------------------------------------------- /monitor/monitor.plist: -------------------------------------------------------------------------------- 1 | ../layout/Library/MobileSubstrate/DynamicLibraries/CrashReporter.plist -------------------------------------------------------------------------------- /notifier/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/notifier/Entitlements.plist -------------------------------------------------------------------------------- /notifier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/notifier/Makefile -------------------------------------------------------------------------------- /notifier/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/notifier/main.m -------------------------------------------------------------------------------- /scanner/CRAlertItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/CRAlertItem.h -------------------------------------------------------------------------------- /scanner/CRAlertItem.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/CRAlertItem.xm -------------------------------------------------------------------------------- /scanner/CRCannotEmailAlertItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/CRCannotEmailAlertItem.h -------------------------------------------------------------------------------- /scanner/CRCannotEmailAlertItem.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/CRCannotEmailAlertItem.xm -------------------------------------------------------------------------------- /scanner/CRMailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/CRMailViewController.h -------------------------------------------------------------------------------- /scanner/CRMailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/CRMailViewController.m -------------------------------------------------------------------------------- /scanner/CRMissingFilterAlertItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/CRMissingFilterAlertItem.h -------------------------------------------------------------------------------- /scanner/CRMissingFilterAlertItem.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/CRMissingFilterAlertItem.xm -------------------------------------------------------------------------------- /scanner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/Makefile -------------------------------------------------------------------------------- /scanner/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashikase/CrashReporter/HEAD/scanner/Tweak.xm -------------------------------------------------------------------------------- /scanner/scanner.plist: -------------------------------------------------------------------------------- 1 | ../layout/Library/MobileSubstrate/DynamicLibraries/CrashReporterScanner.plist --------------------------------------------------------------------------------