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:
+31
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user