kunkun/apps/desktop/src-tauri/tauri.conf.json
Huakun a0bd2d8573
Feature: enable clipboard paste for windows and linux (#185)
* feat(shell): add hidden window style to PowerShell script execution

Modify PowerShell script execution to run with hidden window style in both TypeScript API and Rust plugin to prevent visible command windows

* feat(desktop): implement cross-platform paste functionality in clipboard extension

* feat(desktop): enhance hotkey functionality with registration and update methods

* fix(desktop): remove unnecessary border from command root styling

* feat(desktop): add cross-platform paste support for clipboard extension

- Import Tauri OS plugin to detect platform
- Implement platform-specific paste methods for macOS, Windows, and Linux
- Add error handling for unsupported platforms
- Center windows in Tauri configuration

* feat(desktop): extend global key handler to support Linux control key for settings navigation
2025-02-22 00:41:35 -05:00

79 lines
1.4 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "kunkun",
"version": "../package.json",
"identifier": "sh.kunkun.desktop",
"build": {
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:1420",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../build"
},
"app": {
"macOSPrivateApi": true,
"security": {
"csp": null
},
"windows": [
{
"hiddenTitle": true,
"url": "/app",
"title": "Kunkun",
"width": 800,
"visible": false,
"height": 600,
"decorations": true,
"center": true
},
{
"url": "/splashscreen",
"visible": true,
"label": "splashscreen",
"center": true
}
]
},
"bundle": {
"macOS": {
"minimumSystemVersion": "10.15"
},
"fileAssociations": [
{
"ext": ["kunkun"],
"mimeType": "text/plain",
"description": "Used to install Kunkun Extensions with a installer file",
"role": "Viewer"
}
],
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
},
"plugins": {
"fs": {
"requireLiteralLeadingDot": false
},
"deep-link": {
"desktop": {
"schemes": ["kunkun"]
}
},
"cli": {
"description": "Kunkun CLI",
"args": [
{
"short": "v",
"name": "verbose",
"description": "Verbosity level"
}
]
}
}
}