mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
(backported from Basilisk) Add support for MacOS Leopard.
This commit is contained in:
parent
92e7bc169d
commit
05d0c3f046
3 changed files with 20 additions and 2 deletions
|
|
@ -156,6 +156,8 @@
|
|||
<string>%MAC_APP_NAME%</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>ATSApplicationFontsPath</key>
|
||||
<string>fonts</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>%APP_VERSION%</string>
|
||||
<key>CFBundleSignature</key>
|
||||
|
|
@ -213,7 +215,18 @@
|
|||
<key>LSFileQuarantineEnabled</key>
|
||||
<true/>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.7.0</string>
|
||||
<string>10.5.0</string>
|
||||
<key>LSMinimumSystemVersionByArchitecture</key>
|
||||
<dict>
|
||||
<key>i386</key>
|
||||
<string>10.5.0</string>
|
||||
<key>x86_64</key>
|
||||
<string>10.7.0</string>
|
||||
<key>ppc</key>
|
||||
<string>10.5.0</string>
|
||||
<key>arm64</key>
|
||||
<string>11.0.0</string>
|
||||
</dict>
|
||||
<key>NSSupportsAutomaticGraphicsSwitching</key>
|
||||
<true/>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
|
|
|||
|
|
@ -1225,6 +1225,11 @@ pref("browser.cache.frecency_experiment", -1);
|
|||
// Enable GMP support in the addon manager.
|
||||
pref("media.gmp-provider.enabled", true);
|
||||
|
||||
// On MacOS 10.6 and earlier, enable the window resize grip
|
||||
#ifdef XP_MACOSX
|
||||
pref("ui.mouse.resize_grip", true);
|
||||
#endif
|
||||
|
||||
// Enable Contextual Identity Containers
|
||||
#ifdef NIGHTLY_BUILD
|
||||
pref("privacy.userContext.enabled", true);
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@
|
|||
@RESPATH@/chrome/@AB_CD@@JAREXT@
|
||||
@RESPATH@/chrome/@AB_CD@.manifest
|
||||
@RESPATH@/dictionaries/*
|
||||
#if defined(XP_WIN) || defined(MOZ_WIDGET_GTK)
|
||||
#ifdef MOZ_BUNDLED_FONTS
|
||||
@RESPATH@/fonts/*
|
||||
#endif
|
||||
@RESPATH@/hyphenation/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue