Files
openhuman/app/src-tauri/tauri.conf.json
T
Steven Enamakel 5d865fa4e2 Update version to 0.49.17 across multiple files
- Bumped the version of the "openhuman" package in Cargo.lock and Cargo.toml to 0.49.17.
- Updated the version in app/package.json and app/src-tauri/Cargo.toml to reflect the new release.
- Adjusted the version in app/src-tauri/tauri.conf.json for consistency across the application.
2026-03-29 22:39:48 -07:00

56 lines
1.5 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "OpenHuman",
"version": "0.49.17",
"identifier": "com.openhuman.app",
"build": {
"beforeDevCommand": "npm run core:stage && npm run dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "npm run build:app && npm run core:stage",
"frontendDist": "../dist"
},
"app": {
"windows": [
{
"label": "main",
"title": "OpenHuman",
"width": 800,
"height": 720,
"visible": false,
"decorations": true,
"resizable": true,
"center": true
}
],
"security": { "csp": null },
"macOSPrivateApi": true
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": ["../../src/openhuman/agent/prompts"],
"externalBin": ["binaries/openhuman"],
"createUpdaterArtifacts": true,
"macOS": {
"minimumSystemVersion": "10.15",
"dmg": { "background": "./images/background-dmg.png" }
}
},
"plugins": {
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDA1NkI1NEQzNjVDMjA0NDgKUldSSUJNSmwwMVJyQmJCTnQrQWxPSmhZQmVyWU1NMXdwRlRCSHR0ZEdlbkRncCtpQnhaZU5rUEQK",
"endpoints": [
"https://github.com/tinyhumansai/openhuman/releases/latest/download/latest.json"
]
},
"deep-link": { "desktop": { "schemes": ["openhuman"] } }
}
}