Moved images and audio into assets folder, updated paths accordingly
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
node_modules/
|
||||
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 987 KiB After Width: | Height: | Size: 987 KiB |
|
Before Width: | Height: | Size: 320 KiB After Width: | Height: | Size: 320 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>LegacyLauncher</title>
|
||||
<link rel="icon" type="image/png" href="512x512.png">
|
||||
<link rel="icon" type="image/png" href="assets/512x512.png">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
</head>
|
||||
|
|
@ -46,7 +46,7 @@
|
|||
<!-- Classic Mode: Logo + Splash (only visible in classic theme) -->
|
||||
<div class="classic-logo-area" id="classic-logo-area">
|
||||
<div style="position: relative;">
|
||||
<img src="minecraftlogo.png" class="mc-logo-img" alt="Minecraft Logo" style="margin-bottom: 0; margin-top: 0;">
|
||||
<img src="assets/minecraftlogo.png" class="mc-logo-img" alt="Minecraft Logo" style="margin-bottom: 0; margin-top: 0;">
|
||||
<div id="classic-splash-text" class="splash-text">Splash!</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
<!-- Left Side: Main Menu -->
|
||||
<div class="menu-column" style="flex: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 5;">
|
||||
<div class="relative">
|
||||
<img src="minecraftlogo.png" class="mc-logo-img" alt="Minecraft Logo">
|
||||
<img src="assets/minecraftlogo.png" class="mc-logo-img" alt="Minecraft Logo">
|
||||
<div id="splash-text" class="splash-text">Splash!</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
</select>
|
||||
</div>
|
||||
<div id="btn-check-update" class="btn-mc btn-mini nav-item" onclick="checkForUpdatesManual()" title="Check for Updates" tabindex="0">
|
||||
<img src="restart.png" alt="Update">
|
||||
<img src="assets/restart.png" alt="Update">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "legacylauncher",
|
||||
"version": "3.0.1",
|
||||
"version": "3.5.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "legacylauncher",
|
||||
"version": "3.0.1",
|
||||
"version": "3.5.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"electron-store": "^6.0.1",
|
||||
|
|
|
|||
|
|
@ -352,8 +352,8 @@ const GamepadManager = {
|
|||
|
||||
const UiSoundManager = {
|
||||
files: {
|
||||
cursor: 'JDSherbert - Ultimate UI SFX Pack - Cursor - 1.mp3',
|
||||
select: 'Click_stereo.ogg.mp3',
|
||||
cursor: 'JDSherbert - Ultimate UI SFX Pack - Cursor - 1.mp3', //doesnt exist?
|
||||
select: 'assets/Click_stereo.ogg.mp3',
|
||||
cancel: 'JDSherbert - Ultimate UI SFX Pack - Cancel - 1.mp3',
|
||||
popupOpen: 'JDSherbert - Ultimate UI SFX Pack - Popup Open - 1.mp3',
|
||||
popupClose: 'JDSherbert - Ultimate UI SFX Pack - Popup Close - 1.mp3',
|
||||
|
|
@ -990,7 +990,7 @@ async function renderGallery() {
|
|||
item.className = 'gallery-item nav-item';
|
||||
item.tabIndex = 0;
|
||||
item.innerHTML = `
|
||||
<img src="${ss.path}?t=${Date.now()}" class="gallery-thumb" alt="${ss.name}" onerror="this.src='minecraft.jpg'">
|
||||
<img src="${ss.path}?t=${Date.now()}" class="gallery-thumb" alt="${ss.name}" onerror="this.src='assets/minecraft.jpg'">
|
||||
<div class="gallery-item-actions">
|
||||
<div class="gallery-action-btn" onclick="viewScreenshot('${ss.path.replace(/\\/g, '/')}')">VIEW</div>
|
||||
<div class="gallery-action-btn delete" onclick="deleteScreenshot('${ss.name}')">DELETE</div>
|
||||
|
|
|
|||
10
style.css
|
|
@ -1,6 +1,6 @@
|
|||
@font-face {
|
||||
font-family: 'Minecraft';
|
||||
src: url('Minecraft.ttf') format('truetype');
|
||||
src: url('assets/Minecraft.ttf') format('truetype');
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -296,7 +296,7 @@ body {
|
|||
|
||||
.content-area {
|
||||
flex-grow: 1;
|
||||
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('minecraft.jpg');
|
||||
background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/minecraft.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
display: flex;
|
||||
|
|
@ -810,7 +810,7 @@ body.steamdeck-mode .sidebar {
|
|||
}
|
||||
|
||||
.controller-layout-icon-xbox {
|
||||
background-image: url('gdb-xbox-2.png');
|
||||
background-image: url('assets/gdb-xbox-2.png');
|
||||
/* action_button_189 (idle) + action_button_228 (pressed) from spritesheet JSON */
|
||||
--sprite-x: -51px;
|
||||
--sprite-y: -531px;
|
||||
|
|
@ -821,7 +821,7 @@ body.steamdeck-mode .sidebar {
|
|||
}
|
||||
|
||||
.controller-layout-icon-switch {
|
||||
background-image: url('gdb-switch-2.png');
|
||||
background-image: url('assets/gdb-switch-2.png');
|
||||
/* Switch sheet uses the same atlas layout coordinates */
|
||||
--sprite-x: -51px;
|
||||
--sprite-y: -531px;
|
||||
|
|
@ -850,7 +850,7 @@ body.steamdeck-mode .sidebar {
|
|||
color: white;
|
||||
font-size: 36px;
|
||||
z-index: 2000;
|
||||
background-image: url('minecraft.jpg');
|
||||
background-image: url('assets/minecraft.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
}
|
||||
|
|
|
|||