| File | Date | Author | Commit |
|---|---|---|---|
| scratch | 1 day ago |
|
[835d10] BTTB 3.3.0 Debian package |
| src | 1 day ago |
|
[835d10] BTTB 3.3.0 Debian package |
| web | 2 days ago |
|
[9f391b] BTTB 3.3.0 with explorer integration, CLI and u... |
| CMakeLists.txt | 1 day ago |
|
[835d10] BTTB 3.3.0 Debian package |
| LICENSE | 3 days ago |
|
[9c8a58] Initial commit of BTTB 3.0.0 |
| README.md | 2 days ago |
|
[a91237] BTTB 3.2.0 release |
| README_WINDOWS.md | 3 days ago |
|
[9c8a58] Initial commit of BTTB 3.0.0 |
Burn to the Brim (BTTB) is a modern C++20 desktop application designed to optimally fit files and folders onto target storage mediums (such as CDs, DVDs, or Custom sizes).
This is a complete port of the classic Delphi application to C++20 supporting:
It solves the subset-sum / bin packing problem instantly using an advanced recursive backtracking solver, matching files efficiently, and providing file organization and ISO creation capabilities.
splitDepth waterlevel (atomic vs recursive scanning).std::regex).genisoimage/mkisofs) with real-time log capturing.Simply extract the release package bttb-cpp-3.2.0-Win64-Native-GUI.zip and run:
bttb_win32.exe: Double-click to launch the native Windows GUI application instantly!To use the Create ISO Image feature, a command-line ISO generation utility (genisoimage.exe or mkisofs.exe) must be installed on your Windows system and added to your environment PATH.
Here are the simplest ways to install it:
powershell
irm get.scoop.sh | iexcdrtools (which includes mkisofs):powershell
scoop install cdrtoolsRestart Burn to the Brim and create your ISO!
Method 2: Using Chocolatey (Automatic PATH)
powershell
choco install cdrtoolsRestart Burn to the Brim and create your ISO!
Method 3: Using Cygwin
setup-x86_64.exe installer.cdrkit (contains genisoimage) or cdrtools (contains mkisofs) package.C:\cygwin64\bin to your Windows System environment variable PATH.Restart Burn to the Brim.
Method 4: Using MSYS2
bash
pacman -S mingw-w64-ucrt-x86_64-cdrtoolsC:\msys64\ucrt64\bin to your Windows System environment variable PATH.sudo apt update
sudo apt install -y libgtk-4-dev build-essential cmake pkg-config genisoimage
Compile the application from the root of the project folder:
# Create and navigate to the build folder
mkdir -p build
cd build
# Configure and compile
cmake -DCMAKE_BUILD_TYPE=Release ..
make -j$(nproc)
This compiles:
bttb: The GTK 4 desktop GUI application.test_solver: An offline programmatic unit test suite.# Launch the desktop app
./build/bttb
# Run the unit tests
./build/test_solver
To build the native GTK 4 Windows GUI from source:
bash
pacman -Syu
pacman -S mingw-w64-ucrt-x86_64-toolchain mingw-w64-ucrt-x86_64-cmake mingw-w64-ucrt-x86_64-gtk4bash
mkdir build && cd build
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release ..
mingw32-make -j$(nproc)This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License (GPLv2). See the accompanying LICENSE file for the full terms.