-
-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Download and install Kindling on your platform.
Get the latest release from the GitHub Releases page.
| Platform | File | Description |
|---|---|---|
| macOS (Apple Silicon) | Kindling_*_aarch64.dmg |
For M1, M2, M3 Macs |
| macOS (Intel) | Kindling_*_x64.dmg |
For Intel-based Macs |
| Windows | Kindling_*_x64-setup.msi |
Windows installer |
| Linux | Kindling_*_amd64.AppImage |
Portable, works on most distros |
| Linux (Debian/Ubuntu) | kindling_*_amd64.deb |
Native package for apt-based systems |
To ensure you downloaded the authentic Kindling release:
- Download only from official sources: GitHub Releases
-
Verify checksums (optional but recommended):
- Download
checksums.sha256from the same release - Verify the file with your platform:
- Download
# macOS / Linux
shasum -a 256 -c checksums.sha256 --ignore-missing
# Windows (PowerShell)
certutil -hashfile Kindling_*_x64-setup.msi SHA256If your checksum doesn't match, delete the file and re-download from the official release page.
- Kindling is open source and auditable: github.com/smith-and-web/kindling
- Release builds are produced by GitHub Actions in this repository
- Release assets include checksums for download verification
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
Kindling is not signed with a Windows code signing certificate. Windows SmartScreen may show a warning when you first run the installer.
- Download the
.msiinstaller - 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.
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 ($200-500/year), so we've opted to ship unsigned for now.
AppImage is a portable format that works on most Linux distributions without installation.
# Download the AppImage
# Make it executable
chmod +x Kindling_*.AppImage
# Run it
./Kindling_*.AppImageTo add Kindling to your application menu:
# Install AppImageLauncher (recommended)
# Or manually create a .desktop file
# Move AppImage to a permanent location
mkdir -p ~/Applications
mv Kindling_*.AppImage ~/Applications/
# Create desktop entry
cat > ~/.local/share/applications/kindling.desktop << EOF
[Desktop Entry]
Name=Kindling
Exec=$HOME/Applications/Kindling_*.AppImage
Icon=kindling
Type=Application
Categories=Office;Writing;
EOFFor Debian-based distributions (Ubuntu, Linux Mint, Pop!_OS, etc.):
# Install the package
sudo dpkg -i kindling_*.deb
# If there are dependency issues
sudo apt-get install -fLaunch Kindling from your application menu or run kindling in the terminal.
sudo apt remove kindlingEnsure you downloaded the correct version:
-
Apple Silicon (M1/M2/M3):
aarch64.dmg -
Intel:
x64.dmg
Check your Mac's chip: Apple menu → About This Mac → Chip/Processor.
Try running the installer as Administrator:
- Right-click the
.msifile - Select Run as administrator
Ensure FUSE is installed:
# Ubuntu/Debian
sudo apt install libfuse2
# Fedora
sudo dnf install fuseAppImages don't always integrate with desktop environments automatically. Use AppImageLauncher or create a .desktop file manually (see above).
If you prefer to build Kindling yourself, see the README for instructions.