diff --git a/.github/CONTRIBUTING/CONTRIBUTING_GUIDELINES.md b/.github/CONTRIBUTING/CONTRIBUTING_GUIDELINES.md new file mode 100644 index 000000000..b568d434c --- /dev/null +++ b/.github/CONTRIBUTING/CONTRIBUTING_GUIDELINES.md @@ -0,0 +1,8 @@ +# Contributing Guidelines + +## Creating a pull request +If you are proposing a pull request, please make sure the change won't interfere with anything current, and that it is useful. +## Creating an issue +If you want to request a feature use the Feature Issue template, and the Bug Report template for reporting a bug or crash. + +#### Please be respectful of others, and use a polite tone diff --git a/README.md b/README.md index 91498f068..c839d4dc7 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ You can build by running `autobuild.bat`, or if you prefer the manual way, do th gradlew.bat build cd build/libs ``` -In `build/libs` you will find a file `KAMI---full.jar` which you can copy to the `mods` folder of a minecraft instance that has forge installed. +To copy the release jar in `build/libs` you can run `autocopy.bat` or, if you prefer doing it manually, find a file `KAMI---release.jar` which you can copy to the `mods` folder of a minecraft instance that has forge installed. ## Thank you [ZeroMemes](https://github.com/ZeroMemes) for [Alpine](https://github.com/ZeroMemes/Alpine) diff --git a/autocopy b/autocopy new file mode 100644 index 000000000..25f209285 --- /dev/null +++ b/autocopy @@ -0,0 +1,2 @@ +rm ~/.minecraft/mods/1.12.2/KAMI* +cp build/libs/*-release.jar ~/.minecraft/mods/1.12.2/ diff --git a/autocopy.bat b/autocopy.bat new file mode 100644 index 000000000..d5e6f8351 --- /dev/null +++ b/autocopy.bat @@ -0,0 +1,2 @@ +del %appdata%\.minecraft\mods\1.12.2\Kami*.jar +xcopy %~dp0build\libs\*-release.jar %appdata%\.minecraft\mods\1.12.2\