Stirling-PDF/frontend/src-tauri/tauri.conf.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2025-06-05 14:56:16 +01:00
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Stirling-PDF",
2025-06-09 10:04:40 +01:00
"version": "2.0.0",
"identifier": "stirling.pdf.dev",
2025-06-05 14:56:16 +01:00
"build": {
2025-06-09 10:04:40 +01:00
"frontendDist": "../dist",
2025-06-05 14:56:16 +01:00
"devUrl": "http://localhost:5173",
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build"
},
"app": {
"windows": [
{
"title": "Stirling-PDF",
2025-07-08 14:45:14 +01:00
"width": 1024,
"height": 768,
2025-06-05 14:56:16 +01:00
"resizable": true,
"fullscreen": false
}
2025-07-01 14:22:19 +01:00
]
2025-06-05 14:56:16 +01:00
},
"bundle": {
"active": true,
2025-07-16 16:22:51 +01:00
"targets": ["deb", "rpm", "dmg", "msi"],
2025-06-05 14:56:16 +01:00
"icon": [
2025-07-08 14:45:14 +01:00
"icons/icon.png",
2025-06-05 14:56:16 +01:00
"icons/icon.icns",
2025-07-16 15:56:34 +01:00
"icons/icon.ico",
"icons/16x16.png",
"icons/32x32.png",
"icons/64x64.png",
"icons/128x128.png",
"icons/192x192.png"
2025-06-09 10:04:40 +01:00
],
"resources": [
"libs/*.jar",
"runtime/jre/**/*"
2025-07-04 14:33:59 +01:00
],
"fileAssociations": [
{
"ext": ["pdf"],
"name": "PDF Document",
"description": "Open PDF files with Stirling-PDF",
2025-07-15 15:58:45 +01:00
"role": "Editor",
"mimeType": "application/pdf"
2025-07-04 14:33:59 +01:00
}
2025-07-16 15:56:34 +01:00
],
"linux": {
"deb": {
2025-07-16 16:22:51 +01:00
"desktopTemplate": "stirling-pdf.desktop"
2025-07-16 15:56:34 +01:00
}
}
2025-06-09 10:04:40 +01:00
},
"plugins": {
"shell": {
"open": true
2025-07-04 14:33:59 +01:00
},
"fs": {
"requireLiteralLeadingDot": false
2025-06-09 10:04:40 +01:00
}
2025-06-05 14:56:16 +01:00
}
}