├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── assets ├── IMG_1.png ├── IMG_2.jpg └── IMG_3.jpg ├── control ├── layout ├── DEBIAN │ ├── postinst │ └── postrm └── var │ └── root │ └── Library │ └── Preferences │ └── com.apple.CrashReporter.plist └── packages └── daniel.symbolicator_1.0.0_iphoneos-arm.deb /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/README.md -------------------------------------------------------------------------------- /assets/IMG_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/assets/IMG_1.png -------------------------------------------------------------------------------- /assets/IMG_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/assets/IMG_2.jpg -------------------------------------------------------------------------------- /assets/IMG_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/assets/IMG_3.jpg -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/control -------------------------------------------------------------------------------- /layout/DEBIAN/postinst: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | killall logd || : 4 | -------------------------------------------------------------------------------- /layout/DEBIAN/postrm: -------------------------------------------------------------------------------- 1 | postinst -------------------------------------------------------------------------------- /layout/var/root/Library/Preferences/com.apple.CrashReporter.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/layout/var/root/Library/Preferences/com.apple.CrashReporter.plist -------------------------------------------------------------------------------- /packages/daniel.symbolicator_1.0.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dlevi309/Symbolicator/HEAD/packages/daniel.symbolicator_1.0.0_iphoneos-arm.deb --------------------------------------------------------------------------------