Skip to content

Commit 4e54dd3

Browse files
committed
Initial Commit, 1.8.9 is now publically available!
0 parents  commit 4e54dd3

File tree

1,239 files changed

+108638
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,239 files changed

+108638
-0
lines changed

.gitignore

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
#ant stuff
2+
/bin/
3+
/download/
4+
#Remove OS generated garbage
5+
*/.DS_Store
6+
.DS_Store
7+
.DS_Store?
8+
.Spotlight-V100
9+
.Trashes
10+
Icon?
11+
ehthumbs.db
12+
Thumbs.db
13+
#gradle stuff
14+
/.gradle
15+
/build/
16+
/libs/
17+
/run*/
18+
/ui/
19+
*.launch
20+
gradle-app.setting
21+
#IDEA files from Gradle
22+
.idea/
23+
/*.iml
24+
/*.ipr
25+
/*.iws
26+
#Vim backups
27+
*~
28+
#manual version override
29+
version.properties
30+
#eclipse stuffs
31+
/.classpath
32+
/.project
33+
/.settings/
34+
/eclipse/
35+
/debug/
36+
*.lock
37+
/.metadata/
38+
/config/
39+
/logs/
40+
options.txt
41+
/saves/
42+
/out
43+
/design
44+
45+
/world
46+
options.txt
47+
eula.txt
48+
server.properties
49+
usercache.json
50+
usernamecache.json
51+
whitelist.json
52+
ops.json
53+
banned-ips.json
54+
banned-players.json
55+
servers.dat
56+
config.cfg
57+
GregTech.cfg
58+
GregTech.lang
59+
minetweaker.log
60+
BotaniaVars.dat
61+
tailslibrary.json
62+
.DS_Store
63+
*.log
64+
hs_err*
65+
*iml
66+
*.ipr
67+
*.iws
68+
/.idea
69+
/out
70+
*.dll
71+
*.launch

CONTRIBUTING.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#### Issues
2+
### General
3+
- 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).
4+
- Your bug report should contain answers to these questions (If adding screenshots makes answering one of these questions easier, add them):
5+
- What is the bug? E.g. "The game crashed with this crash report: `<Link to crashlog>`".
6+
- What did you do to make it happen? E.g. "I threw a revolver into a crusher".
7+
- 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.".
8+
- 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".
9+
- 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".
10+
11+
### Crashlogs
12+
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.
13+
14+
### Other mods
15+
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:
16+
17+
- **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.
18+
19+
- **Fastcraft**: same as Optifine.
20+
21+
- **(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.
22+
23+
### Known issues
24+
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`.

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
![Logo](https://raw.githubusercontent.com/BluSunrize/ImmersiveEngineering/master/src/main/resources/assets/immersiveengineering/logo.png)
2+
==============
3+
4+
A retro-futuristic tech mod!
5+
Wires, transformers, capacitors!

build.gradle

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
def mainVersion = "0.8"
2+
def buildNumber = "23"
3+
4+
// For those who want the bleeding edge
5+
buildscript {
6+
repositories {
7+
jcenter()
8+
maven {
9+
name = "forge"
10+
url = "http://files.minecraftforge.net/maven"
11+
}
12+
}
13+
dependencies {
14+
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
15+
}
16+
}
17+
apply plugin: 'net.minecraftforge.gradle.forge'
18+
19+
/*
20+
// for people who want stable - not yet functional for MC 1.8.8 - we require the forgegradle 2.1 snapshot
21+
plugins {
22+
id "net.minecraftforge.gradle.forge" version "2.0.2"
23+
}
24+
*/
25+
version = "${mainVersion}-${buildNumber}"
26+
group= "blusunrize"
27+
archivesBaseName = "ImmersiveEngineering"
28+
29+
sourceCompatibility = 1.7
30+
targetCompatibility = 1.7
31+
32+
minecraft {
33+
version = "1.8.9-11.15.1.1855"
34+
runDir = "run"
35+
36+
mappings = "stable_20"
37+
}
38+
39+
repositories {
40+
maven { url "http://dvs1.progwml6.com/files/maven" }
41+
maven { url "http://mobiusstrip.eu/maven" }
42+
}
43+
44+
dependencies {
45+
deobfCompile "mezz.jei:jei_1.8.9:2.25.+"
46+
47+
compile ("mcp.mobius.waila:Waila:1.6.0-B3_1.8.8:dev") {
48+
exclude group: 'mcp.mobius.waila'
49+
}
50+
}
51+
52+
jar {
53+
manifest {
54+
attributes 'FMLAT': 'ImmersiveEngineering_at.cfg'
55+
}
56+
}
57+
58+
59+
processResources
60+
{
61+
inputs.property "version", project.version
62+
inputs.property "mcversion", project.minecraft.version
63+
64+
from(sourceSets.main.resources.srcDirs) {
65+
include 'mcmod.info'
66+
expand 'version':project.version, 'mcversion':project.minecraft.version
67+
}
68+
69+
from(sourceSets.main.resources.srcDirs) {
70+
exclude 'mcmod.info'
71+
}
72+
}

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#####Version 0.8-23 - BUILT
2+
I lost all my changelog before this point. Whoops.
3+
basically: Initial git push with a lot of the machines and tools implemented. But not done yet.

