sysui/desktop/macosx/Info.plist.in | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit 6782748ca5ffa036de58cf9ad63d568703180390 Author: Christian Lohmaier <[email protected]> AuthorDate: Wed Jun 29 13:43:37 2022 +0200 Commit: Adolfo Jayme Barrientos <[email protected]> CommitDate: Thu Jun 30 08:58:05 2022 +0200 tdf#126961 fix access to the macOS address book Having the personal-information.addressbook entitlement is not enough. Without the plist key NSContactsUsageDescription, macOS will not ask the user to grant access and the request is implicitly denied without any feedback/logging. Change-Id: I954fa86b35a128f08e5c498191bc0949e0edeebf Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136619 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <[email protected]> (cherry picked from commit ccf518a6fd2819e6a328e953d5e7356d8d9bd11f) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136637 Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/sysui/desktop/macosx/Info.plist.in b/sysui/desktop/macosx/Info.plist.in index e50d7a20c4dd..6593139019fc 100644 --- a/sysui/desktop/macosx/Info.plist.in +++ b/sysui/desktop/macosx/Info.plist.in @@ -1959,6 +1959,8 @@ <string>@[email protected]</string> <key>NSHighResolutionCapable</key> <true/> + <key>NSContactsUsageDescription</key> + <string>You can add your contacts as a data source for mail merge or similar operations.</string> </dict> </plist> <!-- vim:set shiftwidth=4 softtabstop=4 expandtab: -->
