OS Support
Built with Electron, ThoughtsPlus can run natively on macOS and Linux. We provide Beta builds for these platforms. Please be aware that they may contain unusual bugs or platform-specific issues as they are not the primary development target.
If you encounter any problems, please report them at GitHub Issues.
macOS
Beta SupportInstallation
-
Download the appropriate version for your Mac from GitHub Releases:
- Intel Macs:
ThoughtsPlus-6.0.7-x64.dmg - Apple Silicon (M1/M2/M3):
ThoughtsPlus-6.0.7-arm64.dmg
- Intel Macs:
- Open the DMG file and drag ThoughtsPlus to Applications.
- First Launch: Right-click ThoughtsPlus.app → Open (to bypass Gatekeeper warning as the app is not notarized yet).
Requirements
- macOS 10.13 (High Sierra) or later
- Intel (x64) or Apple Silicon (arm64)
- 200 MB free disk space
Available Formats
- DMG: Installer with drag-to-Applications
Linux
Beta SupportInstallation (AppImage)
# Loading latest version...
Download the AppImage from GitHub Releases.
Requirements
- Linux kernel 3.10 or later
- x86_64 (64-bit) architecture
- 200 MB free disk space
Tested Distributions
Ubuntu 20.04+, Debian 10+, Fedora 35+, Arch Linux, Pop!_OS 20.04+, Linux Mint 20+
Building from Source
If you prefer to build it yourself, you can do so easily.
Prerequisites
- Node.js 18 or later
- npm or yarn
Build Commands
# Clone repository
git clone https://github.com/umfhero/ThoughtsPlus.git
cd ThoughtsPlus
# Install dependencies
npm install
# Build for your platform
npm run build # Current platform
npm run build:mac # macOS (Intel + Apple Silicon)
npm run build:linux # Linux (AppImage, DEB, RPM)
npm run build:all # All platforms
Output Locations
- Windows:
release/ThoughtsPlus-Setup-6.0.7.exe - macOS:
release/ThoughtsPlus-6.0.7-x64.dmgandThoughtsPlus-6.0.7-arm64.dmg - Linux:
release/ThoughtsPlus-6.0.7-x86_64.AppImage
Note: Cross-platform builds work best on their native OS. For automated multi-platform builds, the repository includes GitHub Actions workflows.