mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* Migrate tauri app to v2 * Move flake files to sub directory * Remove unused plugins * Backport some of the tauri code * Implement async node graph execution Only move node runtime to native code * Always use gpu feature for tauri * Fix serialization * Add logging filters * Enable native window rendering with vello * Cleanup * Remove unused editor instance * Remove changes from vite config * Remove warnings * Remove unused files * Fix most tests * Cleanup * Apply frontend lint * Readd flake.nix * Fix tests using --all-features * Code review * Enable all backends * Fix monitor node downcast types * Change debug log to a warning * Disable shader passthrough * Cleanup unused imports * Remove warning * Update project setup instructions --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
|
"build": {
|
|
"beforeBuildCommand": "npm run tauri:build",
|
|
"beforeDevCommand": "npm run tauri:dev",
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://127.0.0.1:8080/"
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"category": "DeveloperTool",
|
|
"copyright": "",
|
|
"targets": "all",
|
|
"externalBin": [],
|
|
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"],
|
|
"windows": {
|
|
"certificateThumbprint": null,
|
|
"digestAlgorithm": "sha256",
|
|
"timestampUrl": ""
|
|
},
|
|
"longDescription": "",
|
|
"macOS": {
|
|
"entitlements": null,
|
|
"exceptionDomain": "",
|
|
"frameworks": [],
|
|
"providerShortName": null,
|
|
"signingIdentity": null
|
|
},
|
|
"resources": [],
|
|
"shortDescription": "",
|
|
"linux": {
|
|
"deb": {
|
|
"depends": ["librustc_codegen_spirv"]
|
|
}
|
|
}
|
|
},
|
|
"productName": "Graphite",
|
|
"mainBinaryName": "Graphite",
|
|
"version": "0.1.0",
|
|
"identifier": "rs.graphite.editor",
|
|
"plugins": {},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"decorations": false,
|
|
"fullscreen": false,
|
|
"height": 1080,
|
|
"resizable": true,
|
|
"title": "Graphite",
|
|
"width": 1920,
|
|
"useHttpsScheme": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
}
|
|
}
|