Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.15 KB

File metadata and controls

58 lines (40 loc) · 1.15 KB

Contributing to PasteFox Apps

Thanks for your interest in contributing!

Getting Started

  1. Fork the repository
  2. Clone your fork
  3. Create a branch: git checkout -b my-feature
  4. Make your changes
  5. Test locally
  6. Commit: git commit -m "feat: description"
  7. Push: git push origin my-feature
  8. Open a Pull Request

Development

Desktop (Windows)

cd desktop
dotnet build
dotnet run

Requires .NET 10 SDK.

Commit Messages

Use Conventional Commits:

  • feat: — New feature
  • fix: — Bug fix
  • docs: — Documentation
  • style: — Formatting, no code change
  • refactor: — Code restructuring
  • test: — Adding tests
  • chore: — Maintenance

Prefix with the app name for clarity:

feat(desktop): add clipboard monitoring
fix(mobile): fix login flow on iOS

Releases

Releases are created via Git tags:

  • Desktop: desktop-v1.0.0
  • Mobile: mobile-v1.0.0

GitHub Actions will automatically build and publish releases.

Code of Conduct

Be respectful and constructive. We're all here to build something great.