diff options
| author | 2026-01-13 14:31:37 +0800 | |
|---|---|---|
| committer | 2026-01-13 14:31:37 +0800 | |
| commit | f878efe456e8f5c557f2cde9d71f120f3e0b38cd (patch) | |
| tree | d6e54b7dc262502f2ef9dc011fcff6ad2aba2d54 /src-tauri/icons | |
| parent | 225f87bf713492daef83a85e9e2a0bfdb0f9d23f (diff) | |
| download | DropOut-f878efe456e8f5c557f2cde9d71f120f3e0b38cd.tar.gz DropOut-f878efe456e8f5c557f2cde9d71f120f3e0b38cd.zip | |
feat: add Minecraft DropOut launcher with version fetching and basic UI
- Implemented version manifest fetching from Mojang API.
- Created launcher configuration and main launcher logic.
- Added SVG and PNG icons for the application.
- Developed a simple HTML/CSS interface for the launcher.
- Integrated Tauri commands for backend communication.
- Added utility functions for file operations and config parsing.
Diffstat (limited to 'src-tauri/icons')
| -rw-r--r-- | src-tauri/icons/128x128.png | bin | 0 -> 9930 bytes | |||
| -rw-r--r-- | src-tauri/icons/128x128@2x.png | bin | 0 -> 9930 bytes | |||
| -rw-r--r-- | src-tauri/icons/32x32.png | bin | 0 -> 9930 bytes | |||
| -rw-r--r-- | src-tauri/icons/icon.icns | bin | 0 -> 9930 bytes | |||
| -rw-r--r-- | src-tauri/icons/icon.ico | bin | 0 -> 9930 bytes | |||
| -rw-r--r-- | src-tauri/icons/icon.png | bin | 0 -> 9930 bytes | |||
| -rw-r--r-- | src-tauri/icons/icon.svg | 5 |
7 files changed, 5 insertions, 0 deletions
diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png Binary files differnew file mode 100644 index 0000000..1fca9cf --- /dev/null +++ b/src-tauri/icons/128x128.png diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png Binary files differnew file mode 100644 index 0000000..1fca9cf --- /dev/null +++ b/src-tauri/icons/128x128@2x.png diff --git a/src-tauri/icons/32x32.png b/src-tauri/icons/32x32.png Binary files differnew file mode 100644 index 0000000..1fca9cf --- /dev/null +++ b/src-tauri/icons/32x32.png diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns Binary files differnew file mode 100644 index 0000000..1fca9cf --- /dev/null +++ b/src-tauri/icons/icon.icns diff --git a/src-tauri/icons/icon.ico b/src-tauri/icons/icon.ico Binary files differnew file mode 100644 index 0000000..1fca9cf --- /dev/null +++ b/src-tauri/icons/icon.ico diff --git a/src-tauri/icons/icon.png b/src-tauri/icons/icon.png Binary files differnew file mode 100644 index 0000000..1fca9cf --- /dev/null +++ b/src-tauri/icons/icon.png diff --git a/src-tauri/icons/icon.svg b/src-tauri/icons/icon.svg new file mode 100644 index 0000000..2c4de10 --- /dev/null +++ b/src-tauri/icons/icon.svg @@ -0,0 +1,5 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"> + <rect width="100%" height="100%" fill="#23272a"/> + <path d="M50 400 L256 400 L462 100" stroke="#43b581" stroke-width="20" fill="none" stroke-linecap="round" stroke-linejoin="round"/> + <circle cx="256" cy="400" r="10" fill="#7289da"/> +</svg>
\ No newline at end of file |