From 0dd722c9347ae1791d3c119dd5fa8019cdc31977 Mon Sep 17 00:00:00 2001 From: JeanGarf <53929184+JeanGarf@users.noreply.github.com> Date: Sun, 5 Jan 2020 21:46:07 +0100 Subject: [PATCH 1/2] Update CONTRIBUTING.md --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8900c416a..8a421ce29 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -9,7 +9,7 @@ GnuCash Android is built by people like you! Please [join us](https://github.com ## Code Contributions * Contributions are submitted, reviewed, and accepted using Github pull requests. [Read this article](https://help.github.com/articles/using-pull-requests) for some details. We use the _Fork and Pull_ model, as described there. * You can maintain your stable installation of GnuCash and test with another installation. -The two instances of GnuCash Android will live side-by-side on your device and not affect each other. You can install the development version by executing `gradle installDD` inside the root project directory +The two instances of GnuCash Android will live side-by-side on your device and not affect each other. You can install the development version by executing `gradlew installDevelopmentDebug` inside the root project directory * The latest changes are in the `develop` branch. * Always rebase develop before working on a fix or issuing a pull request * The master branch contains only stable releases. From 3b5ef73afbd1a16a592448bc52c649c2a60807d7 Mon Sep 17 00:00:00 2001 From: JeanGarf Date: Fri, 19 Jun 2020 17:53:52 +0200 Subject: [PATCH 2/2] Add info about Windows --- .github/CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8a421ce29..d9f57bbbb 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -23,7 +23,7 @@ The two instances of GnuCash Android will live side-by-side on your device and n * Make a new branch for every feature you're working on. * Try to make clean commits that are easily readable (including descriptive commit messages!) * Test before you push make sure all test pass on your machine. - * Unit tests can be run with `gradle test` + * Unit tests can be run with `gradle test` or (`gradlew test` on Windows) * UI tests can be run with `gradle spoonDD`. This will run the tests on all connected devices/emulators. * Make small pull requests that are easy to review but which also add value.