Skip to content

Commit

Permalink
Initial Commit, 1.8.9 is now publically available!
Browse files Browse the repository at this point in the history
  • Loading branch information
BluSunrize committed May 1, 2016
0 parents commit 4e54dd3
Show file tree
Hide file tree
Showing 1,239 changed files with 108,638 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
#ant stuff
/bin/
/download/
#Remove OS generated garbage
*/.DS_Store
.DS_Store
.DS_Store?
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db
#gradle stuff
/.gradle
/build/
/libs/
/run*/
/ui/
*.launch
gradle-app.setting
#IDEA files from Gradle
.idea/
/*.iml
/*.ipr
/*.iws
#Vim backups
*~
#manual version override
version.properties
#eclipse stuffs
/.classpath
/.project
/.settings/
/eclipse/
/debug/
*.lock
/.metadata/
/config/
/logs/
options.txt
/saves/
/out
/design

/world
options.txt
eula.txt
server.properties
usercache.json
usernamecache.json
whitelist.json
ops.json
banned-ips.json
banned-players.json
servers.dat
config.cfg
GregTech.cfg
GregTech.lang
minetweaker.log
BotaniaVars.dat
tailslibrary.json
.DS_Store
*.log
hs_err*
*iml
*.ipr
*.iws
/.idea
/out
*.dll
*.launch
24 changes: 24 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#### Issues
### General
- Make sure to use to the latest version of Immersive Engineering (IE for short). You can download it [here](http://minecraft.curseforge.com/projects/immersive-engineering).
- Your bug report should contain answers to these questions (If adding screenshots makes answering one of these questions easier, add them):
- What is the bug? E.g. "The game crashed with this crash report: `<Link to crashlog>`".
- What did you do to make it happen? E.g. "I threw a revolver into a crusher".
- Does it happen every time you do this? Does it happen if you do something else as well? E.g. "The game crashes with a similar crash whenever an item that can not be processed in the crusher is thrown into one.".
- Did this happen on a dedicated server (multiplayer servers), in LAN multiplayer or in singleplayer? E.g. "I first noticed this on a server, but it happens in singleplayer as well".
- What other mods were installed when the bug happened? Crashlogs always contain a modlist, so you can skip this part if you already provided one. You can generate a crash and therefore a mod list by pressing and holding F3 and C for 10 seconds, then releasing. Example: "This happened when playing version 2.4.2 of the FTB Infinity modpack" or "A list of mods can be found here: `<link to pastebin/gist/...>`" or "Only IE was installed when this happened".

### Crashlogs
If your Minecraft instance has crashed, a file will have been generated in the folder `crash-reports` of your minecraft folder. To understand what has happened, we need to know the content of that file. But please don't just put it directly in your report (that makes it hard to read), upload it to a site like [pastebin](http://pastebin.com) or [gist](http://gist.github.com) and put a link in the actuall bug report.

### Other mods
Some mods are not officially supported by IE. They will probably work pretty well, but some thing might not work/look weird. If your modpack contains one or more of these mods and you encounter a bug, try removing the unsupported mods. If the bug/crash does not happen without those mods, don't report it since fixing interactions with those mods is usually impossible or extremely hard. The following mods are not officially supported:

- **Optifine**: Optifine changes a lot of Minecraft's rendering code and it is not legally possible to check what those changes are. Another problem is that there is no `dev`/`deobf` version of Optifine which makes running Optifine in a development environment pretty much impossible.

- **Fastcraft**: same as Optifine.

- **(K)Cauldron** and similar server software: While the source code of some of these is available on GitHub or similar platforms, it would require a lot of extra work to test everything with every server software.

### Known issues
It is not unlikely that the issue you want to report has already been reported and maybe it has even been fixed for the next version of IE. Try searching for different terms related to your issue [here](https://github.com/Blusunrize/ImmersiveEngineering/issues?utf8=%E2%9C%93&q=is%3Aissue+). Example: Search terms for [#689](https://github.com/BluSunrize/ImmersiveEngineering/issues/689) (which is not actually a duplicate) could be `chemthrower`, `chemical thrower` and `flammable`.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
![Logo](https://raw.githubusercontent.com/BluSunrize/ImmersiveEngineering/master/src/main/resources/assets/immersiveengineering/logo.png)
==============

A retro-futuristic tech mod!
Wires, transformers, capacitors!
72 changes: 72 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
def mainVersion = "0.8"
def buildNumber = "23"

// For those who want the bleeding edge
buildscript {
repositories {
jcenter()
maven {
name = "forge"
url = "http://files.minecraftforge.net/maven"
}
}
dependencies {
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
}
}
apply plugin: 'net.minecraftforge.gradle.forge'

/*
// for people who want stable - not yet functional for MC 1.8.8 - we require the forgegradle 2.1 snapshot
plugins {
id "net.minecraftforge.gradle.forge" version "2.0.2"
}
*/
version = "${mainVersion}-${buildNumber}"
group= "blusunrize"
archivesBaseName = "ImmersiveEngineering"

