2688548479
Moving the handling of progress to GuiProgressBar |
||
---|---|---|
codeformat | ||
gradle | ||
src | ||
.gitignore | ||
.gitmodules | ||
build.gradle | ||
build.properties | ||
CONTRIBUTING.md | ||
gradlew | ||
gradlew.bat | ||
LICENSE | ||
README.md |
Applied Energistics 2
Table of Content
About
A Mod about Matter, Energy and using them to conquer the world..
Contacts
License
Applied Energistics 2 is (c) 2013 - 2014 AlgorithmX2 and licensed under LGPL v3. See the LICENSE.txt for details or go to http://www.gnu.org/licenses/lgpl-3.0.txt for more information. Textures and Models are licensed under Creative Commons 3.
Downloads
Downloads can be found on CurseForge or on the official website.
Installation
You install this mod by putting it into the minecraft/mods/
folder. It has no additional hard dependencies.
Building
- Clone this repository via
- SSH
git clone --recursive git@github.com:AppliedEnergistics/Applied-Energistics-2.git
or - HTTPS
git clone --recursive https://github.com/AppliedEnergistics/Applied-Energistics-2.git
- Note the
--recursive
option. This enables to automatically clones of all submodules. AE2 uses the AE2-API and AE2-Lang repositories.
- Setup workspace
- Decompiled source
gradlew setupDecompWorkspace
- Obfuscated source
gradlew setupDevWorkspace
- CI server
gradlew setupCIWorkspace
- Setup IDE
- IntelliJ: Import into IDE and execute
gradlew genIntellijRuns
afterwards - Eclipse: execute
gradlew eclipse
- Build
gradlew build
. Jar will be inbuild/libs
- (In order to have FML detect AE from your dev environment, add the following VM Option to your run profile
-Dfml.coreMods.load=appeng.transformer.AppEngCore
TODO)
Contribution
Before you want to add major changes, you might want to discuss them with us first, before wasting your time. If you are still willing to contribute to this project, you can contribute via Pull-Request.
Here are a few things to keep in mind that will help get your PR approved.
- A PR should be focused on content. Any PRs where the changes are only syntax will be rejected.
- Use the file you are editing as a style guide.
- Consider your feature. Suggestion Guidelines
- Is your suggestion already possible using Vanilla + AE2?
- Make sure your feature isn't already in the works, or hasn't been rejected previously.
- Does your feature simplify another feature of AE2? These changes will not be accepted.
- If your feature can be done by any popular mod, discuss with us first.
Getting Started
- Fork this repository
- Clone the fork via
- SSH
git clone git@github.com:<your username>/Applied-Energistics-2.git
or - HTTPS
git clone https://github.com/<your username>/Applied-Energistics-2.git
- Change code base
- Add changes to git
git add -A
- Commit changes to your clone
git commit -m "<summery of made changes>"
- Push to your fork
git push
- Create a Pull-Request on GitHub
If you are only doing single file pull requests, GitHub supports using a quick way without the need of cloning your fork. Also read up about synching if you plan to contribute on regular basis.
Credits
Thanks to
- Notch et al for Minecraft
- Lex et al for MinecraftForge
- AlgorithmX2 for AppliedEnergistics2
- all contributors helping making this mod.