Updated 1.7.3 (i think), and added b1.3 and 1.2.6.
Signed-off-by: PrestonT500 <preston.truong1@outlook.com>
This commit is contained in:
parent
de182c5421
commit
8490417e35
34
eagler-files/1.2.6/Main/index.html
Normal file
34
eagler-files/1.2.6/Main/index.html
Normal file
@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Alpha v1.2.6</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
||||
<script src="/js/ga4.js"></script>
|
||||
<script type = text/javascript>
|
||||
window.addEventListener("load", function() {
|
||||
window.config = {
|
||||
gameContainer: "game", assetsLocation: "resources.mc", playerUsername: null, serverIP: null, joinServerOnLaunch: false
|
||||
};
|
||||
main();
|
||||
});
|
||||
|
||||
document.esc = false;
|
||||
document.addEventListener('keydown', function(e) {
|
||||
if (e.key === 'Escape') {
|
||||
e.preventDefault();
|
||||
document.esc = true;
|
||||
}
|
||||
});
|
||||
|
||||
document.addEventListener('keyup', function(e) {
|
||||
if (e.key === 'Escape') {
|
||||
e.preventDefault();
|
||||
document.esc = false;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body style="margin:0px;width:100vw;height:100vh;" id="game">
|
||||
</body>
|
||||
</html>
|
9084
eagler-files/1.2.6/Main/js/app.js
Normal file
9084
eagler-files/1.2.6/Main/js/app.js
Normal file
File diff suppressed because it is too large
Load Diff
1
eagler-files/1.2.6/Main/js/app.js.map
Normal file
1
eagler-files/1.2.6/Main/js/app.js.map
Normal file
File diff suppressed because one or more lines are too long
BIN
eagler-files/1.2.6/Main/resources.mc
Normal file
BIN
eagler-files/1.2.6/Main/resources.mc
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
19
eagler-files/1.7.3/Main/index.html
Normal file
19
eagler-files/1.7.3/Main/index.html
Normal file
@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Beta 1.7.3</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
||||
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
||||
<script src="/js/ga4.js"></script>
|
||||
<script type = text/javascript>
|
||||
window.addEventListener("load", function() {
|
||||
window.config = {
|
||||
gameContainer: "game", assetsLocation: "resources.mc"
|
||||
};
|
||||
main();
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body style="margin:0px;width:100vw;height:100vh;" id="game">
|
||||
</body>
|
||||
</html>
|
12584
eagler-files/1.7.3/Main/js/app.js
Normal file
12584
eagler-files/1.7.3/Main/js/app.js
Normal file
File diff suppressed because it is too large
Load Diff
1
eagler-files/1.7.3/Main/js/app.js.map
Normal file
1
eagler-files/1.7.3/Main/js/app.js.map
Normal file
File diff suppressed because one or more lines are too long
BIN
eagler-files/1.7.3/Main/resources.mc
Normal file
BIN
eagler-files/1.7.3/Main/resources.mc
Normal file
Binary file not shown.
BIN
eagler-files/b1.3/Main/assets.epk
Normal file
BIN
eagler-files/b1.3/Main/assets.epk
Normal file
Binary file not shown.
10189
eagler-files/b1.3/Main/classes.js
Normal file
10189
eagler-files/b1.3/Main/classes.js
Normal file
File diff suppressed because it is too large
Load Diff
1
eagler-files/b1.3/Main/classes.js.map
Normal file
1
eagler-files/b1.3/Main/classes.js.map
Normal file
File diff suppressed because one or more lines are too long
38
eagler-files/b1.3/Main/index.html
Normal file
38
eagler-files/b1.3/Main/index.html
Normal file
@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Eaglercraft Singleplayer</title>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content="A version of Eaglercraft with both singleplayer and multiplayer. Based on Minecraft Beta 1.3, you can play singleplayer and multiplayer in any web browser and your worlds will be saved to your browser's local storage. Works on all chromebooks, you can export and import your worlds to make backups or move worlds to a different computer." />
|
||||
<meta name="keywords" content="minecraft, applet, singleplayer, chromebook, lax1dude, games, eaglercraft, ealgercraft singleplayer, eagler" />
|
||||
<meta name="author" content="LAX1DUDE" />
|
||||
<meta property="og:title" content="Eaglercraft Singleplayer" />
|
||||
<meta property="og:locale" content="en-US" />
|
||||
<script src="/js/ga4.js"></script>
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="https://media.discordapp.net/attachments/378764518081429506/982903386380853258/screenshot_singleplayer_small.png" />
|
||||
<meta property="og:description" content="A version of Eaglercraft with both singleplayer and multiplayer. Based on Minecraft Beta 1.3, you can play singleplayer and multiplayer in any web browser and your worlds will be saved to your browser's local storage. Works on all chromebooks, you can export and import your worlds to make backups or move worlds to a different computer." />
|
||||
<!-- Change this: <meta property="og:url" content="https://g.eags.us/eaglercraft/" /> -->
|
||||
<script type="text/javascript" src="classes.js"></script>
|
||||
<script type="text/javascript">
|
||||
if(document.location.href.startsWith("file:")) {
|
||||
alert("You're not supposed to 'open' this file in your browser. Please upload this folder to your HTTP(s) server and access it via the internet. This is not a bug, please read the documentation");
|
||||
}else {
|
||||
window.addEventListener("load", function(){
|
||||
window.minecraftOpts = ["game_frame","assets.epk"];
|
||||
(function(){
|
||||
var q = window.location.search;
|
||||
if(typeof q === 'string' && q.startsWith("?")) {
|
||||
q = new URLSearchParams(q);
|
||||
var s = q.get("server");
|
||||
if(s) window.minecraftOpts.push(s);
|
||||
}
|
||||
})();
|
||||
main();
|
||||
});}
|
||||
</script>
|
||||
</head>
|
||||
<body style="margin:0px;width:100vw;height:100vh;" id="game_frame">
|
||||
</body>
|
||||
</html>
|
@ -137,12 +137,18 @@
|
||||
<div id="desktopVersionOther">
|
||||
<p class="version-text">Other Versions</p>
|
||||
<div class="ContainerOther">
|
||||
<a class="version-link filter-button" href="./eagler-files/1.7.3/Beta_1.7.3_Offline_Download.html">
|
||||
<a class="version-link filter-button" href="./eagler-files/1.7.3/Main/index.html">
|
||||
<button>1.7.3 Beta Client</button>
|
||||
</a>
|
||||
<a class="version-link filter-button" href="./eagler-files/1.6.4/Main/index.html">
|
||||
<button>1.6.4 Client</button>
|
||||
</a>
|
||||
<a class="version-link filter-button" href="./eagler-files/1.2.2/Main/index.html">
|
||||
<button>1.2.6 Client</button>
|
||||
</a>
|
||||
<a class="version-link filter-button" href="./eagler-files/b1.3/Main/index.html">
|
||||
<button>b1.3 Client</button>
|
||||
</a>
|
||||
<a class="version-link filter-button" href="./eagler-files/infdev/Infdev-20100630-1.html">
|
||||
<button>Infdev Client</button>
|
||||
</a>
|
||||
|
Loading…
x
Reference in New Issue
Block a user