├── .gitignore ├── BatteryProperties.h ├── BatteryProperties.x ├── LICENSE.md ├── Makefile ├── Quanta.plist ├── README.md ├── Tweak.x ├── control └── prefs ├── BatteryProperties.x ├── BatteryStuff.x ├── HBQTAboutListController.h ├── HBQTAboutListController.m ├── HBQTRootListController.h ├── HBQTRootListController.m ├── Makefile ├── Resources ├── About.plist ├── Info.plist ├── Root.plist ├── en.lproj │ └── Root.strings ├── en_AU.lproj │ └── Root.strings ├── en_GB.lproj │ └── Root.strings ├── icon.png ├── icon@2x.png └── icon@3x.png └── entry.plist /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .theos 3 | packages 4 | -------------------------------------------------------------------------------- /BatteryProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/BatteryProperties.h -------------------------------------------------------------------------------- /BatteryProperties.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/BatteryProperties.x -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/Makefile -------------------------------------------------------------------------------- /Quanta.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/Quanta.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/Tweak.x -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/control -------------------------------------------------------------------------------- /prefs/BatteryProperties.x: -------------------------------------------------------------------------------- 1 | ../BatteryProperties.x -------------------------------------------------------------------------------- /prefs/BatteryStuff.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/BatteryStuff.x -------------------------------------------------------------------------------- /prefs/HBQTAboutListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/HBQTAboutListController.h -------------------------------------------------------------------------------- /prefs/HBQTAboutListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/HBQTAboutListController.m -------------------------------------------------------------------------------- /prefs/HBQTRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/HBQTRootListController.h -------------------------------------------------------------------------------- /prefs/HBQTRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/HBQTRootListController.m -------------------------------------------------------------------------------- /prefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Makefile -------------------------------------------------------------------------------- /prefs/Resources/About.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/About.plist -------------------------------------------------------------------------------- /prefs/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/Info.plist -------------------------------------------------------------------------------- /prefs/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/Root.plist -------------------------------------------------------------------------------- /prefs/Resources/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/en.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/en_AU.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/en_AU.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/en_GB.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/en_GB.lproj/Root.strings -------------------------------------------------------------------------------- /prefs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/icon.png -------------------------------------------------------------------------------- /prefs/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/icon@2x.png -------------------------------------------------------------------------------- /prefs/Resources/icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/Resources/icon@3x.png -------------------------------------------------------------------------------- /prefs/entry.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbang/Quanta/HEAD/prefs/entry.plist --------------------------------------------------------------------------------