contributorRevolvers.json

+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
{
2+
"uuid":["f34afdfb-996b-4020-b8a2-b740e2937b29"],
3+
"tag":"fenrir", "flavour":"", "baseUpgrades":{"melee":10.0}, "renderAdditions":["bayonet_attachment","dev_bayonet","dev_scope"]
4+
}
5+
{
6+
"uuid":["07c11943-628b-4671-a331-84899d08e538"],
7+
"tag":"dev","flavour":"","baseUpgrades":{"bullets":10,"melee":10.0},"renderAdditions":["bayonet_attachment","dev_bayonet","dev_mag","dev_scope"]
8+
}
9+
{
10+
"uuid":["48a16fc8-bc1f-4e72-84e9-7ec73b7d8ea1"],
11+
"tag":"infinity","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":["bayonet_attachment","player_bayonet"]
12+
}
13+
14+
{
15+
"uuid":["e8b46b33-3e17-4b64-8d07-9af116df7d3b","58d506e2-7ee7-4774-8b22-c7a57eda488b","df0f4696-8a55-4777-b49d-6b38d6e1b501","b72d87ce-fa98-4a5a-b5a0-5db51a018d09"],
16+
"tag":"sns","flavour":"","baseUpgrades":{"speed":0.3},"renderAdditions":["dev_scope"]
17+
}
18+
19+
{
20+
"uuid":["4f3a8d1e-33c1-44e7-bce8-e683027c7dac"],
21+
"tag":"nerf","flavour":"","baseUpgrades":{"nerf":true,"melee":-1.0},"renderAdditions":[]
22+
}
23+
24+
{
25+
"uuid":["c2024e2a-dd76-4bc9-9ea3-b771f18f23b6"],
26+
"tag":"earthshaker","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":["bayonet_attachment","dev_bayonet"]
27+
}
28+
{
29+
"uuid":["c2024e2a-dd76-4bc9-9ea3-b771f18f23b6","f34afdfb-996b-4020-b8a2-b740e2937b29"],
30+
"tag":"oblivion","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":["bayonet_attachment","dev_bayonet"]
31+
}
32+
{
33+
"uuid":["c2024e2a-dd76-4bc9-9ea3-b771f18f23b6"],
34+
"tag":"oathkeeper","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":["bayonet_attachment","dev_bayonet"]
35+
}
36+
37+
{
38+
"uuid":["ca5a40eb-9f48-4b40-bb94-3e0f2d18c9a7"],
39+
"tag":"bee","flavour":"","baseUpgrades":{"melee":10.0},"renderAdditions":[]
40+
}
41+
42+
{
43+
"uuid":["ca5a40eb-9f48-4b40-bb94-3e0f2d18c9a7"],
44+
"tag":"warlord","flavour":"","baseUpgrades":{},"renderAdditions":["dev_scope"]
45+
}
46+
47+
{
48+
"uuid":["27672103-b8c7-400d-8817-49de433336dd"],
49+
"tag":"superchief","flavour":"","baseUpgrades":{},"renderAdditions":[]
50+
}
51+
52+
{
53+
"uuid":["4f1b6e70-4a7d-45e0-a69e-3550d528cd89"],
54+
"tag":"","flavour":"rommie","baseUpgrades":{},"renderAdditions":["dev_scope"]
55+
}
56+
57+
{
58+
"uuid":["1501b168-941a-4c8f-a729-4d317fc2e717"],
59+
"tag":"noName","flavour":"","baseUpgrades":{},"renderAdditions":["bayonet_attachment","dev_bayonet","dev_scope"]
60+
}
61+
62+
{
63+
"uuid":["07c11943-628b-4671-a331-84899d08e538",
64+
"58d506e2-7ee7-4774-8b22-c7a57eda488b",
65+
"ab2ad2a5-56e4-4849-ad62-816a30bb1213",
66+
"d3442da1-5173-4cc0-af9f-4af5cf296886",
67+
"4e90ce5b-5852-4de5-a1bc-ddb6a899eb7c",
68+
"c2320ea5-f43f-4cc6-9aa9-d8336b177550",
69+
"35f5c812-8d52-4120-a7f2-92e8e7e9cb04",
70+
"2af273f0-f7f8-4c05-a319-117e6bdc0fba",
71+
"e880fd46-7d62-45a4-a7dc-62df14c2fdba",
72+
"4fcd4cf9-aca9-4016-841e-27cf19b245f1"
73+
],
74+
"tag":"patreonHazard","flavour":"","baseUpgrades":{},"renderAdditions":["dev_scope"]
75+
}
76+
77+
{
78+
"uuid":["f34afdfb-996b-4020-b8a2-b740e2937b29",
79+
"4f1b6e70-4a7d-45e0-a69e-3550d528cd89",
80+
"3c9b9448-d532-4745-9aac-509f38ff81d5",
81+
"7dd988d3-8cb6-4d38-b6dd-4b425fa271d4",
82+
"a0040b7e-4f85-407f-b532-e398ad77bcce",
83+
"5637d6e4-1211-45a7-ba06-719685b8c28a",
84+
"2025b40c-ac8a-4f03-a4df-a546b618afb2",
85+
"40766944-d2a8-49c5-8623-fed8da1e526d",
86+
"d4f46d8e-eee2-48ef-aa91-1b32fd19cd9c",
87+
"1c1a9096-4e85-4bc0-8833-8cd14df6a785"
88+
],
89+
"tag":"patreonBlu_0","flavour":"","baseUpgrades":{},"renderAdditions":["bayonet_attachment"]
90+
}
91+
92+
{
93+
"uuid":["f34afdfb-996b-4020-b8a2-b740e2937b29",
94+
"58d506e2-7ee7-4774-8b22-c7a57eda488b",
95+
"d5d05952-c0fa-46c3-a9ba-0ba1afe30f2b",
96+
"167a7678-f234-4260-abb9-bd3dd4b5d5ed",
97+
"b695c134-2fd7-4023-847a-5d991dfbe4f2",
98+
"9900df69-11bd-4f8a-b1ce-d8f6833853b6",
99+
"2fb3ed59-36cf-4254-a512-5e2c34986829",
100+
"610fd2e8-afe6-4402-b5be-54dd9696d310",
101+
"434bf509-ce83-4787-8176-32d202f8c6f6",
102+
"50dd4e89-a6a9-45af-bfca-f6a2477bf7b4",
103+
"ec0fa42d-252e-495f-823c-cf4c50df80b3",
104+
"a0ccc6d6-f8da-46b4-83dd-80f3ccb74941",
105+
"c2320ea5-f43f-4cc6-9aa9-d8336b177550"
106+
],
107+
"tag":"patreonBlu_1","flavour":"","baseUpgrades":{},"renderAdditions":["bayonet_attachment","dev_scope"]
108+
}

gradle/wrapper/gradle-wrapper.jar

51 KB
Binary file not shown.
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Mon Sep 14 12:28:28 PDT 2015
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.7-bin.zip

0 commit comments

Comments
 (0)