sourceCompatibility = 1.7
targetCompatibility = 1.7

minecraft {
version = "1.8.9-11.15.1.1855"
runDir = "run"

mappings = "stable_20"
}

repositories {
maven { url "http://dvs1.progwml6.com/files/maven" }
maven { url "http://mobiusstrip.eu/maven" }
}

dependencies {
deobfCompile "mezz.jei:jei_1.8.9:2.25.+"

compile ("mcp.mobius.waila:Waila:1.6.0-B3_1.8.8:dev") {
exclude group: 'mcp.mobius.waila'
}
}

jar {
manifest {
attributes 'FMLAT': 'ImmersiveEngineering_at.cfg'
}
}


processResources
{
inputs.property "version", project.version
inputs.property "mcversion", project.minecraft.version

from(sourceSets.main.resources.srcDirs) {
include 'mcmod.info'
expand 'version':project.version, 'mcversion':project.minecraft.version
}

from(sourceSets.main.resources.srcDirs) {
exclude 'mcmod.info'
}
}
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#####Version 0.8-23 - BUILT
I lost all my changelog before this point. Whoops.
basically: Initial git push with a lot of the machines and tools implemented. But not done yet.
108 changes: 108 additions & 0 deletions contributorRevolvers.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
{
"uuid":["f34afdfb-996b-4020-b8a2-b740e2937b29"],
"tag":"fenrir", "flavour":"", "baseUpgrades":{"melee":10.0}, "renderAdditions":["bayonet_attachment","dev_bayonet","dev_scope"]
}
{
"uuid":["07c11943-628b-4671-a331-84899d08e538"],
"tag":"dev","flavour":"","baseUpgrades":{"bullets":10,"melee":10.0},"renderAdditions":["bayonet_attachment","dev_bayonet","dev_mag","dev_scope"]
}
{
"uuid":["48a16fc8-bc1f-4e72-84e9-7ec73b7d8ea1"],
"tag":"infinity","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":["bayonet_attachment","player_bayonet"]
}

{
"uuid":["e8b46b33-3e17-4b64-8d07-9af116df7d3b","58d506e2-7ee7-4774-8b22-c7a57eda488b","df0f4696-8a55-4777-b49d-6b38d6e1b501","b72d87ce-fa98-4a5a-b5a0-5db51a018d09"],
"tag":"sns","flavour":"","baseUpgrades":{"speed":0.3},"renderAdditions":["dev_scope"]
}

{
"uuid":["4f3a8d1e-33c1-44e7-bce8-e683027c7dac"],
"tag":"nerf","flavour":"","baseUpgrades":{"nerf":true,"melee":-1.0},"renderAdditions":[]
}

{
"uuid":["c2024e2a-dd76-4bc9-9ea3-b771f18f23b6"],
"tag":"earthshaker","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":["bayonet_attachment","dev_bayonet"]
}
{
"uuid":["c2024e2a-dd76-4bc9-9ea3-b771f18f23b6","f34afdfb-996b-4020-b8a2-b740e2937b29"],
"tag":"oblivion","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":["bayonet_attachment","dev_bayonet"]
}
{
"uuid":["c2024e2a-dd76-4bc9-9ea3-b771f18f23b6"],
"tag":"oathkeeper","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":["bayonet_attachment","dev_bayonet"]
}

