First launch

macOS says Notula is damaged. The download is fine.

Notula is not code-signed yet, and macOS reports anything unsigned that arrived from the web as damaged. One command clears it, once, and you never see it again.

“Notula” is damaged and can’t be opened. You should move it to the Bin.

This file was downloaded on an unknown date.

Cancel Move to Bin
macOS shows this if you skip the command. Nothing is wrong with the download.

Fix it in three steps

  1. 01

    Drag Notula into Applications

    Open the .dmg and drag the app across. The command below names that location, so do this part first.

  2. 02

    Run this in Terminal

    Terminal is in Applications, under Utilities. Paste the line, press Return. It prints nothing and asks for no password.

    xattr -dr com.apple.quarantine /Applications/Notula.app
  3. 03

    Open Notula

    It starts normally from now on, and updates itself from then on without repeating any of this.

What that command does

Nobody should paste a command they have not had explained. When a browser downloads a file, macOS writes an extended attribute on it called com.apple.quarantine, which marks it as having come from the internet. Gatekeeper then checks who signed the app. Notula has no Developer ID certificate yet, so that check finds no signature, and the message macOS chose for that case is the word damaged.

xattr reads and writes those attributes. -d com.apple.quarantine deletes that one attribute and -r walks the whole app bundle. It touches nothing else, needs no password, and applies only to the app you name. The same command is what Homebrew and every other unsigned Mac build asks for.

It goes away the day Notula has a certificate. That is a paid Apple Developer account and a notarisation step, not a technical obstacle, and it is listed openly on the status table.

It still says damaged

On Windows, it is SmartScreen

The installer is unsigned for the same reason, so the first time you run it Windows shows a blue panel saying it protected your PC. Choose More info, then Run anyway. There is no command and nothing else to do; the panel appears once.

Get Notula

Apple Silicon. On an Intel Mac, or on Windows. 64-bit. On Windows on Arm, or on macOS.

Copy the command to continue.