Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 978 Bytes

File metadata and controls

33 lines (23 loc) · 978 Bytes

Contributing

Thanks for helping improve TaxClicker.

Development Setup

python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
python main.py

Before Opening a Pull Request

  • Keep changes focused on one bug fix or feature.
  • Test the application manually on Windows when the change touches input recording, playback, icons, window behavior, or packaging.
  • Run a syntax check before submitting:
python -m compileall -q main.py core ui

Coding Guidelines

  • Follow the existing PySide6 structure and QSS theme approach.
  • Keep UI changes consistent across all themes.
  • Avoid unrelated refactors in feature or bug-fix pull requests.
  • Do not add automation behavior that is intended to bypass anti-cheat, access controls, or third-party terms of service.

Release Notes

For user-facing changes, mention the behavior change clearly in the pull request description so it can be reflected in release notes.