Bump version 0.7.10 -> 0.7.11 across package.json, Cargo.toml, tauri.conf.json, www landing page, and all version tests. Point README download tables at the Gitea release (git.ranio.xyz) now that releases build there instead of GitHub.
45 lines
970 B
JSON
45 lines
970 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "Gridline",
|
|
"version": "0.7.11",
|
|
"identifier": "com.adrianbonpin.gridline",
|
|
"build": {
|
|
"beforeDevCommand": "bun run dev",
|
|
"devUrl": "http://localhost:1420",
|
|
"beforeBuildCommand": "bun run build",
|
|
"frontendDist": "../dist"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Gridline",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"backgroundColor": "#0A0A0B",
|
|
"titleBarStyle": "Overlay"
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"resources": ["resources/pg_tools/*", "resources/mysql_tools/*"],
|
|
"macOS": {
|
|
"signingIdentity": "-",
|
|
"hardenedRuntime": false
|
|
},
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"plugins": {}
|
|
}
|