Files
izzy2lost.com/spaghetti.html
2025-12-06 23:19:00 -05:00

71 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SpaghettiKart ยท izzy2lost</title>
<link rel="icon" type="image/png" href="assets/logo.png">
<link rel="stylesheet" href="style.css">
</head>
<body class="crt-off">
<canvas id="starfield"></canvas>
<div class="crt-toggle">
<label>
<input type="checkbox" id="crtSwitch">
<span></span>
<span>CRT Mode</span>
</label>
</div>
<header class="navbar">
<a href="index.html" class="back">&#10094; Back</a>
</header>
<main class="project-page">
<img src="assets/spaghetti.svg" class="project-icon-large">
<h1>SpaghettiKart</h1>
<p>Retro kart racing engine.</p>
<div class="project-links">
<a href="https://github.com/izzy2lost/SpaghettiKart" target="_blank" rel="noopener noreferrer" class="btn-badge github-logo">
<img src="assets/GitHub_Lockup_Light.svg" alt="View on GitHub">
</a>
</div>
<section class="release-info">
<h2>๐ŸŽ๏ธ Spaghetti Kart</h2>
<h3>๐Ÿ“ฑ Android Release</h3>
<h4>โœจ Highlights:</h4>
<ul>
<li>โšก Optimized release build with R8 code shrinking</li>
<li>๐Ÿ“ฆ Reduced APK size and improved performance</li>
<li>๐Ÿ—‚๏ธ Enhanced file management with SAF integration</li>
</ul>
<h4>๐Ÿ› ๏ธ Changes</h4>
<ul>
<li>๐Ÿงญ Improved folder selection with SAF (Storage Access Framework)</li>
<li>๐Ÿ” Automatic mods syncing from user folder</li>
<li>๐ŸงŠ Better UI with rounded dialogs</li>
<li>๐Ÿ”ฅ Torch app integration for easy mk64.o2r creation</li>
</ul>
<h4>๐Ÿ“ฅ Installation</h4>
<ul>
<li>โฌ‡๏ธ Download the APK below</li>
<li>๐Ÿ”“ Enable "Install from unknown sources" in Android settings</li>
<li>๐Ÿ“ฒ Install on your Android device</li>
<li>๐Ÿ“ Select a folder for your game files</li>
<li>๐Ÿ’พ Add your mk64.o2r file (use Torch app to create from ROM)</li>
<li>๐ŸŽฎ Enjoy!</li>
</ul>
</section>
</main>
<script src="script.js"></script>
<script src="starfield.js"></script>
</body>
</html>