Remove tracked binary files and add aggressive Copilot exclusions

- git rm 146 tracked PNG images from praca_magisterska_video/images/
- git rm 1 tracked .apkg from anki_decks/warsaw_districts/
- Add *.apkg and praca_magisterska_video/images/ to .gitignore
- Update .copilotignore with ** recursive patterns for all binary types
- Add files.exclude and search.exclude in .vscode/settings.json
- All binary files preserved in ../testsAndMisc_binaries/
This commit is contained in:
Krzysztof kuhy Rudnicki 2026-03-25 20:59:47 +01:00
parent 2b07333b60
commit c444f0451a
150 changed files with 112 additions and 27 deletions

View File

@ -1,29 +1,34 @@
# Binary / image files
*.apkg
*.png
*.jpg
*.jpeg
*.gif
*.webp
*.svg
*.ico
*.bmp
*.pdf
*.zip
*.tar.gz
*.tgz
*.bin
*.exe
*.so
*.o
*.a
# Build outputs
pomodoro_app/build/
# Generated images
**/generated_images_*/
**/preview_images/
# Binary / image files (** prefix for recursive matching)
**/*.apkg
**/*.png
**/*.jpg
**/*.jpeg
**/*.gif
**/*.webp
**/*.svg
**/*.ico
**/*.bmp
**/*.pdf
**/*.zip
**/*.tar.gz
**/*.tgz
**/*.bin
**/*.exe
**/*.so
**/*.o
**/*.a
**/*.pyc
**/*.pyo
**/*.class
**/*.wav
**/*.mp3
**/*.mp4
**/*.avi
**/*.ttf
**/*.woff
**/*.woff2
**/*.eot
**/*.flat
# Virtual environments
.venv/
@ -31,6 +36,41 @@ pomodoro_app/build/
# Node modules
node_modules/
**/node_modules/
# Caches
.ruff_cache/
.mypy_cache/
__pycache__/
**/__pycache__/
# Build outputs
pomodoro_app/build/
sonic_pi/build/
CPP/mini_browser/build/
# C random JPG images (46k+ files)
C/misc/randomJPG/
# Generated / preview images
**/generated_images_*/
**/preview_images/
# Anki decks (2GB+ with images and .venvs)
python_pkg/anki_decks/
# Image-heavy directories
python_pkg/articles/uploads/
python_pkg/praca_magisterska_video/images/
python_pkg/download_cats/http_cat_cache/
python_pkg/praca_magisterska_video/
# Files/dirs with many embedded image references
python_pkg/praca_magisterska_video/
python_pkg/cinema_planner/pasted_content.txt
# Downloaded image caches
python_pkg/download_cats/http_cat_cache/
# C build artifacts
**/*.out

4
.gitignore vendored
View File

@ -323,3 +323,7 @@ phone_focus_mode/config_secrets.sh
# Generated output files
out.txt
cinema_plan_*.txt
# Binary images moved to external storage (testsAndMisc_binaries/)
python_pkg/praca_magisterska_video/images/
*.apkg

43
.vscode/settings.json vendored
View File

@ -3,5 +3,46 @@
"*.py": "python",
"stdio.h": "c"
},
"dart.flutterSdkPath": ".fvm/versions/stable"
"dart.flutterSdkPath": ".fvm/versions/stable",
"files.exclude": {
"**/*.png": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.gif": true,
"**/*.webp": true,
"**/*.svg": true,
"**/*.ico": true,
"**/*.bmp": true,
"**/*.apkg": true,
"**/*.pdf": true,
"**/*.pyc": true,
"**/__pycache__": true,
".venv": true,
"**/.venv": true,
".ruff_cache": true,
".mypy_cache": true,
"C/misc/randomJPG": true,
"pomodoro_app/build": true,
"sonic_pi/build": true,
"CPP/mini_browser/build": true,
"python_pkg/anki_decks/**/preview_images": true,
"python_pkg/download_cats/http_cat_cache": true,
"python_pkg/articles/uploads": true,
"python_pkg/praca_magisterska_video/images": true,
"**/generated_images_*": true
},
"search.exclude": {
"**/*.zip": true,
"**/*.so": true,
"**/*.o": true,
"**/*.flat": true,
"**/*.wav": true,
"**/*.ttf": true,
"**/*.class": true,
"**/node_modules": true,
"python_pkg/anki_decks": true,
"python_pkg/praca_magisterska_video": true,
"python_pkg/articles/uploads": true,
"python_pkg/download_cats/http_cat_cache": true
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 176 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 161 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 442 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 386 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 583 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 316 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 164 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 335 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 140 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 217 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 175 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 330 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 177 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 324 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 229 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 251 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 307 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 418 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 239 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 385 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 192 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 173 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 184 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 189 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 438 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 263 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 351 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 316 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 223 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 211 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 226 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 289 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 253 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 320 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 319 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 422 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 490 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 303 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 188 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 251 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 229 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 125 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

Some files were not shown because too many files have changed in this diff Show More