Scans all date values in imported CSVs to determine whether the file uses DD/MM/YYYY or MM/DD/YYYY format. When the format is ambiguous (all day and month values are <= 12), shows an inline dropdown for the user to choose. Bump version to 1.0.2.
64 lines
1.3 KiB
JSON
64 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "ZeroClock",
|
|
"version": "1.0.2",
|
|
"identifier": "com.localtimetracker.app",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "ZeroClock",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"decorations": false,
|
|
"transparent": false,
|
|
"resizable": true
|
|
},
|
|
{
|
|
"label": "mini-timer",
|
|
"url": "mini-timer.html",
|
|
"title": "Timer",
|
|
"width": 300,
|
|
"height": 80,
|
|
"decorations": false,
|
|
"transparent": false,
|
|
"resizable": false,
|
|
"alwaysOnTop": true,
|
|
"skipTaskbar": true,
|
|
"visible": false
|
|
}
|
|
],
|
|
"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"
|
|
],
|
|
"windows": {
|
|
"webviewInstallMode": {
|
|
"type": "embedBootstrapper"
|
|
}
|
|
}
|
|
},
|
|
"plugins": {
|
|
"shell": {
|
|
"open": true
|
|
}
|
|
}
|
|
}
|