Some checks failed
check / check (push) Failing after 52s
M0–M5 ur doc/plan.md: layer-shell-dock per skärm med transparent #222222-ö, pins + körande appar (gruppering, badges, indikatorer), klick/skroll/mittklick, konfigurerbar högerklicksmeny, tomyta-meny, settings-GUI som redigerar JSON-configen live, filewatcher, Wayfire-IPC-stubbar (scale, flytta-till-skärm), CI + release-flöde. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "cargo build --release && mkdir -p build && cp target/release/waydock build/waydock",
|
|
"group": { "kind": "build", "isDefault": true },
|
|
"problemMatcher": ["$rustc"]
|
|
},
|
|
{
|
|
"label": "build-debug",
|
|
"type": "shell",
|
|
"command": "cargo build",
|
|
"problemMatcher": ["$rustc"]
|
|
},
|
|
{
|
|
"label": "run (debug-logg)",
|
|
"type": "shell",
|
|
"command": "WAYDOCK_LOG=debug cargo run",
|
|
"problemMatcher": ["$rustc"]
|
|
},
|
|
{
|
|
"label": "test",
|
|
"type": "shell",
|
|
"command": "cargo test",
|
|
"group": { "kind": "test", "isDefault": true },
|
|
"problemMatcher": ["$rustc"]
|
|
},
|
|
{
|
|
"label": "lint (clippy)",
|
|
"type": "shell",
|
|
"command": "cargo clippy -- -D warnings",
|
|
"problemMatcher": ["$rustc"]
|
|
}
|
|
]
|
|
}
|