Recommended install: brew install itsdezen/tap/tili —
Homebrew downloads via curl, which doesn't set macOS's
quarantine flag, so Gatekeeper never enters the picture.
The tarballs below are codesigned with tili's self-signed
certificate (hardened runtime) — see
CONTRIBUTING.md.
That's for a stable signing identity across releases (so
your Accessibility grant survives an upgrade), not for
passing Gatekeeper — a self-signed cert isn't notarized. If
you download tili.app directly from this page instead of
using Homebrew, Gatekeeper will still prompt on first launch:
right-click → Open, or xattr -d com.apple.quarantine tili.app.
Fixed
- Finder's Quick Look preview panel (Space) and "Get Info" panel
(Cmd+I) were floating and centering instead of being left alone, even
whencom.apple.finderwasn't configured as a floating app at all.
Quick Look is aWindowKind::Popup, which already defaults toIgnore,
but afloating-rulesentry forcom.apple.finder(written for its real
browser windows) has no way to exclude this one auxiliary panel and an
explicit rule always wins over the kind-based default. Get Info reaches
WindowKind::Dialogvia the zoom-but-no-fullscreen heuristic, whose own
kind-based default isFloat— wrong regardless of any rule, since the
window should never be touched at all. Both are now force-Ignored
unconditionally, the same mechanism already used for Finder's "Copy" and
"Connect to Server" dialogs and System Settings' suggestion popup.
Full changelog: CHANGELOG.md