Files
ICCery/src-tauri/tauri.conf.json
T
gronod 24318bca58 feat(cal): printer linearization via printcal / applycal (#224)
Add an optional Stage 0 calibration dashboard so CMYK / RIP workflows can
linearize and set ink limits before a full profile. CAL_ artefacts keep
the 5-stage wizard unchanged when calibration is skipped.

printtarg receives -K only for profiling layouts; colprof embeds curves
with applycal. Existing .cal files require Overwrite / Rename / Cancel.
Bump version to v0.8.5.
2026-09-07 16:59:35 +00:00

78 lines
1.6 KiB
JSON

{
"$schema": "https://schema.tauri.app/config/2",
"productName": "ICCery",
"version": "0.8.5",
"identifier": "com.gronod.iccery",
"build": {
"frontendDist": "../src"
},
"app": {
"withGlobalTauri": true,
"windows": [
{
"label": "main",
"title": "ICCery",
"width": 1280,
"height": 800,
"minWidth": 1100,
"minHeight": 700,
"visible": false,
"backgroundColor": "#1A1A22"
}
],
"security": {
"csp": null
}
},
"bundle": {
"active": true,
"targets": "all",
"icon": [
"icons/32x32.png",
"icons/64x64.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"argyll/**/*"
],
"macOS": {
"minimumSystemVersion": "12.0",
"dmg": {
"background": "icons/dmg-background.png",
"windowSize": {
"width": 660,
"height": 400
},
"appPosition": {
"x": 180,
"y": 220
},
"applicationFolderPosition": {
"x": 480,
"y": 220
}
}
},
"windows": {
"signCommand": "sign.cmd %1",
"webviewInstallMode": {
"type": "skip"
},
"wix": {
"bannerPath": "icons/wix-banner.bmp",
"dialogImagePath": "icons/wix-dialog.bmp"
},
"nsis": {
"installMode": "both",
"installerIcon": "icons/icon.ico",
"headerImage": "icons/nsis-header.bmp",
"sidebarImage": "icons/nsis-sidebar.bmp",
"installerHooks": "windows/hooks.nsh"
}
}
}
}