AppliedEnergistics / Applied-Energistics-2

A Minecraft Mod about Matter, Energy and using them to conquer the world..

Home Page:https://appliedenergistics.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build master Latest Release Latest PreRelease

Applied Energistics 2

Table of Contents

About

A Mod about Matter, Energy and using them to conquer the world..

Contacts

License

  • Applied Energistics 2 API
    • (c) 2013 - 2020 AlgorithmX2 et al
    • License
  • Applied Energistics 2
    • (c) 2013 - 2020 AlgorithmX2 et al
    • License
  • Textures and Models
  • Text and Translations
    • License
  • Additional Sound Licenses

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.

Issues

Applied Energistics 2 crashing, have a suggestion, found a bug? Create an issue now!

  1. Make sure your issue has not already been answered or fixed and you are using the latest version. Also think about whether your issue is a valid one before submitting it.
    • If it is already possible with vanilla and AE2 itself, the suggestion will be considered invalid.
    • Asking for a smaller version, more compact version, or more efficient version of something will also be considered invalid.
  2. Go to the issues page and click new issue
  3. If applicable, use one of the provided templates. It will also contain further details about required or useful information to add.
  4. Click Submit New Issue, and wait for feedback!

Providing as many details as possible does help us to find and resolve the issue faster and also you getting a fixed version as fast as possible.

Please note that we might close any issue not matching these requirements.

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.

Maven

Our authoritative Maven repository is Github Packages, which you can also use in your builds. Use of Github Packages requires special setup to authenticate with your personal access token.

AE2 is also available without authentication from Modmaven. You can use the following snippet as example on how to add a repository to your gradle build file.

repositories {
    maven {
        name "Modmaven"
        url "https://modmaven.dev/"
        // For Gradle 5.1 and above, limit it to just AE2
        content {
            includeGroup 'appeng'
        }
    }
}

When compiling against the AE2 API you can use gradle dependencies, just add

dependencies {
    modCompileOnly "appeng:appliedenergistics2-fabric:VERSION:api"
}

or add the modCompileOnly line to your existing dependencies task to your build.gradle.

Replace VERSION with the desired one. With 1.15+ we switched to using semver. It is highly recommended following its specification and further considering an upper bound for the dependency version. A change of the MAJOR version will be an API break and can lead to various crashes. Better to inform a player about the addon not supporting the new version until it could be tested or updated.

An example string would be appeng:appliedenergistics2-fabric:12.9.5:api for the API only or appeng:appliedenergistics2-fabric:12.9.5 for the whole mod.

Building

  1. Clone this repository via
  • SSH git clone git@github.com:AppliedEnergistics/Applied-Energistics-2.git or
  • HTTPS git clone https://github.com/AppliedEnergistics/Applied-Energistics-2.git
  1. Build using the gradlew runData build command. Jar will be in build/libs
  2. For core developer: Setup IDE
  • IntelliJ: Import as gradle project
  • Eclipse: Import as gradle project or execute gradle task eclipse and potentially genEclipseRuns

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.

The guidelines for contributing contain more detailed information about topics like the used code style and should also be considered.

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.
    • 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

  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
  1. Change code base
  2. Run gradlew spotlessApply to apply automatic code formatting
  3. Add changes to git git add -A
  4. Commit changes to your clone git commit -m "<summary of made changes>"
  5. Push to your fork git push
  6. Create a Pull-Request on GitHub
  7. Wait for review
  8. Squash commits for cleaner history

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.

Applied Energistics 2 Localization

English Text

en_US is included in this repository, fixes to typos are welcome.

Encoding

Files must be encoded as UTF-8.

New or updated Translations

We use Crowdin crowd-sourced translations for our localization. You can participate in localizing Applied Energistics 2 on our Crowdin Page.

Please keep in mind that we use String format to pass additional data to the text for displaying. Therefore you should preserve parts like %s or %1$d%%, which allows us to replace them with the correct values while you still have the option to change their order for match the rules of grammar. This might not be possible for some languages. Should this be the case, please contact us.

Final Note

If you have have issues localizing something feel free to contact us on IRC, at #AppliedEnergistics on Esper.net

Thanks to everyone helping out to improve localization of AE2.

Credits

Thanks to

  • Notch et al for Minecraft
  • Lex et al for MinecraftForge
  • AlgorithmX2 for AppliedEnergistics2
  • Ridanisaurus Rid for the new 2020 textures
  • all contributors

About

A Minecraft Mod about Matter, Energy and using them to conquer the world..

https://appliedenergistics.github.io/

License:Other


Languages

Language:Java 99.9%Language:HTML 0.1%Language:JavaScript 0.0%