Skip to content

Commit d78ba50

Browse files
committed
Add full folder with all contents
1 parent 32acad7 commit d78ba50

17,554 files changed

Lines changed: 1211301 additions & 0 deletions

File tree

Some content is hidden

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

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
5+
*.bat text eol=crlf
6+
*.sh text eol=lf
7+
gradlew text eol=lf

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.gradle
2+
.settings
3+
.classpath
4+
.project
5+
build
6+
bin
7+
proxyServer/bin
8+
proxyServer/rundir
9+
desktopRuntime/_eagstorage*
10+
desktopRuntime/eclipseProject/bin*
11+
desktopRuntime/hs_err_*
12+
desktopRuntime/crash-reports/*
13+
desktopRuntime/options.txt
14+
desktopRuntime/_eagstorage*
15+
desktopRuntime/filesystem/*
16+
desktopRuntime/downloads/*
17+
desktopRuntime/screenshots/*

CompileEPK.bat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@echo off
2+
title epkcompiler
3+
echo compiling, please wait...
4+
java -jar "desktopRuntime/CompileEPK.jar" "desktopRuntime/resources" "javascript/assets.epk"
5+
echo finished compiling epk
6+
pause

CompileEPK.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
java -jar "desktopRuntime/CompileEPK.jar" "desktopRuntime/resources" "javascript/assets.epk"

CompileJS.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@echo off
2+
title gradlew generateJavascript
3+
call gradlew generateJavascript
4+
pause

CompileJS.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
chmod +x gradlew
3+
./gradlew --rerun-tasks -- generateJavascript

EAGLERCRAFTX_README.md

Lines changed: 263 additions & 0 deletions
Large diffs are not rendered by default.

MakeOfflineDownload.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@echo off
2+
title MakeOfflineDownload
3+
java -cp "desktopRuntime/MakeOfflineDownload.jar;desktopRuntime/CompileEPK.jar" net.lax1dude.eaglercraft.v1_8.buildtools.workspace.MakeOfflineDownload "javascript/OfflineDownloadTemplate.txt" "javascript/classes.js" "javascript/assets.epk" "javascript/EaglercraftX_1.8_Offline_en_US.html" "javascript/EaglercraftX_1.8_Offline_International.html" "javascript/lang"
4+
pause

MakeOfflineDownload.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
java -cp "desktopRuntime/MakeOfflineDownload.jar:desktopRuntime/CompileEPK.jar" net.lax1dude.eaglercraft.v1_8.buildtools.workspace.MakeOfflineDownload "javascript/OfflineDownloadTemplate.txt" "javascript/classes.js" "javascript/assets.epk" "javascript/EaglercraftX_1.8_Offline_en_US.html" "javascript/EaglercraftX_1.8_Offline_International.html" "javascript/lang"

MakeSignedClient.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@echo off
2+
title MakeSignedClient
3+
java -cp "desktopRuntime/MakeOfflineDownload.jar;desktopRuntime/CompileEPK.jar" net.lax1dude.eaglercraft.v1_8.buildtools.workspace.MakeSignedClient "javascript/SignedBundleTemplate.txt" "javascript/classes.js" "javascript/assets.epk" "javascript/lang" "javascript/SignedClientTemplate.txt" "javascript/UpdateDownloadSources.txt" "javascript/EaglercraftX_1.8_Offline_Signed_Client.html"
4+
pause

0 commit comments

Comments
 (0)