https://github.com/dest4590/collapseloader
GUI utility for launching minecraft clients
https://github.com/dest4590/collapseloader
client dlc hacked-client loader minecraft
Last synced: about 1 month ago
JSON representation
GUI utility for launching minecraft clients
- Host: GitHub
- URL: https://github.com/dest4590/collapseloader
- Owner: dest4590
- License: gpl-3.0
- Created: 2024-04-01T16:38:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-21T15:15:05.000Z (4 months ago)
- Last Synced: 2026-02-21T16:59:59.817Z (4 months ago)
- Topics: client, dlc, hacked-client, loader, minecraft
- Language: Vue
- Homepage: https://collapseloader.org
- Size: 8.1 MB
- Stars: 55
- Watchers: 5
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY-RU.md
Awesome Lists containing this project
README
CollapseLoader
[](https://github.com/dest4590/CollapseLoader/actions)
[](https://github.com/dest4590/CollapseLoader/releases/latest)
[](https://github.com/dest4590/CollapseLoader/releases)
**A secure, open-source launcher for verified Minecraft cheat clients.**
[Telegram](https://t.me/CollapseLoader) • [Discord](https://discord.gg/FyKtnFqs6J) • [Releases](https://github.com/dest4590/CollapseLoader/releases)
---
## 📑 Table of Contents
- [About CollapseLoader](#about-collapseloader)
- [Key Features](#key-features)
- [Safety & Transparency](#safety--transparency)
- [Screenshots](#screenshots)
- [Installation](#installation)
- [Windows](#windows)
- [Linux](#linux)
- [Linux Troubleshooting](#linux-troubleshooting)
- [Development](#development)
---
## About CollapseLoader
CollapseLoader is a modern, cross-platform tool built with **Rust** and **Tauri**. It provides a safe environment for launching Minecraft cheat clients on Windows and Linux. Our mission is to eliminate the risks associated with third-party software by providing a transparent, community-reviewed platform.
### Key Features
- **Strict Verification**: Only clients that pass rigorous security audits are supported.
- **Cross-Platform**: Seamless performance on both Windows and Linux.
- **Virus Protection**: Integration with [CollapseScanner](https://github.com/CollapseLoader/CollapseScanner) and industry-standard antivirus tools.
- **Zero Obfuscation**: We only host clients with readable, reviewable code.
- **Automated Trust**: All binaries are built via GitHub Actions to ensure the code you see is the code you run.
---
## Safety & Transparency
We take security seriously. Unlike traditional loaders, CollapseLoader is built on the principle of "Trust through Verification":
- **Public Repositories**: Every component is open-source under the [CollapseLoader Organization](https://github.com/CollapseLoader).
- **Security Audits**: We check for malicious network activity, token loggers, and file system intrusions.
- **Security Policy**: For a deep dive into our protocols, check our [SECURITY.md](SECURITY.md).
---
## Screenshots
---
## Installation
### Windows
- **System**: Windows 10 or 11.
- **Download**: Grab the `.msi` installer or the standalone `.exe` from [Releases](https://github.com/dest4590/CollapseLoader/releases).
### Linux
We provide several ways to install CollapseLoader depending on your distribution:
#### 1. Arch Linux (AUR)
Arch users can install the package using an AUR helper like `yay` or `paru`:
```bash
# To install the pre-compiled binary version
yay -S collapseloader-bin
# To build from the latest git source
yay -S collapseloader-git
```
#### 2. Debian / Ubuntu
Download the `.deb` package from the releases page and install it via:
```bash
sudo dpkg -i collapseloader_amd64.deb
sudo apt install -f # Fix potential missing dependencies
```
#### 3. Generic (AppImage)
Download the `.AppImage` file, make it executable, and run:
```bash
chmod +x CollapseLoader.AppImage
./CollapseLoader.AppImage
```
For a full list of supported clients on linux, [view our compatibility table](https://docs.google.com/spreadsheets/d/1TcMOdRKTSeGfns5WijZjvZBz6HBdwXZlClN0pcPd14k/edit?usp=sharing).
---
## Linux Troubleshooting
### 1. Missing Dependencies (webkit2)
If the application (especially the Binary or AppImage) fails to start, you likely need to install the `webkit2gtk` package for your system:
**Debian / Ubuntu / Mint:**
```bash
sudo apt install libwebkit2gtk-4.1-dev
```
**Arch Linux / Manjaro:**
```bash
sudo pacman -S webkit2gtk-4.1
```
**Fedora / RHEL:**
```bash
sudo dnf install webkit2gtk4.1-devel
```
### 2. Rendering Issues (Fix)
If you experience a blank screen, flickering, or UI crashes (common on NVIDIA drivers or specific Wayland setups), use the following environment variables to launch the app:
```bash
WEBKIT_DISABLE_DMABUF_RENDERER=1 WEBKIT_DISABLE_COMPOSITING_MODE=1 GDK_BACKEND=x11 ./CollapseLoader
```
---
## Development
To build CollapseLoader from source, ensure you have the Rust toolchain and Node.js installed.
1. Clone the repository: `git clone https://github.com/dest4590/CollapseLoader`
2. Install dependencies: `npm install`
3. Run in dev mode: `npm run tauri dev`
4. Build: `npm run tauri build`