Skip to content

Commit 2e4a3c4

Browse files
committed
Fix the annoying dependency crashes
Also massively improved the Gradle script, bumped up the version, and added a release task. Signed-off-by: Mahtaran <mahtaran@amuzil.com>
1 parent 61fd653 commit 2e4a3c4

22 files changed

Lines changed: 482 additions & 196 deletions

.gitignore

Lines changed: 18 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,25 @@
1-
.gradle/
2-
.settings/
3-
.metadata/
4-
bin/
5-
build/
6-
run/
7-
eclipse/
8-
1+
# eclipse
2+
bin
3+
*.launch
4+
.settings
5+
.metadata
96
.classpath
107
.project
11-
1.10_Client.launch
12-
1.10_Server.launch
13-
1.10_Client 2.launch
14-
sonarqube.sh
15-
16-
GoreCore_ClientUUIDCache.txt
17-
/config
18-
logs/
19-
options.txt
20-
saves/
21-
usercache.json
22-
usernamecache.json
23-
screenshots/
24-
25-
crash-reports/
26-
resourcepacks/
27-
28-
docs/.sass-cache
29-
docs/styles.css.map
30-
Client.launch
31-
Client 2.launch
32-
Server.launch
33-
34-
**/.sass-cache
35-
**/.sass-cache/*
36-
.idea/
37-
code.iml
38-
out/
398

9+
# idea
10+
out
11+
classes
4012
*.ipr
4113
*.iws
4214
*.iml
15+
.idea
16+
17+
# gradle
18+
build
19+
.gradle
4320

44-
**/Thumbs.db
21+
# other
22+
eclipse
23+
run
24+
ignore*
25+
secrets.properties

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@ adds content from [*Avatar: The Last Airbender*](https://en.wikipedia.org/wiki/A
88
The mod already has all four major types of bending; many unique, multipurpose Abilities; and mobs
99
and animals from the Avatar world. More information is available at the [wiki](http://projectkorra.wikia.com/wiki/Av2).
1010

11-
Important: Looking for developer
12-
--------------------------------
13-
14-
We are currently looking for a new lead developer to carry on the mod. More information is available here:
15-
16-
[Looking for lead developer to take over Avatar Mod 2](http://www.minecraftforum.net/forums/mapping-and-modding-java-edition/minecraft-mods/modification-development/2876693-looking-for-lead-developer-to-take-over-avatar-mod)
17-
18-
Thank you! :)
19-
2011
End Users
2112
---------
2213

build unix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
2-
./gradlew clean build
2+
./gradlew cleanBuild
33
read -n 1 -s -r -p "Press any key to continue"

build windows.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
call gradlew clean build
2+
call gradlew cleanBuild
33
pause

0 commit comments

Comments
 (0)