mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 22:51:20 +02:00
Add exception for backtrace requests
This commit is contained in:
parent
8c283806b3
commit
d9d72774d8
2 changed files with 22 additions and 0 deletions
|
@ -45,5 +45,25 @@
|
||||||
</array>
|
</array>
|
||||||
<key>NSHighResolutionCapable</key>
|
<key>NSHighResolutionCapable</key>
|
||||||
<true/>
|
<true/>
|
||||||
|
<key>NSAppTransportSecurity</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionDomains</key>
|
||||||
|
<dict>
|
||||||
|
<key>${MACOSX_BUNDLE_BACKTRACE_DOMAIN_NAME}</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionRequiresForwardSecrecy</key>
|
||||||
|
<false/>
|
||||||
|
<!--Include to allow subdomains-->
|
||||||
|
<key>NSIncludesSubdomains</key>
|
||||||
|
<true/>
|
||||||
|
<!--Include to allow HTTP requests-->
|
||||||
|
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
|
||||||
|
<true/>
|
||||||
|
<!--Include to specify minimum TLS version-->
|
||||||
|
<key>NSTemporaryExceptionMinimumTLSVersion</key>
|
||||||
|
<string>TLSv1.2</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
@ -127,6 +127,8 @@ if (APPLE)
|
||||||
endif ()
|
endif ()
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
set(MACOSX_BUNDLE_BACKTRACE_DOMAIN_NAME highfidelity.sp.backtrace.io)
|
||||||
|
|
||||||
# set how the icon shows up in the Info.plist file
|
# set how the icon shows up in the Info.plist file
|
||||||
set(MACOSX_BUNDLE_ICON_FILE "${INTERFACE_ICON_FILENAME}")
|
set(MACOSX_BUNDLE_ICON_FILE "${INTERFACE_ICON_FILENAME}")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue