Compare commits

...
Author SHA1 Message Date
Reece Browne 12fff5b4a7 Merge branch 'main' into mac-print 2026-02-04 17:15:31 +00:00
Reece Browne 03da0e7d68 Merge branch 'main' into mac-print 2026-01-29 20:24:16 +00:00
Reece 685b562d3d Attempt to fix print on mac 2026-01-29 18:05:01 +00:00
2 changed files with 29 additions and 2 deletions
+27
View File
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- Enable printing capability -->
<key>com.apple.security.print</key>
<true/>
<!-- Enable network access for connecting to backend -->
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.network.server</key>
<true/>
<!-- Enable file access for PDF handling -->
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<!-- Allow execution of bundled JRE -->
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key>
<true/>
</dict>
</plist>
+2 -2
View File
@@ -5,7 +5,7 @@
"identifier": "stirling.pdf.dev",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
"devUrl": "http://localhost:5174",
"beforeDevCommand": "npm run dev -- --mode desktop",
"beforeBuildCommand": "npm run build -- --mode desktop"
},
@@ -67,7 +67,7 @@
"macOS": {
"minimumSystemVersion": "10.15",
"signingIdentity": null,
"entitlements": null,
"entitlements": "entitlements.plist",
"providerShortName": null
}
},