Tellnova Tellnova — alpha Unsigned build · install guide

How to download

The alpha is unsigned, so your operating system will try to stop it the first time. That is expected — nothing is broken, and the two-minute walkthrough below gets it running on your machine.

!

It is safe to run, and the download is not modified. Signing & notarization require paid developer accounts, which are on the roadmap. Until then macOS and Windows show a security warning on first launch. Check the SHA-256 checksums on the GitHub release to verify your download anytime.

macOS

  1. Open the .dmg you downloaded from tellnova.com.

    Double-click it from Downloads or the browser's file list.

  2. Drag Tellnova into Applications.

  3. Launch it once. Gatekeeper will block it — you may see either of these messages:

    "Tellnova" is damaged and can't be opened. You should move it to the Trash.
    
    "Tellnova" cannot be opened because the developer cannot be verified.

    That's the unsigned-build warning, not malware detection.

  4. Open Terminal (Spotlight → type “Terminal”) and run:

    xattr -cr /Applications/Tellnova.app

    Removes the “downloaded from the internet” quarantine flag that triggers the check. It does not modify the app itself.

  5. Launch Tellnova normally. It's installed.

  6. On Apple silicon (M-series) and it still says “damaged”? Give the app a local ad-hoc signature:

    codesign --force --deep --sign - /Applications/Tellnova.app

    The trailing - means “sign with no identity” — it satisfies the CPU's code-signing rule with no certificate required.

No Terminal? Try System Settings.

Attempt to open Tellnova once, then go to System Settings → Privacy & Security and press Open Anyway next to the blocked app entry.

Note: on macOS Sequoia and later, right-click → Open no longer bypasses the check — use the steps above.

Windows

  1. Open the .zip you downloaded and click Extract all.

  2. Double-click Tellnova.exe inside the extracted folder.

  3. Windows SmartScreen will pop up: “Windows protected your PC”. Click More info, then Run anyway.

  4. First launch may take a few seconds. That's it.

Tip

The ZIP is portable — there is no installer. Keep the folder somewhere permanent, then pin Tellnova to the taskbar with right-click → Pin to taskbar.

Linux

  1. Open a terminal in your Downloads folder and make the AppImage executable:

    chmod +x Tellnova-*.AppImage
  2. Run it:

    ./Tellnova-*.AppImage
  3. On systems without FUSE it may refuse to run — extract and run it instead:

    ./Tellnova-*.AppImage --appimage-extract-and-run

Verify your download (optional)

  1. Each GitHub release lists SHA-256 checksums.

  2. Check the file you downloaded:

    # macOS
    shasum -a 256 ~/Downloads/Tellnova-*.dmg
    
    # Windows (PowerShell)
    Get-FileHash -Algorithm SHA256 .\Tellnova-*.zip
    
    # Linux
    sha256sum Tellnova-*.AppImage
  3. Compare the output against the checksum on the release page.

Read the guide on GitHub ↗
← Back to tellnova.com