2014-09-26 16:45:39 +02:00
# Applied Energistics 2
2014-09-24 02:30:22 +02:00
2015-03-24 18:39:44 +01:00
## Table of Contents
2014-09-24 02:30:22 +02:00
2014-09-26 16:45:39 +02:00
* [About ](#about )
* [Contacts ](#contacts )
* [License ](#license )
* [Downloads ](#downloads )
* [Installation ](#installation )
2014-09-30 03:00:30 +02:00
* [Issues ](#issues )
2014-09-26 16:45:39 +02:00
* [Building ](#building )
* [Contribution ](#contribution )
2014-12-13 01:26:10 +01:00
* [API ](#applied-energistics-2-api )
* [Localization ](#applied-energistics-2-localization )
2014-09-26 16:45:39 +02:00
* [Credits ](#credits )
2014-09-24 02:30:22 +02:00
2014-09-26 16:45:39 +02:00
## About
2014-09-24 02:30:22 +02:00
2014-09-26 16:45:39 +02:00
A Mod about Matter, Energy and using them to conquer the world..
2014-09-24 02:30:22 +02:00
2014-09-26 16:45:39 +02:00
## Contacts
2014-09-24 02:50:14 +02:00
2014-09-26 16:45:39 +02:00
* [Website ](http://ae-mod.info/ )
* [IRC #appliedenergistics on esper.net ](http://webchat.esper.net/?channels=appliedenergistics&prompt=1 )
* [GitHub ](https://github.com/AppliedEnergistics/Applied-Energistics-2 )
2014-09-24 02:50:14 +02:00
2014-09-26 16:45:39 +02:00
## License
2014-09-24 02:50:14 +02:00
2014-12-13 01:26:10 +01:00
Applied Energistics 2 API is (c) 2013 - 2014 AlgorithmX2 and licensed under MIT.
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.
2015-02-03 17:01:48 +01:00
Textures and Models are licensed under [Creative Commons, Attribution-NonCommercial-ShareAlike 3.0 ]( https://creativecommons.org/licenses/by-nc-sa/3.0/ ).
2014-09-24 02:50:14 +02:00
2014-09-26 16:45:39 +02:00
## Downloads
2014-09-24 02:50:14 +02:00
2014-09-26 16:45:39 +02:00
Downloads can be found on [CurseForge ](http://www.curse.com/mc-mods/minecraft/223794-applied-energistics-2 ) or on the [official website ](http://ae-mod.info/Downloads/ ).
2014-09-25 17:10:23 +02:00
2014-09-26 16:45:39 +02:00
## Installation
2014-09-24 02:30:22 +02:00
2014-09-26 16:45:39 +02:00
You install this mod by putting it into the `minecraft/mods/` folder. It has no additional hard dependencies.
2014-09-24 02:30:22 +02:00
2014-09-30 03:00:30 +02:00
## Issues
Applied Energistics 2 crashing, have a suggestion, found a bug? Create an issue now!
1. Make sure your issue hasn't already been answered or fixed. Also think about whether your issue is a valid one before submitting it.
2. Go to [the issues page ](https://github.com/AppliedEnergistics/Applied-Energistics-2/issues )
3. Click new issue
4. Enter your Issue's title (something that summarizes your issue), and then create a detailed description of the issue.
* To help in resolving your issues please try to include the follow if applicable:
* The problem that is happening?
* What was expected?
* How to reproduce the problem?
* Server or Single Player?
* Mod Pack using and version?
* Crash log (Please make sure to use [pastebin ](http://pastebin.com/ ) for the log file)
* Screen shots or Pictures of the problem
5. Click `Submit New Issue` , and wait for feedback!
2014-09-26 16:45:39 +02:00
## Building
2014-09-24 02:30:22 +02:00
2014-09-26 16:45:39 +02:00
1. Clone this repository via
2014-12-15 14:42:09 +01:00
- SSH `git clone git@github.com:AppliedEnergistics/Applied-Energistics-2.git` or
- HTTPS `git clone https://github.com/AppliedEnergistics/Applied-Energistics-2.git`
2014-09-26 23:28:32 +02:00
2. Setup workspace
2014-09-26 16:45:39 +02:00
- Decompiled source `gradlew setupDecompWorkspace`
- Obfuscated source `gradlew setupDevWorkspace`
- CI server `gradlew setupCIWorkspace`
2014-12-15 14:42:09 +01:00
3. Build `gradlew build` . Jar will be in `build/libs`
4. For core developer: Setup IDE
2014-09-26 16:45:39 +02:00
- IntelliJ: Import into IDE and execute `gradlew genIntellijRuns` afterwards
- Eclipse: execute `gradlew eclipse`
2014-12-15 14:42:09 +01:00
5. For add-on developer: Core-Mod Detection
- 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`
2014-09-26 16:45:39 +02:00
## Contribution
2014-09-26 21:08:22 +02:00
Before you want to add major changes, you might want to discuss them with us first, before wasting your time.
2014-09-26 16:45:39 +02:00
If you are still willing to contribute to this project, you can contribute via [Pull-Request ](https://help.github.com/articles/creating-a-pull-request ).
2014-09-29 05:11:59 +02:00
Here are a few things to keep in mind that will help get your PR approved.
2014-09-29 05:18:55 +02:00
* 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 ](http://ae-mod.info/Suggestion-Guidelines/ )
2014-09-29 05:11:59 +02:00
- 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.
2014-09-29 05:18:55 +02:00
Getting Started
2014-09-26 16:45:39 +02:00
1. Fork this repository
2. 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`
3. Change code base
4. Add changes to git `git add -A`
5. Commit changes to your clone `git commit -m "<summery of made changes>"`
6. Push to your fork `git push`
7. Create a Pull-Request on GitHub
2014-12-15 14:42:09 +01:00
8. Wait for review
9. Suqash commits for cleaner history
2014-09-26 16:45:39 +02:00
2014-09-27 21:15:39 +02:00
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 ](https://help.github.com/articles/syncing-a-fork ) if you plan to contribute on regular basis.
2014-09-26 16:45:39 +02:00
2014-12-13 01:26:10 +01:00
## Applied Energistics 2 API
The API for Applied Energistics 2. It is open source to discuss changes, improve documentation, and provide better add-on support in general.
Development and standard builds can be obtained [Here ](http://ae2.ae-mod.info/Downloads/ ).
### Maven
When compiling against the AE2 API you can use gradle dependencies, just add
2014-12-15 14:42:09 +01:00
dependencies {
compile "appeng:appliedenergistics2:rv_-_____-__:dev"
}
2014-12-13 01:26:10 +01:00
or add the compile line to your existing dependencies task to your build.gradle
Where the __ are filled in with the correct version criteria; AE2 is available from the default forge maven so no additional repositories are necessary.
2014-12-15 14:42:09 +01:00
An example string would be `appeng:appliedenergistics2:rv2-alpha-30:dev`
2014-12-13 01:26:10 +01:00
## Applied Energistics 2 Localization
### English Text
2014-12-15 14:42:09 +01:00
`en_US` is included in this repository, fixes to typos are welcome.
2014-12-13 01:26:10 +01:00
### Encoding
Files must be encoded as UTF-8.
### License
All Text and Translations submitted here can be used for any purpose, and may be re-distributed or used without any limitations.
### New Translations
2014-12-15 14:42:09 +01:00
You can provide any additional languages by creating a new file with the [appropriate language code ](http://download1.parallels.com/SiteBuilder/Windows/docs/3.2/en_US/sitebulder-3.2-win-sdk-localization-pack-creation-guide/30801.htm ).
2014-12-13 01:26:10 +01:00
### Final Note
2014-12-15 14:42:09 +01:00
If you have have issues localizing something feel free to contact us on IRC, at #AppliedEnergistics on Esper.net
2014-12-13 01:26:10 +01:00
Thanks to everyone helping out to improve localization of AE2.
2014-09-26 16:45:39 +02:00
## Credits
Thanks to
* Notch et al for Minecraft
* Lex et al for MinecraftForge
* AlgorithmX2 for AppliedEnergistics2
2014-12-15 14:42:09 +01:00
* all [contributors ](https://github.com/AppliedEnergistics/Applied-Energistics-2/graphs/contributors )