Merge remote-tracking branch 'upstream/main'

This commit is contained in:
Steven Enamakel
2026-03-29 23:05:36 -07:00
3 changed files with 22 additions and 8 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "openhuman-app",
"version": "0.49.17",
"version": "0.49.18",
"type": "module",
"scripts": {
"dev": "vite",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "OpenHuman"
version = "0.49.17"
version = "0.49.18"
description = "OpenHuman - AI-powered Super Assistant"
authors = ["OpenHuman"]
edition = "2021"
+20 -6
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenHuman",
"version": "0.49.17",
"version": "0.49.18",
"identifier": "com.openhuman.app",
"build": {
"beforeDevCommand": "npm run core:stage && npm run dev",
@@ -22,7 +22,9 @@
"center": true
}
],
"security": { "csp": null },
"security": {
"csp": null
},
"macOSPrivateApi": true
},
"bundle": {
@@ -35,12 +37,18 @@
"icons/icon.icns",
"icons/icon.ico"
],
"resources": ["../../src/openhuman/agent/prompts"],
"externalBin": ["binaries/openhuman"],
"resources": [
"../../src/openhuman/agent/prompts"
],
"externalBin": [
"binaries/openhuman"
],
"createUpdaterArtifacts": true,
"macOS": {
"minimumSystemVersion": "10.15",
"dmg": { "background": "./images/background-dmg.png" }
"dmg": {
"background": "./images/background-dmg.png"
}
}
},
"plugins": {
@@ -50,6 +58,12 @@
"https://github.com/tinyhumansai/openhuman/releases/latest/download/latest.json"
]
},
"deep-link": { "desktop": { "schemes": ["openhuman"] } }
"deep-link": {
"desktop": {
"schemes": [
"openhuman"
]
}
}
}
}