mirror of
https://github.com/daavfx/quantum_bt_daavfx.git
synced 2026-08-08 08:07:44 +00:00
83037a3fdf
- Added indicatorService.ts with Web Worker pool for background calculations - Added dataService.ts for Rust backend bridge - Added replayService.ts for market replay functionality - Added ReplayControls.tsx component - Added src/types/indicators.ts with 8 indicator definitions - Added Rust replay.rs with async commands - Updated lib.rs with replay state management - Fixed Tauri imports from @tauri-apps/api/tauri to @tauri-apps/api/core - Updated Chart.tsx integration with replay controls
38 lines
779 B
JSON
38 lines
779 B
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
|
"productName": "quantum-bt-daavfx",
|
|
"version": "0.1.0",
|
|
"identifier": "com.tauri.dev",
|
|
"build": {
|
|
"frontendDist": "../dist",
|
|
"devUrl": "http://localhost:1431",
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build"
|
|
},
|
|
"app": {
|
|
"windows": [
|
|
{
|
|
"title": "Quantum BT Daavfx",
|
|
"width": 800,
|
|
"height": 600,
|
|
"resizable": true,
|
|
"fullscreen": 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"
|
|
]
|
|
}
|
|
}
|