Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions cmake/modules/MacOSXBundleInfo.plist.in
Original file line number Diff line number Diff line change
Expand Up @@ -132,13 +132,23 @@
<true/>
<key>NSHumanReadableCopyright</key>
<string>${MACOSX_BUNDLE_COPYRIGHT}</string>
<key>NSAppTransportSecurity</key>
<key>NSLocalNetworkUsageDescription</key>
<string>Snapmaker Orca needs access to your local network to discover and connect to your 3D printer(s), and to serve the app's device interface on localhost.</string>
<key>NSBonjourServices</key>
<array>
<string>_http._tcp</string>
<string>_printer._tcp</string>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<!-- Disable App Transport Security. Resolves https://github.com/SoftFever/OrcaSlicer/issues/791 -->
<key>NSAllowsArbitraryLoads</key>
<true/>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
<!-- Allow HTTP connections to localhost for local web server (required for macOS 26+) -->
<key>NSAllowsLocalNetworking</key>
<true/>
</dict>
</dict>
</plist>