fix(macos): set CFBundleDisplayName to Recl∆Im

The macOS window title and the application menu bar (About / Hide
/ Quit) were rendering 'reclaim_app' — the technical bundle name —
because Info.plist only carried CFBundleName from $(PRODUCT_NAME).
CFBundleDisplayName takes precedence for everything the user sees,
so adding it pins the product name independently of the binary
filename. The .app is still reclaim_app.app on disk; the title bar
now reads Recl∆Im.

Signed-off-by: flemming-it <sf@flemming.it>
This commit is contained in:
flemming-it 2026-06-18 14:13:52 +02:00
parent 7efe84de34
commit 7e9687afc6

View file

@ -14,6 +14,8 @@
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundleDisplayName</key>
<string>Recl∆Im</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>