Update theming, rebuild app from existing angular project

This commit is contained in:
Michael Pivato
2024-06-07 22:06:02 +09:30
parent 922d74e007
commit 2172b81443
26 changed files with 468 additions and 233 deletions

View File

@@ -1,9 +1,10 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeDevCommand": "bun run start",
"beforeBuildCommand": "bun run build",
"devPath": "http://localhost:1420",
"distDir": "../dist/proto-creator/browser"
"devPath": "http://localhost:4200",
"distDir": "../dist"
},
"package": {
"productName": "Piv's Buf",
@@ -12,53 +13,60 @@
"tauri": {
"allowlist": {
"all": false,
"dialog": {
"all": false,
"ask": true,
"confirm": true,
"message": true,
"open": true,
"save": false
},
"fs": {
"all": false,
"copyFile": false,
"createDir": true,
"exists": false,
"readDir": true,
"readFile": true,
"removeDir": true,
"removeFile": true,
"renameFile": false,
"scope": [],
"writeFile": true
"all": true
},
"shell": {
"all": false,
"open": true
"dialog": {
"all": true
}
},
"windows": [
{
"title": "Piv's Buf",
"width": 800,
"height": 600
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "dev.michaelpivato",
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
],
"identifier": "dev.michaelpivato",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Piv's Buf",
"width": 800
}
]
}
}