Update project configuration files and improve save menu functionality. Added editorconfig settings for various file types, enhanced .gitattributes for text and binary file handling, expanded .gitignore for build and local settings, and modified save_menu.gd to maintain focus on UI elements after refresh.

This commit is contained in:
Leonid Pershin
2026-08-10 21:03:50 +03:00
parent f16f60445c
commit adfbbbcec3
6 changed files with 280 additions and 7 deletions
+31 -1
View File
@@ -1,2 +1,32 @@
# Normalize EOL for all files that Git considers text files.
# Нормализуем переводы строк во всех текстовых файлах.
* text=auto eol=lf
# Текстовые форматы Godot — держим явно, чтобы Git не гадал.
*.gd text eol=lf
*.gdshader text eol=lf
*.tscn text eol=lf
*.tres text eol=lf
*.godot text eol=lf
*.cfg text eol=lf
*.import text eol=lf
*.uid text eol=lf
*.svg text eol=lf
# Бинарные ассеты: не нормализовать и не пытаться сливать построчно.
*.png binary
*.jpg binary
*.jpeg binary
*.webp binary
*.ogg binary
*.wav binary
*.mp3 binary
*.ttf binary
*.otf binary
*.res binary
*.scn binary
*.ctex binary
*.glb binary
*.blend binary
# Плагины — не наши исходники, не учитывать в статистике языков GitHub.
addons/** linguist-vendored