- Fixed critical bug where notes with empty category had malformed IDs (leading slash) - Added URL encoding for Czech and Unicode characters in WebDAV paths - Fixed filename sanitization to preserve Unicode characters (only remove filesystem-unsafe chars) - Updated note preview to show first non-empty line after title instead of repeating title - Adjusted default column widths for better proportions (increased window width to 1300px) - Protection mechanism now works correctly with proper note ID matching
39 lines
798 B
JSON
39 lines
798 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Nextcloud Notes",
|
|
"version": "0.2.2",
|
|
"identifier": "com.davidrelich.nextcloud-notes",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "npm run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Nextcloud Notes",
|
|
"width": 1300,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"devtools": 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"
|
|
]
|
|
}
|
|
}
|