Ladybird/Meta: Enable macOS high-dpi support

This also adds an Info.plist file required to properly
build macOS applications.
This commit is contained in:
Filiph Sandström 2022-07-26 22:43:53 +02:00 committed by Andrew Kaster
parent da23456f9e
commit 7ddb433f99
Notes: sideshowbarker 2024-07-17 02:46:46 +09:00

24
Ladybird/Info.plist Normal file
View File

@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleGetInfoString</key>
<string>Ladybird</string>
<key>CFBundleSignature</key>
<string></string>
<key>CFBundleExecutable</key>
<string>Ladybird</string>
<key>CFBundleIdentifier</key>
<string>com.serenity.Ladybird</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSHighResolutionCapable</key>
<string>True</string>
</dict>
</plist>