69e53ed62a
Phase 1 of the 0.1.0 release prep: - LICENSE (MIT) plus license fields in Cargo.toml, package.json, and bundle config - tauri.conf.json: publisher/copyright/descriptions/homepage so the NSIS installer no longer derives 'jezz' from the identifier as manufacturer - version: null in tauri.conf.json — Cargo.toml is now the version source - bundle.targets narrowed from 'all' to nsis (updater-friendly, faster builds) - track pnpm-workspace.yaml (esbuild build-script approval, needed by CI)
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Phokus",
|
|
"version": null,
|
|
"identifier": "wtf.jezz.phokus",
|
|
"build": {
|
|
"beforeDevCommand": "pnpm dev:vite",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "pnpm build:vite",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Phokus",
|
|
"width": 1280,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"decorations": false,
|
|
"shadow": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null,
|
|
"assetProtocol": {
|
|
"enable": true,
|
|
"scope": [
|
|
"**"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["nsis"],
|
|
"publisher": "JezzWTF",
|
|
"license": "MIT",
|
|
"copyright": "Copyright © 2026 JezzWTF",
|
|
"shortDescription": "Local-first desktop media library",
|
|
"longDescription": "A local-first desktop media library for browsing, filtering, and curating image and video folders, with AI tagging, semantic search, and duplicate detection — all processed on-device.",
|
|
"homepage": "https://git.jezz.wtf/jezzwtf/phokus",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
}
|
|
} |