From f437aba1fcceb105d4ee3c14f5549f230a0e7f44 Mon Sep 17 00:00:00 2001 From: ske087 Date: Sun, 13 Sep 2026 10:18:34 +0300 Subject: [PATCH] Stop tracking working_files/player_auth.json This file was still tracked after the previous commit: it is listed in .gitignore, and git add skips ignored paths, so `git add -A ` silently did nothing for it. Removing it from the index requires `git rm --cached`. It contains a live auth_code, player_id and server_url for a different player ("tv-terasa" / TV-acasa 1), so it must not be in the repository. The file is kept on disk; only the tracking is removed. The two other credential files (player_auth.json, src/player_auth.json) were already untracked. Note for anyone repeating this: these files are gitignored, so `git add` will never stage their removal. Use `git rm --cached `, and verify with `git ls-files | findstr player_auth` that nothing remains. --- working_files/player_auth.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 working_files/player_auth.json diff --git a/working_files/player_auth.json b/working_files/player_auth.json deleted file mode 100644 index 6ee814a..0000000 --- a/working_files/player_auth.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "hostname": "tv-terasa", - "auth_code": "iiSyZDLWGyqNIxeRt54XYREgvAio11RwwU1_oJev6WI", - "player_id": 1, - "player_name": "TV-acasa 1", - "playlist_id": 1, - "orientation": "Landscape", - "authenticated": true, - "server_url": "http://digi-signage.moto-adv.com" -} \ No newline at end of file