Skip to content

Prompt Booster v0.7.5

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Jun 00:55
· 137 commits to main since this release

This app supports auto update.

For Linux Users: Running AppImage

Download the AppImage file and run these two commands:

chmod +x Prompt-Booster-*.AppImage
./Prompt-Booster-*.AppImage --no-sandbox

Note: The --no-sandbox flag is required for AppImage compatibility on most Linux distributions.

Optional: Easy Desktop Integration

Method 1: File Manager Integration (Most User-Friendly)

  1. Right-click on the AppImage file
  2. Select "Properties" or "Permissions"
  3. Check "Allow executing file as program" or "Executable"
  4. Double-click to run (you may still need to add --no-sandbox manually)

Method 2: Create Launcher Script
Create a simple script in the same folder as your AppImage:

# Save this as "launch-prompt-booster.sh" next to your AppImage
#!/bin/bash
cd "$(dirname "$0")"
./Prompt-Booster-*.AppImage --no-sandbox

Then make it executable: chmod +x launch-prompt-booster.sh

For macOS Users: Running Unsigned App

Since this app is not signed with an Apple Developer certificate, macOS may prevent it from running. Use either of these methods:

Option 1: Remove quarantine attribute for this app only

xattr -r -d com.apple.quarantine /Applications/Prompt\ Booster.app

(Replace with your actual app path)

Option 2: Temporarily disable Gatekeeper

sudo spctl --master-disable

After using the app, re-enable Gatekeeper for security:

sudo spctl --master-enable