From 9f6b8a05544062ce5069979a17808e7dad114a80 Mon Sep 17 00:00:00 2001 From: Leonid Pershin Date: Mon, 15 Jun 2026 00:24:11 +0300 Subject: [PATCH] Stop tracking runtime settings.json (gitignore it) settings.json is written by the game at runtime in the working dir and was accidentally added; untrack it and gitignore /settings.json and /Saves/ (the local file is kept so the game still reads it). .vscode/settings.json is unaffected. Co-Authored-By: Claude Opus 4.8 --- .gitignore | 5 ++++- settings.json | 10 ---------- 2 files changed, 4 insertions(+), 11 deletions(-) delete mode 100644 settings.json diff --git a/.gitignore b/.gitignore index f31942c..f107089 100644 --- a/.gitignore +++ b/.gitignore @@ -417,4 +417,7 @@ FodyWeavers.xsd # LittleSim Cache/ - +# Рантайм-файлы (пишутся игрой в рабочем каталоге) — не версионируем +/settings.json +/Saves/ + diff --git a/settings.json b/settings.json deleted file mode 100644 index edf9814..0000000 --- a/settings.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Language": "ru", - "Fullscreen": false, - "VSync": true, - "Width": 1280, - "Height": 720, - "Volume": 1, - "UiScale": 1, - "DeveloperMode": true -} \ No newline at end of file