From ceedf7e60d31834df5479b5226d647364861dc92 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 20 Aug 2026 16:18:10 -0400 Subject: [PATCH] chore(flights): drop the committed debug images debug_composite.png and debug_cropped.png are output, not assets. The map composer writes them with Path("debug_composite.png") -- a relative path, so on an install they land in the process working directory, which is the core checkout. A running rig accordingly carries two untracked files in its LEDMatrix repo, and copies of them were committed here as well. Untracked files in a checkout are harmless until upstream adds a file at the same path, at which point the pull refuses. There is no reason to leave that waiting. Removed and added to .gitignore so they cannot come back. #305 is what stops them being written at all unless debug logging is on, and puts them under the tile cache directory rather than the CWD; this only clears what was already committed. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01STMbQE4YctTacQXfbYqKuW --- .gitignore | 5 +++++ plugins.json | 2 +- plugins/ledmatrix-flights/debug_composite.png | Bin 27124 -> 0 bytes plugins/ledmatrix-flights/debug_cropped.png | Bin 156 -> 0 bytes plugins/ledmatrix-flights/manifest.json | 2 +- 5 files changed, 7 insertions(+), 2 deletions(-) delete mode 100644 plugins/ledmatrix-flights/debug_composite.png delete mode 100644 plugins/ledmatrix-flights/debug_cropped.png diff --git a/.gitignore b/.gitignore index 973c7a2a..64aa9684 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,8 @@ plugins/*/assets/**/*_backup/ # ledmatrix-music/emulator_config.json is committed on purpose and stays # tracked -- .gitignore does not apply to files already in the index. emulator_config.json + +# Debug output the flights map composer writes when debug logging is on. +# It lands in the process CWD, which on an install is the core checkout. +debug_composite.png +debug_cropped.png diff --git a/plugins.json b/plugins.json index fe71fed6..0873cd64 100644 --- a/plugins.json +++ b/plugins.json @@ -439,7 +439,7 @@ "last_updated": "2026-08-03", "verified": true, "screenshot": "", - "latest_version": "1.12.13" + "latest_version": "1.12.17" }, { "id": "march-madness", diff --git a/plugins/ledmatrix-flights/debug_composite.png b/plugins/ledmatrix-flights/debug_composite.png deleted file mode 100644 index c899e0e35cb6d105866e189760832840e62dc87a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 27124 zcmeI4y)Q#i7{*UONVS@XFp%8jCRPKwinLOpBCUvB2Z?ku63bPSt%FheAE-$POGg_6 z0}F$g8iS#OL7n&QIs6auJHzeC?MKolzvsE{bJO&Ay}X=FPo|AA+0sgJ!??JhoV~>S{(N}EZS&2T ze3q=+TwWjTVSg~?w&9)e?|PdE-N|S^k#yU}PULpxlMn4nfur-#%|L8wPUps$y2g8 zDJmd{r~nMA0x$prQE3^#2p9n)U<7r6JuoYZ5~QN?01UtoDGBxf48Q;k7(rZM7newt jfm8&BNJ+2FSZ!bFXGAIZfFnCb; z>ce_A$=VHC5u0qw!{#hzuDi~#hB1P916u;`0jUO4hHQpwqzTwE`ZFxC`C5<%w2r~k L)z4*}Q$iB}Ls%{5 diff --git a/plugins/ledmatrix-flights/manifest.json b/plugins/ledmatrix-flights/manifest.json index a293588b..cc586c16 100644 --- a/plugins/ledmatrix-flights/manifest.json +++ b/plugins/ledmatrix-flights/manifest.json @@ -1,7 +1,7 @@ { "id": "ledmatrix-flights", "name": "Flight Tracker", - "version": "1.12.13", + "version": "1.12.17", "description": "Real-time aircraft tracking with ADS-B/FlightRadar24/OpenSky/adsb.fi/adsb.lol data, map backgrounds, area mode, flight tracking, anchor airport, flight records, and optional airport weather (METAR/TAF/PIREP/SIGMET via the free NOAA Aviation Weather Center API)", "author": "ChuckBuilds", "entry_point": "manager.py",