2026-02-14 18:20:07 +01:00
|
|
|
{
|
|
|
|
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
2026-04-12 01:35:34 +02:00
|
|
|
"productName": "Tolaria",
|
2026-02-14 18:20:07 +01:00
|
|
|
"version": "0.1.0",
|
2026-04-12 01:35:34 +02:00
|
|
|
"identifier": "club.refactoring.tolaria",
|
2026-02-14 18:20:07 +01:00
|
|
|
"build": {
|
|
|
|
|
"frontendDist": "../dist",
|
2026-03-02 23:20:49 +01:00
|
|
|
"devUrl": "http://localhost:5202",
|
2026-02-14 18:20:07 +01:00
|
|
|
"beforeDevCommand": "pnpm dev",
|
refactor: remove QMD semantic indexing — keep keyword search only
Remove the entire QMD search engine (semantic indexing, hybrid search,
vector embeddings) and replace with a simple walkdir-based keyword
search. QMD never worked reliably in production, added bundle bloat,
and showed "Index failed" in the status bar.
What changed:
- Rust: deleted indexing.rs, rewrote search.rs as pure keyword search
- Frontend: removed useIndexing hook, IndexingBadge, hybrid search
- Menu: removed "Reindex Vault" command from palette and menu bar
- Config: removed qmd from bundle resources and build script
- Deleted tools/qmd/ (QMD CLI tool, MCP server, tests)
- Updated docs (ARCHITECTURE, ABSTRACTIONS, GETTING-STARTED)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 16:18:05 +01:00
|
|
|
"beforeBuildCommand": "pnpm build && pnpm bundle-mcp"
|
2026-02-14 18:20:07 +01:00
|
|
|
},
|
|
|
|
|
"app": {
|
2026-02-15 10:00:29 +01:00
|
|
|
"withGlobalTauri": true,
|
2026-02-14 18:20:07 +01:00
|
|
|
"windows": [
|
|
|
|
|
{
|
2026-04-12 01:35:34 +02:00
|
|
|
"title": "Tolaria",
|
2026-02-14 18:20:07 +01:00
|
|
|
"width": 1400,
|
|
|
|
|
"height": 900,
|
2026-04-16 09:38:34 +02:00
|
|
|
"minWidth": 480,
|
2026-03-30 09:29:57 +02:00
|
|
|
"minHeight": 400,
|
2026-02-14 18:20:07 +01:00
|
|
|
"resizable": true,
|
2026-02-15 10:00:29 +01:00
|
|
|
"fullscreen": false,
|
2026-02-25 21:43:16 +01:00
|
|
|
"titleBarStyle": "Overlay",
|
2026-05-02 00:02:48 +02:00
|
|
|
"trafficLightPosition": {
|
|
|
|
|
"x": 18,
|
|
|
|
|
"y": 24
|
|
|
|
|
},
|
2026-02-25 21:43:16 +01:00
|
|
|
"hiddenTitle": true,
|
2026-03-31 10:51:32 +02:00
|
|
|
"backgroundColor": "#F7F6F3",
|
2026-04-26 13:52:42 +02:00
|
|
|
"dragDropEnabled": true
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"security": {
|
2026-04-22 19:18:52 +02:00
|
|
|
"csp": {
|
|
|
|
|
"default-src": "'self' ipc: http://ipc.localhost",
|
2026-04-22 22:24:45 +02:00
|
|
|
"script-src": "'self' https://us.i.posthog.com https://eu.i.posthog.com https://us-assets.i.posthog.com https://eu-assets.i.posthog.com",
|
2026-04-22 19:18:52 +02:00
|
|
|
"connect-src": "'self' ipc: http://ipc.localhost ws://localhost:9710 ws://127.0.0.1:9710 ws://localhost:9711 ws://127.0.0.1:9711 https:",
|
|
|
|
|
"img-src": "'self' asset: http://asset.localhost data: blob: https:",
|
2026-04-25 16:06:17 +02:00
|
|
|
"style-src": "'self' 'unsafe-inline' https://fonts.googleapis.com",
|
2026-04-26 11:31:41 +02:00
|
|
|
"style-src-elem": "'self' 'nonce-tolaria-runtime-style' https://fonts.googleapis.com",
|
|
|
|
|
"style-src-attr": "'unsafe-inline'",
|
2026-04-22 22:24:45 +02:00
|
|
|
"font-src": "'self' data: https://fonts.gstatic.com",
|
2026-04-22 19:18:52 +02:00
|
|
|
"media-src": "'self' data: blob: https:",
|
2026-04-29 13:32:29 +02:00
|
|
|
"object-src": "'self' asset: http://asset.localhost"
|
2026-04-22 19:18:52 +02:00
|
|
|
},
|
2026-02-21 13:06:04 +01:00
|
|
|
"assetProtocol": {
|
|
|
|
|
"enable": true,
|
2026-04-22 19:18:52 +02:00
|
|
|
"scope": []
|
2026-02-21 13:06:04 +01:00
|
|
|
}
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"bundle": {
|
|
|
|
|
"active": true,
|
|
|
|
|
"targets": "all",
|
2026-02-22 12:10:24 +01:00
|
|
|
"createUpdaterArtifacts": true,
|
2026-04-24 18:45:17 +02:00
|
|
|
"windows": {
|
|
|
|
|
"webviewInstallMode": {
|
|
|
|
|
"type": "downloadBootstrapper"
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-03-02 23:31:04 +01:00
|
|
|
"resources": {
|
refactor: remove QMD semantic indexing — keep keyword search only
Remove the entire QMD search engine (semantic indexing, hybrid search,
vector embeddings) and replace with a simple walkdir-based keyword
search. QMD never worked reliably in production, added bundle bloat,
and showed "Index failed" in the status bar.
What changed:
- Rust: deleted indexing.rs, rewrote search.rs as pure keyword search
- Frontend: removed useIndexing hook, IndexingBadge, hybrid search
- Menu: removed "Reindex Vault" command from palette and menu bar
- Config: removed qmd from bundle resources and build script
- Deleted tools/qmd/ (QMD CLI tool, MCP server, tests)
- Updated docs (ARCHITECTURE, ABSTRACTIONS, GETTING-STARTED)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 16:18:05 +01:00
|
|
|
"resources/mcp-server/**/*": "mcp-server/"
|
2026-03-02 23:31:04 +01:00
|
|
|
},
|
2026-02-14 18:20:07 +01:00
|
|
|
"icon": [
|
|
|
|
|
"icons/32x32.png",
|
|
|
|
|
"icons/128x128.png",
|
|
|
|
|
"icons/128x128@2x.png",
|
|
|
|
|
"icons/icon.icns",
|
|
|
|
|
"icons/icon.ico"
|
2026-02-28 12:03:02 +01:00
|
|
|
]
|
2026-02-22 12:10:24 +01:00
|
|
|
},
|
|
|
|
|
"plugins": {
|
|
|
|
|
"updater": {
|
|
|
|
|
"endpoints": [
|
2026-04-12 22:14:53 +02:00
|
|
|
"https://refactoringhq.github.io/tolaria/stable/latest.json"
|
2026-02-22 12:10:24 +01:00
|
|
|
],
|
2026-04-24 18:45:17 +02:00
|
|
|
"windows": {
|
|
|
|
|
"installMode": "passive"
|
|
|
|
|
},
|
2026-03-09 11:55:22 +01:00
|
|
|
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEE4NkQ5MDI3REVCRkFGNUMKUldSY3I3L2VKNUJ0cU5JRlRZZlp3NGhnU3ZwbkVKeGVvREpmb2sxRVJndHFpVFZPNlArbEE5R1IK"
|
2026-02-22 12:10:24 +01:00
|
|
|
}
|
2026-02-14 18:20:07 +01:00
|
|
|
}
|
2026-04-12 01:35:34 +02:00
|
|
|
}
|