cbbf3cea41
package.json, Cargo.toml and tauri.conf.json all said 0.1.0 because three scaffolds said so and nothing ever changed them. The database is complete and the thing is in use, so 1.0.0, in all three plus both lockfiles. A changelog, starting now. It records that the working notes moved to the wiki and that this repository's history was not rewritten -- the CLAUDE.md was untracked, so there was never anything in the history to remove. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
45 lines
949 B
JSON
45 lines
949 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "KCD2 Overlay",
|
|
"version": "1.0.0",
|
|
"identifier": "sk.ecoposta.kcd2overlay",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "KCD2 Overlay",
|
|
"width": 920,
|
|
"height": 640,
|
|
"minWidth": 560,
|
|
"minHeight": 400,
|
|
"decorations": false,
|
|
"transparent": true,
|
|
"alwaysOnTop": true,
|
|
"skipTaskbar": true,
|
|
"visible": false,
|
|
"center": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
}
|