├── .gitignore ├── .theos ├── build_session └── fakeroot ├── BigShotSnapper3Plugin.plist ├── Makefile ├── README.md ├── Tweak.x ├── bigshotjbsnapper3plugin ├── BigShotJbSnapper3Plugin.plist ├── Makefile └── Tweak.x ├── ccsupportplugin ├── BigShotCCSupport.xm ├── Makefile ├── Resources │ ├── Info.plist │ ├── SettingsIcon@2x.png │ ├── icon.png │ ├── icon@2x.png │ └── icon@3x.png ├── SnapperCC.h └── SnapperCC.plist ├── layout ├── DEBIAN │ └── control └── Library │ └── Snapper3BigShotPlugin │ ├── action_screenshot_bigshot.png │ ├── action_screenshot_bigshot@2x.png │ └── action_screenshot_bigshot@3x.png └── packages ├── com.jontelang.bigshotsnapper3plugin_1.1_iphoneos-arm.deb └── com.jontelang.bigshotsnapper3plugin_1.1_iphoneos-arm64.deb /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | -------------------------------------------------------------------------------- /.theos/build_session: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.theos/fakeroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BigShotSnapper3Plugin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/BigShotSnapper3Plugin.plist -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/Tweak.x -------------------------------------------------------------------------------- /bigshotjbsnapper3plugin/BigShotJbSnapper3Plugin.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/bigshotjbsnapper3plugin/BigShotJbSnapper3Plugin.plist -------------------------------------------------------------------------------- /bigshotjbsnapper3plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/bigshotjbsnapper3plugin/Makefile -------------------------------------------------------------------------------- /bigshotjbsnapper3plugin/Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/bigshotjbsnapper3plugin/Tweak.x -------------------------------------------------------------------------------- /ccsupportplugin/BigShotCCSupport.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/BigShotCCSupport.xm -------------------------------------------------------------------------------- /ccsupportplugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/Makefile -------------------------------------------------------------------------------- /ccsupportplugin/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/Resources/Info.plist -------------------------------------------------------------------------------- /ccsupportplugin/Resources/SettingsIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/Resources/SettingsIcon@2x.png -------------------------------------------------------------------------------- /ccsupportplugin/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/Resources/icon.png -------------------------------------------------------------------------------- /ccsupportplugin/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/Resources/icon@2x.png -------------------------------------------------------------------------------- /ccsupportplugin/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/Resources/icon@3x.png -------------------------------------------------------------------------------- /ccsupportplugin/SnapperCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/SnapperCC.h -------------------------------------------------------------------------------- /ccsupportplugin/SnapperCC.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/ccsupportplugin/SnapperCC.plist -------------------------------------------------------------------------------- /layout/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/layout/DEBIAN/control -------------------------------------------------------------------------------- /layout/Library/Snapper3BigShotPlugin/action_screenshot_bigshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/layout/Library/Snapper3BigShotPlugin/action_screenshot_bigshot.png -------------------------------------------------------------------------------- /layout/Library/Snapper3BigShotPlugin/action_screenshot_bigshot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/layout/Library/Snapper3BigShotPlugin/action_screenshot_bigshot@2x.png -------------------------------------------------------------------------------- /layout/Library/Snapper3BigShotPlugin/action_screenshot_bigshot@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/layout/Library/Snapper3BigShotPlugin/action_screenshot_bigshot@3x.png -------------------------------------------------------------------------------- /packages/com.jontelang.bigshotsnapper3plugin_1.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/packages/com.jontelang.bigshotsnapper3plugin_1.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /packages/com.jontelang.bigshotsnapper3plugin_1.1_iphoneos-arm64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jontelang/BigShotJbSnapper3Plugin/HEAD/packages/com.jontelang.bigshotsnapper3plugin_1.1_iphoneos-arm64.deb --------------------------------------------------------------------------------