- Updated the app description in package.json and Cargo.toml to "Screenshots that organize themselves". - Refactored the Tauri backend to introduce a new command for handling folder selection and watching for PNG file changes. - Added utility functions for processing PNG files and managing the watcher state. - Improved the frontend by integrating an ImageViewer component and setting up event listeners for search input focus.
31 lines
730 B
JSON
31 lines
730 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Haystack",
|
|
"version": "0.1.0",
|
|
"identifier": "com.haystack.app",
|
|
"build": {
|
|
"beforeDevCommand": "bun run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "bun run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [],
|
|
"macOSPrivateApi": 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"
|
|
]
|
|
}
|
|
}
|