Contributing
May 1, 2026 ยท View on GitHub
MyKVM uses small, focused changes and Conventional Commit style prefixes.
Commit Prefixes
feat:user-facing featurefix:bug fixperf:performance improvementrefactor:internal code change without behavior changeui:visual or interaction-only changedocs:documentation-only changeci:GitHub Actions or release automationbuild:packaging, dependency, or build-system changechore:maintenance that does not affect runtime behaviortest:tests or verification changesrelease:version bump, changelog, and release preparation
Use a scope when it helps scanning:
feat(transport): add single-port UDP fallback
fix(ui): keep header sticky while scrolling
ci(release): build Tauri bundles on tags
release: v0.1.0
Versioning And Releases
Pushes to main can publish releases automatically:
feat:creates the next minor release.fix:creates the next patch release.- Other prefixes do not publish a release.
- If no release tag exists yet, the first
feat:orfix:push createsv0.1.0.
Breaking protocol or config changes should be called out in the commit body and release notes.
Before Opening A Pull Request
npm run build
npm run lint
cd src-tauri && cargo check