{
"uuid":["ca5a40eb-9f48-4b40-bb94-3e0f2d18c9a7"],
"tag":"bee","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":[]
}

{
"uuid":["ca5a40eb-9f48-4b40-bb94-3e0f2d18c9a7"],
"tag":"warlord","flavour":"","baseUpgrades":{},"renderAdditions":["dev_scope"]
}

{
"uuid":["27672103-b8c7-400d-8817-49de433336dd"],
"tag":"superchief","flavour":"","baseUpgrades":{},"renderAdditions":[]
}

{
"uuid":["4f1b6e70-4a7d-45e0-a69e-3550d528cd89"],
"tag":"","flavour":"rommie","baseUpgrades":{},"renderAdditions":["dev_scope"]
}

{
"uuid":["1501b168-941a-4c8f-a729-4d317fc2e717"],
"tag":"noName","flavour":"","baseUpgrades":{},"renderAdditions":["bayonet_attachment","dev_bayonet","dev_scope"]
}

{
"uuid":["07c11943-628b-4671-a331-84899d08e538",
"58d506e2-7ee7-4774-8b22-c7a57eda488b",
"ab2ad2a5-56e4-4849-ad62-816a30bb1213",
"d3442da1-5173-4cc0-af9f-4af5cf296886",
"4e90ce5b-5852-4de5-a1bc-ddb6a899eb7c",
"c2320ea5-f43f-4cc6-9aa9-d8336b177550",
"35f5c812-8d52-4120-a7f2-92e8e7e9cb04",
"2af273f0-f7f8-4c05-a319-117e6bdc0fba",
"e880fd46-7d62-45a4-a7dc-62df14c2fdba",
"4fcd4cf9-aca9-4016-841e-27cf19b245f1"
],
"tag":"patreonHazard","flavour":"","baseUpgrades":{},"renderAdditions":["dev_scope"]
}

{
"uuid":["f34afdfb-996b-4020-b8a2-b740e2937b29",
"4f1b6e70-4a7d-45e0-a69e-3550d528cd89",
"3c9b9448-d532-4745-9aac-509f38ff81d5",
"7dd988d3-8cb6-4d38-b6dd-4b425fa271d4",
"a0040b7e-4f85-407f-b532-e398ad77bcce",
"5637d6e4-1211-45a7-ba06-719685b8c28a",
"2025b40c-ac8a-4f03-a4df-a546b618afb2",
"40766944-d2a8-49c5-8623-fed8da1e526d",
"d4f46d8e-eee2-48ef-aa91-1b32fd19cd9c",
"1c1a9096-4e85-4bc0-8833-8cd14df6a785"
],
"tag":"patreonBlu_0","flavour":"","baseUpgrades":{},"renderAdditions":["bayonet_attachment"]
}

{
"uuid":["f34afdfb-996b-4020-b8a2-b740e2937b29",
"58d506e2-7ee7-4774-8b22-c7a57eda488b",
"d5d05952-c0fa-46c3-a9ba-0ba1afe30f2b",
"167a7678-f234-4260-abb9-bd3dd4b5d5ed",
"b695c134-2fd7-4023-847a-5d991dfbe4f2",
"9900df69-11bd-4f8a-b1ce-d8f6833853b6",
"2fb3ed59-36cf-4254-a512-5e2c34986829",
"610fd2e8-afe6-4402-b5be-54dd9696d310",
"434bf509-ce83-4787-8176-32d202f8c6f6",
"50dd4e89-a6a9-45af-bfca-f6a2477bf7b4",
"ec0fa42d-252e-495f-823c-cf4c50df80b3",
"a0ccc6d6-f8da-46b4-83dd-80f3ccb74941",
"c2320ea5-f43f-4cc6-9aa9-d8336b177550"
],
"tag":"patreonBlu_1","flavour":"","baseUpgrades":{},"renderAdditions":["bayonet_attachment","dev_scope"]
}
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 6 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Mon Sep 14 12:28:28 PDT 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip
Loading

0 comments on commit 4e54dd3

Please sign in to comment.