From 026339ecefc511ee4892501009dd8b215145ff15 Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Thu, 12 Feb 2026 15:42:47 +0000 Subject: [PATCH] chore: add .gitignore to exclude build artifacts and large files - Ignore dist/, build/, *.exe, *.pkg - Ignore Python cache files - Ignore IDE files (.vscode, .idea) - Ignore OS files (.DS_Store, Thumbs.db) - Keep icon_extractor.spec for CI/CD builds --- .gitignore | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 57 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3bbe7b6..6050fbd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,58 @@ +# Entropia Universe Icon Extractor - Git Ignore + +# Build artifacts +dist/ +build/ +*.exe +*.pkg +*.app + +# Python __pycache__/ -*.pyc -*.pyo +*.py[cod] +*$py.class +*.so +.Python +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +*.egg-info/ +dist/ +build/ + +# PyInstaller +# Keep the spec file for CI/CD builds +!icon_extractor.spec + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS files +.DS_Store +Thumbs.db +desktop.ini + +# Temporary files +*.tmp +*.temp +*.log + +# Game cache (if accidentally committed) +public_users_data/ +*.tga + +# Large binary files +*.zip +*.7z +*.tar.gz +*.rar + +# Don't commit built executables +EU-Icon-Extractor +EU-Icon-Extractor.exe