Skip to content

Commit 72627ff

Browse files
committed
Init
1 parent f6b8040 commit 72627ff

File tree

16 files changed

+634
-20
lines changed

16 files changed

+634
-20
lines changed

.gitignore

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
# Compiled class file
2-
*.class
1+
# eclipse
2+
bin
3+
*.launch
4+
.settings
5+
.metadata
6+
.classpath
7+
.project
38

4-
# Log file
5-
*.log
9+
# idea
10+
out
11+
*.ipr
12+
*.iws
13+
*.iml
14+
.idea
615

7-
# BlueJ files
8-
*.ctxt
16+
# gradle
17+
build
18+
.gradle
919

10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
20+
# other
21+
eclipse
22+
run
1223

13-
# Package Files #
14-
*.jar
15-
*.war
16-
*.nar
17-
*.ear
18-
*.zip
19-
*.tar.gz
20-
*.rar
21-
22-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23-
hs_err_pid*
24+
# Files from Forge MDK
25+
forge*changelog.txt

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
11
# MoreCrashInfo
2-
Display more info in crash report.
2+
Display more info in crash report.
3+
4+
Designed for Forge 1.13.2 - 1.14.3.
5+
Mod List and CoreMod List will be shown in crash report.
6+
```
7+
Forge Mods:
8+
| ID | Name | Version | Source |
9+
| ---------------- | ---------------- | ----------------- | -------------------------------------------- |
10+
| minecraft | Minecraft | 1.14.3 | Not Found |
11+
| customskinloader | CustomSkinLoader | 14.11-SNAPSHOT-89 | CustomSkinLoader_Forge-14.11-SNAPSHOT-89.jar |
12+
| morecrashinfo | MoreCrashInfo | 1.0 | MoreCrashInfo-1.0.jar |
13+
| forge | Forge | 27.0.22 | forge-1.14.3-27.0.22-universal.jar |
14+
Forge CoreMods:
15+
| ID | Status | Source |
16+
| ---------------- | ------ | --------------- |
17+
| customskinloader | Loaded | transformers.js |
18+
```

build.gradle

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
buildscript {
2+
repositories {
3+
maven { url = 'https://files.minecraftforge.net/maven' }
4+
jcenter()
5+
mavenCentral()
6+
}
7+
dependencies {
8+
classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
9+
}
10+
}
11+
apply plugin: 'net.minecraftforge.gradle'
12+
13+
version = '1.0'
14+
group = 'me.xfl03'
15+
archivesBaseName = 'MoreCrashInfo'
16+
17+
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
18+
19+
minecraft {
20+
mappings channel: 'snapshot', version: '20190621-1.14.2'
21+
runs {
22+
client {
23+
workingDirectory project.file('run')
24+
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
25+
property 'forge.logging.console.level', 'debug'
26+
27+
mods {
28+
examplemod {
29+
source sourceSets.main
30+
}
31+
}
32+
}
33+
34+
server {
35+
workingDirectory project.file('run')
36+
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
37+
property 'forge.logging.console.level', 'debug'
38+
39+
mods {
40+
examplemod {
41+
source sourceSets.main
42+
}
43+
}
44+
}
45+
46+
data {
47+
workingDirectory project.file('run')
48+
property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'
49+
property 'forge.logging.console.level', 'debug'
50+
args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/')
51+
52+
mods {
53+
examplemod {
54+
source sourceSets.main
55+
}
56+
}
57+
}
58+
}
59+
}
60+
61+
dependencies {
62+
minecraft 'net.minecraftforge:forge:1.14.3-27.0.50'
63+
}
64+
65+
jar {
66+
manifest {
67+
attributes([
68+
"Specification-Title": "morecrashinfo",
69+
"Specification-Vendor": "xfl03",
70+
"Specification-Version": "1",
71+
"Implementation-Title": project.name,
72+
"Implementation-Version": "${version}",
73+
"Implementation-Vendor" :"xfl03",
74+
"Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
75+
])
76+
}
77+
}
78+
79+
def reobfFile = file("$buildDir/reobfJar/output.jar")
80+
def reobfArtifact = artifacts.add('default', reobfFile) {
81+
type 'jar'
82+
builtBy 'reobfJar'
83+
}

gradle.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
2+
# This is required to provide enough memory for the Minecraft decompilation process.
3+
org.gradle.jvmargs=-Xmx3G
4+
org.gradle.daemon=false

gradle/wrapper/gradle-wrapper.jar

53.4 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
zipStoreBase=GRADLE_USER_HOME
4+
zipStorePath=wrapper/dists
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip

gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)