Thanks for your interest in contributing to PlayDay-iOS projects.
Most tweak repositories use Theos and build inside a container so no local iOS toolchain is needed:
docker build -t tweak-build -f Containerfile .
docker run --rm -v "$PWD:/build:Z" tweak-buildThe built .deb is written to packages/.
- Fork the repository and create a branch from
main(ormaster). - Make your changes. Keep commits focused and messages concise.
- Test locally with the container build above.
- Open a pull request with a clear description of what changed and why.
Open an issue on the relevant repository. Include:
- Device model and iOS version.
- Steps to reproduce.
- Expected vs. actual behaviour.
- Crash logs or syslog output if applicable.
- Objective-C: follow the conventions already present in each project (Theos/Logos syntax).
- Go (repo tool):
gofmtandgo vetmust pass. - Shell: use
set -euo pipefailin scripts.
Contributions are licensed under the same terms as the repository you contribute to (check the LICENSE file in each repo).