├── .github ├── FUNDING.yml └── workflows │ └── makefile.yml ├── .gitignore ├── Makefile ├── README.md ├── TWHeaders.h ├── Tweak.x ├── TwitterLegacyPatcher.plist └── control /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyathea/twitterlegacypatcher/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/makefile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyathea/twitterlegacypatcher/HEAD/.github/workflows/makefile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | hidden/ 2 | .theos/ 3 | packages/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyathea/twitterlegacypatcher/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyathea/twitterlegacypatcher/HEAD/README.md -------------------------------------------------------------------------------- /TWHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyathea/twitterlegacypatcher/HEAD/TWHeaders.h -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyathea/twitterlegacypatcher/HEAD/Tweak.x -------------------------------------------------------------------------------- /TwitterLegacyPatcher.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyathea/twitterlegacypatcher/HEAD/TwitterLegacyPatcher.plist -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nyathea/twitterlegacypatcher/HEAD/control --------------------------------------------------------------------------------