diff options
author | Artyom Loenko <artyom.loenko@mac.com> | 2019-10-05 17:49:23 +0100 |
---|---|---|
committer | Alan Third <alan@idiocy.org> | 2019-10-05 22:33:52 +0100 |
commit | 080e8084e83f70f9add7b42d2f24b03db931fcf9 (patch) | |
tree | 4abb205265193184dea490c42fa4ae8e5e1abb54 /nextstep/templates | |
parent | e72e4990f99c5d56502d304f448a410bb17d12d7 (diff) | |
download | emacs-080e8084e83f70f9add7b42d2f24b03db931fcf9.tar.gz emacs-080e8084e83f70f9add7b42d2f24b03db931fcf9.tar.bz2 emacs-080e8084e83f70f9add7b42d2f24b03db931fcf9.zip |
Include new permission settings for macOS 10.15 (bug#37551)
* nextstep/templates/Info.plist.in
(NSDesktopFolderUsageDescription):
(NSDocumentsFolderUsageDescription):
(NSDownloadsFolderUsageDescription):
(NSRemovableVolumesUsageDescription): Add description to enable
setting in macOS 10.15.
Copyright-paperwork-exempt: yes
Diffstat (limited to 'nextstep/templates')
-rw-r--r-- | nextstep/templates/Info.plist.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nextstep/templates/Info.plist.in b/nextstep/templates/Info.plist.in index c1e50a8409e..652cedf0562 100644 --- a/nextstep/templates/Info.plist.in +++ b/nextstep/templates/Info.plist.in @@ -677,5 +677,13 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. <string>YES</string> <key>NSAppleEventsUsageDescription</key> <string>Emacs requires permission to send AppleEvents to other applications.</string> + <key>NSDesktopFolderUsageDescription</key> + <string>Emacs requires permission to access the Desktop folder.</string> + <key>NSDocumentsFolderUsageDescription</key> + <string>Emacs requires permission to access the Documents folder.</string> + <key>NSDownloadsFolderUsageDescription</key> + <string>Emacs requires permission to access the Downloads folder.</string> + <key>NSRemovableVolumesUsageDescription</key> + <string>Emacs requires permission to access files on Removable Volumes.</string> </dict> </plist> |