Files
netfelix-audio-fix/package.json
T
felixfoertsch 5d0af08b79
Build and Push Docker Image / build (push) Successful in 1m52s
remove review badges, add help page, auto-rename noop items
Three threads:

1. Drop the " Auto-approve" / " Needs decision" pills on PipelineCard
   and the "N auto · M need decisions" subtitle on ReviewColumn — noise
   for a workflow that wants to be unattended. Card amber tint stays as
   a softer cue. Remove the now-unused reviewManualCount field on the
   pipeline payload.

2. New /help route in the nav. Documents what netfelix actually does
   end-to-end, the folder/SxxExx/ID brackets we require, and that the
   codec/quality/audio brackets are *arr's job — we trigger their rename
   API instead of parsing them ourselves. Links to TRaSH guides.

3. Refactor triggerMovieRename / triggerSeriesRename to return a
   basename → new-basename map instead of one path. Add a batched
   triggerRenameFor in execute.ts that dedupes by movie and by series
   (one Sonarr call covers every episode of a series). Hook into
   processInbox: when an item becomes noop, fire a rename pass so
   lying filenames on already-clean files self-heal. Idempotent —
   *arr returns no work to do when names already match.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-22 08:14:10 +02:00

43 lines
1.1 KiB
JSON

{
"name": "netfelix-audio-fix",
"version": "2026.04.22.1",
"scripts": {
"dev:server": "NODE_ENV=development bun --hot server/index.tsx",
"dev:client": "vite",
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\"",
"build": "vite build",
"start": "bun server/index.tsx",
"lint": "biome check .",
"format": "biome format . --write",
"test": "bun test"
},
"dependencies": {
"@internationalized/date": "^3.12.0",
"@tanstack/react-form": "^1.28.3",
"@tanstack/react-router": "^1.163.3",
"clsx": "^2.1.1",
"hono": "^4",
"mqtt": "^5.15.1",
"react": "19",
"react-aria-components": "^1.16.0",
"react-dom": "19",
"ssh2": "^1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/router-plugin": "^1.163.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1",
"@vitejs/plugin-react-swc": "^4.2.3",
"bun-types": "latest",
"concurrently": "^9.2.1",
"tailwindcss": "^4.2.1",
"vite": "^7.3.1"
}
}