Contributions to this project are released to the public under the project's open source license.
This project adheres to a Code of Conduct. By participating, you are expected to honor this code.
- Fork this repo.
- Follow steps to clone and run project.
- Create a branch (
git checkout -b my_branch
). - Commit your changes (
git commit -am "Added new feature"
). - Push to the branch (
git push origin my_branch
). - Open a Pull Request.
- Enjoy a pleasant sleep.
To run the linter:
flutter analyze
If nothing complains, congratulations!
If you are the current maintainer of this repo:
- Download changes locally (
git pull
) - Test the latest version locally with
flutter run
- Build the new version locally with
flutter build appbundle
- Update
CHANGELOG.md
- Bump the version number in
pubspec.yaml
, adhering to Semantic Versioning - Push the new version to the
main
branch (git push origin main
)