chore(release): v0.52.1

This commit is contained in:
github-actions[bot]
2026-04-10 06:58:40 +00:00
parent 6410db1fad
commit ca4ea9bb12
4 changed files with 31 additions and 10 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "openhuman"
version = "0.52.0"
version = "0.52.1"
edition = "2021"
description = "OpenHuman core business logic and RPC server"
autobins = false
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "openhuman-app",
"version": "0.52.0",
"version": "0.52.1",
"type": "module",
"scripts": {
"dev": "vite",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "OpenHuman"
version = "0.52.0"
version = "0.52.1"
description = "OpenHuman - AI-powered Super Assistant"
authors = ["OpenHuman"]
edition = "2021"
+28 -7
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenHuman",
"version": "0.52.0",
"version": "0.52.1",
"identifier": "com.openhuman.app",
"build": {
"beforeDevCommand": "npm run core:stage && npm run dev",
@@ -37,12 +37,21 @@
"center": false
}
],
"security": { "csp": null },
"security": {
"csp": null
},
"macOSPrivateApi": true
},
"bundle": {
"active": true,
"targets": ["app", "dmg", "deb", "nsis", "msi", "appimage"],
"targets": [
"app",
"dmg",
"deb",
"nsis",
"msi",
"appimage"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
@@ -50,13 +59,19 @@
"icons/icon.icns",
"icons/icon.ico"
],
"resources": ["../../src/openhuman/agent/prompts"],
"externalBin": ["binaries/openhuman-core"],
"resources": [
"../../src/openhuman/agent/prompts"
],
"externalBin": [
"binaries/openhuman-core"
],
"createUpdaterArtifacts": false,
"macOS": {
"minimumSystemVersion": "10.15",
"entitlements": "entitlements.sidecar.plist",
"dmg": { "background": "./images/background-dmg.png" }
"dmg": {
"background": "./images/background-dmg.png"
}
}
},
"plugins": {
@@ -67,6 +82,12 @@
"https://github.com/tinyhumansai/openhuman/releases/latest/download/latest.json"
]
},
"deep-link": { "desktop": { "schemes": ["openhuman"] } }
"deep-link": {
"desktop": {
"schemes": [
"openhuman"
]
}
}
}
}