mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 08:34:48 +00:00
53 lines
2.8 KiB
HTML
53 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>MineXLauncher</title>
|
|
<link rel="icon" type="image/webp" href="/resources/images/icons/favicon.webp" />
|
|
<link rel="stylesheet" href="/resources/styles/index.css" />
|
|
<link rel="canonical" href="https://launcher.orionzleon.me/" />
|
|
<meta name="theme-color" content="#333" />
|
|
<meta name="description" content="Custom launcher for Eaglercraft, which contains many versions and clients." />
|
|
<meta
|
|
name="keywords"
|
|
content="minex, minexlauncher, launcher, custom launcher, modded minecraft, modded, minecraft, minecraft eaglercraft, eaglercraft, eaglercraftx, eaglercraftl, eagler, eaglerx, eaglerl, download, unblocked, minecraft versions, 1.2.5, 1.5.2, 1.5, 1.8, 1.8.8, 1.9, 1.9.4, 1.12, 1.3, 1.7.3, b1.3, b1.7.3, alpha, alpha 1.2.6, beta, beta 1.3, beta 1.7.3, a1.2.6, resent, shadow, client, resent client, shadow client, cracked, crack, cracked minecraft, hack, hacked, hacks, hacked client, hack client, free minecraft, pvp, minecraft download, offline, online, web, host, hosted, servers, multiplayer, custom launcher, skins, packs, textures, resource, mods, mod, mod download, pack download, texture download, texture pack download, fps, high fps, better fps, high fps, speed, fast, faster, lag, laggy, no lag, eaglerforge, forge, javascript, hack launcher, exploits, cheats, grief, griefing, mine"
|
|
/>
|
|
<meta property="og:title" content="MineXLauncher" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:image" content="/resources/images/icons/favicon.webp" />
|
|
<meta property="og:url" content="https://launcher.orionzleon.me/" />
|
|
<meta property="og:description" content="Custom launcher for Eaglercraft, which contains many versions and clients." />
|
|
<meta property="og:locale" content="en-US" />
|
|
<script src="/resources/scripts/google-tag.js"></script>
|
|
<script src="/sw-register.js"></script>
|
|
<script src="/resources/scripts/main.js"></script>
|
|
<script>
|
|
const iframe = document.createElement('iframe');
|
|
const lastPage = storage.session.get('lastPage');
|
|
|
|
if (storage.local.get('lastVersion') === null) {
|
|
iframe.src = '/welcome.html';
|
|
alert(`MineXLauncher has been updated to v1.4!
|
|
|
|
Changes in v1.4:
|
|
- Added welcome and setup screen
|
|
- Show changelog when MineXLauncher is updated
|
|
- Added themes and backgrounds
|
|
- Settings now update automatically without saving them
|
|
- Username rules have been updated to match Minecraft
|
|
- Added Starlike Client`);
|
|
} else if (lastPage !== null) {
|
|
iframe.src = lastPage;
|
|
} else if (detect.mobile()) {
|
|
iframe.src = '/mobile/';
|
|
} else {
|
|
iframe.src = '/home/game/';
|
|
}
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
document.body.appendChild(iframe);
|
|
});
|
|
</script>
|
|
</head>
|
|
</html>
|