fix(macos): add entitlements for opencode sidecar (#169)

This commit is contained in:
ben
2026-01-21 01:20:58 -08:00
committed by GitHub
parent 1d7f25ef3c
commit 389df765ca
5 changed files with 19 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "@different-ai/openwork",
"private": true,
"version": "0.2.8",
"version": "0.2.9",
"type": "module",
"scripts": {
"dev": "tauri dev",

View File

@@ -2371,7 +2371,7 @@ dependencies = [
[[package]]
name = "openwork"
version = "0.2.8"
version = "0.2.9"
dependencies = [
"serde",
"serde_json",

View File

@@ -1,6 +1,6 @@
[package]
name = "openwork"
version = "0.2.8"
version = "0.2.9"
description = "OpenWork"
authors = ["Different AI"]
edition = "2021"

View File

@@ -0,0 +1,12 @@
<?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>
<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-executable-page-protection</key>
<true/>
</dict>
</plist>

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenWork",
"version": "0.2.8",
"version": "0.2.9",
"identifier": "com.differentai.openwork",
"build": {
"beforeDevCommand": "pnpm dev:web",
@@ -24,6 +24,9 @@
},
"bundle": {
"createUpdaterArtifacts": true,
"macOS": {
"entitlements": "./entitlements.plist"
},
"icon": [
"icons/32x32.png",
"icons/128x128.png",