├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── PreferenceLoader.plist ├── README.md ├── Tweak.xm ├── debug.h ├── locatesim.mk ├── prefs.h └── prefs.xm /.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | _ 3 | .theos 4 | debs 5 | *.deb 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/Makefile -------------------------------------------------------------------------------- /PreferenceLoader.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/PreferenceLoader.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/Tweak.xm -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/debug.h -------------------------------------------------------------------------------- /locatesim.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/locatesim.mk -------------------------------------------------------------------------------- /prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/prefs.h -------------------------------------------------------------------------------- /prefs.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/preferenceloader-sim/HEAD/prefs.xm --------------------------------------------------------------------------------