Installation
Download and install Kindling on your platform. All downloads are free.
Download
Section titled “Download”Get the latest release from the Kindling download page or directly from GitHub Releases.
Available Downloads
Section titled “Available Downloads”| Platform | File | Description |
|---|---|---|
| macOS (Universal) | Kindling_*_universal.dmg | Works on both Apple Silicon and Intel |
| Windows | Kindling_*_x64-setup.exe | Windows installer |
| Linux | Kindling_*_amd64.AppImage | Portable, works on most distros |
| Linux (Debian/Ubuntu) | kindling_*_amd64.deb | Native package for apt-based systems |
Verify Your Download
Section titled “Verify Your Download”To ensure you downloaded the authentic Kindling release:
- Download only from official sources: kindlingwriter.com/download/ or GitHub Releases
- Verify checksums (optional but recommended):
- Download
checksums.sha256from the same release page - Verify with your platform:
- Download
# macOS / Linuxshasum -a 256 -c checksums.sha256 --ignore-missing
# Windows (PowerShell)certutil -hashfile Kindling_*_x64-setup.exe SHA256If your checksum doesn’t match, delete the file and re-download from the official release page.
macOS Installation
Section titled “macOS Installation”Kindling is code-signed and notarized by Apple. It should open without Gatekeeper warnings.
- Double-click the
.dmgfile to mount it - Drag Kindling to your Applications folder
- Double-click Kindling in your Applications folder to launch it
Windows Installation
Section titled “Windows Installation”Kindling is not yet signed with a Windows code signing certificate. Windows SmartScreen may show a warning when you first run the installer.
Bypassing SmartScreen
Section titled “Bypassing SmartScreen”- Download the
.exeinstaller - Double-click to run the installer
- If you see “Windows protected your PC”:
- Click More info
- Click Run anyway
- Follow the installation wizard
- Launch Kindling from the Start menu
After installation, Kindling will run without warnings.
Why This Warning Appears
Section titled “Why This Warning Appears”SmartScreen warns about apps that don’t have an established reputation with Microsoft. As more users download and run Kindling, this warning will eventually disappear. Code signing certificates are expensive, so we’ve opted to ship unsigned for now. Kindling is fully open source — you can inspect the source code and the CI build process at any time.
Linux Installation
Section titled “Linux Installation”AppImage (Recommended)
Section titled “AppImage (Recommended)”AppImage is a portable format that works on most Linux distributions without installation.
# Make it executablechmod +x Kindling_*.AppImage
# Run it./Kindling_*.AppImageOptional: Desktop Integration
Section titled “Optional: Desktop Integration”To add Kindling to your application menu:
# Move AppImage to a permanent locationmkdir -p ~/Applicationsmv Kindling_*.AppImage ~/Applications/
# Create desktop entrycat > ~/.local/share/applications/kindling.desktop << EOF[Desktop Entry]Name=KindlingExec=$HOME/Applications/Kindling_*.AppImageIcon=kindlingType=ApplicationCategories=Office;Writing;EOFDebian/Ubuntu (.deb)
Section titled “Debian/Ubuntu (.deb)”For Debian-based distributions (Ubuntu, Linux Mint, Pop!_OS, etc.):
# Install the packagesudo dpkg -i kindling_*.deb
# If there are dependency issuessudo apt-get install -fLaunch Kindling from your application menu or run kindling in the terminal.
Uninstalling
Section titled “Uninstalling”sudo apt remove kindlingTroubleshooting
Section titled “Troubleshooting”macOS: App crashes immediately
Section titled “macOS: App crashes immediately”Ensure you downloaded the correct version for your Mac. Check your chip: Apple menu → About This Mac → Chip/Processor. The universal .dmg works on both Apple Silicon and Intel.
Windows: Installer fails silently
Section titled “Windows: Installer fails silently”Try running the installer as Administrator:
- Right-click the
.exefile - Select Run as administrator
Linux: AppImage won’t start
Section titled “Linux: AppImage won’t start”Ensure FUSE is installed:
# Ubuntu/Debiansudo apt install libfuse2
# Fedorasudo dnf install fuseLinux: No application icon
Section titled “Linux: No application icon”AppImages don’t always integrate with desktop environments automatically. Use AppImageLauncher or create a .desktop file manually (see above).
Updating Kindling
Section titled “Updating Kindling”As of v1.1, Kindling checks for updates automatically on launch. When a new version is available, it downloads silently in the background and shows a banner at the bottom of the window:
“Kindling vX.Y.Z is ready — Restart to update.”
Click Restart to apply the update immediately, or dismiss the banner and restart later. You’ll be prompted again on the next launch.
If you prefer to update manually, download the latest release from kindlingwriter.com/download/ and install over your existing version. Your projects are stored separately and will be preserved.
Building from Source
Section titled “Building from Source”If you prefer to build Kindling yourself, see the README for instructions.