buildcraft/README.md

105 lines
4.9 KiB
Markdown
Raw Permalink Normal View History

## Welcome to Buildcraft on GitHub
2014-10-20 09:29:01 +02:00
### Reporting an issue
2014-10-20 09:29:01 +02:00
Please open an issue for a bug report only if:
2014-10-20 09:29:01 +02:00
* you are sure the bug is caused by BuildCraft and not by any other mod,
* you have at least one of the following:
* a crash report,
* means of reproducing the bug in question,
* screenshots/videos/etc. to demonstrate the bug.
**If you are not sure if a bug report is valid, please use the "Ask Help!" subforum.**
Please only use **official BuildCraft releases** for any kind of bug reports unless otherwise told to do by the BuildCraft team. Custom builds (for instance from Jenkins) are unsupported, often buggy and will **not** get any support from the developers.
2014-10-20 09:29:01 +02:00
Please check if the bug has been reported beforehand. Also, provide the version of BuildCraft used - if it's a version compiled from source, link to the commit/tree you complied from.
Please mention if you are using MCPC+, Cauldron, OptiFine, FastCraft or any other mods which optimize or otherwise severely modify the functioning of the Minecraft engine. That is very helpful when trying to reproduce a bug.
Please do not open issues for features unless you are a member of the BuildCraft team. For that, use the "Feature Requests" subforum.
BuildCraft, being an open-source project, gives you the right to submit a pull request if a particular fix or feature is important to you. However, if the change in question is major, please contact the team beforehand - we wish to prevent wasted effort.
### Contributing
2014-10-20 09:29:01 +02:00
2013-02-14 12:45:40 +01:00
If you wish to submit a pull request to fix bugs or broken behaviour feel free to do so. If you would like to add
features or change existing behaviour or balance, please discuss it on the feature ideas board before (http://mod-buildcraft.com/forums/index.php?board=4.0 before).
Do not submit pull requests which solely "fix" formatting. As these kinds of changes are usually very intrusive in commit history and everyone has their own idea what "proper formatting" is, they should be done by one of the main contributors.
Please only submit "code cleanup", if the changes actually have a substantial impact on readability.
PR implementing new features or changing large portions of code are helpful. But if you're doing such a change and if it gets accepted, please don't "fire and forget". Complex changes are introducing bugs, and as thourough as testing and peer review may be, there will be bugs. Please carry on playing your changes after initial commit and fix residual issues. It is extremely frustrating for others to spend days fixing regressions introduced by unmaintained submissions.
#### Frequently reported
2014-10-20 09:29:01 +02:00
* java.lang.AbstractMethodError, java.lang.NoSuchMethodException
* A mod has not updated to the current BuildCraft API
* You are not using the correct version of BuildCraft for your Forge/Minecraft versions
* You are using the dev version on a normal game instance (or vice versa)
* Render issue (Quarry causes flickering) - Try without OptiFine first! This is a known issue with some versions of OptiFine.
2012-07-10 19:13:12 +02:00
### Compiling and packaging Buildcraft
2014-02-17 17:30:08 +01:00
1. Ensure that `Java` (found [here](http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html)), `Git` (found [here](http://git-scm.com/)) are installed correctly on your system.
* Optional: Install `Gradle` (found [here](http://www.gradle.org/downloads))
1. Create a base directory for the build
2014-02-17 17:30:08 +01:00
1. Clone the Buildcraft repository into 'baseDir/BuildCraft/'
* Optional: Copy BuildCraft localization repository into `baseDir/BuildCraft-Localization`
2014-03-01 10:32:26 +01:00
1. Navigate to basedir/BuildCraft in a shell and run one of two commands:
* `gradlew setupCIWorkspace build` to just build a current jar (this may take a while).
* `gradlew setupDecompWorkspace` to setup a complete developement enviroment.
2014-02-17 17:30:08 +01:00
* With `Gradle` installed: use `gradle` instead of `gradlew`
* On Windows: use `gradlew.bat` instead of `gradlew`
1. The compiled and obfuscated jar will be in 'baseDir/BuildCraft/build/libs'
2014-02-18 01:26:29 +01:00
Your directory structure should look like this before running gradle:
***
2014-02-17 17:30:08 +01:00
baseDir
\- BuildCraft
|- buildcraft_resources
|- common
|- ...
2014-02-17 17:30:08 +01:00
\- BuildCraft-Localization
|- lang
***
2014-02-18 01:26:29 +01:00
And like this after running gradle:
2013-04-03 20:22:52 +02:00
***
basedir
2014-02-17 17:30:08 +01:00
\- BuildCraft
|- .gradle
2013-04-03 20:22:52 +02:00
|- build
|- buildcraft_resources
|- common
|- ...
2014-02-17 17:30:08 +01:00
\- BuildCraft-Localization
2013-04-03 20:22:52 +02:00
|- lang
***
### Localizations
2013-01-23 15:07:03 +01:00
Localizations can be submitted [here](https://github.com/BuildCraft/BuildCraft-Localization). Localization PRs against
this repository will have to be rejected.
2014-02-17 17:30:08 +01:00
### Depending on BuildCraft
Add the following to your build.gradle file:
2014-02-17 17:30:08 +01:00
```
2015-06-07 11:10:47 +02:00
repositories {
ivy {
name "BuildCraft"
artifactPattern "http://www.mod-buildcraft.com/releases/BuildCraft/[revision]/[module]-[revision]-[classifier].[ext]"
}
}
2014-02-17 17:30:08 +01:00
dependencies {
2015-06-07 11:10:47 +02:00
compile name: "buildcraft", version: "7.0.7", classifier: "dev"
2014-02-17 17:30:08 +01:00
}
```
2015-06-07 11:10:47 +02:00
Where `7.0.7` is the desired version of BuildCraft.