From ac0034fc510cdf621b40c6a9ca8f9c30e7a2a55c Mon Sep 17 00:00:00 2001 From: Jan Nedbal Date: Wed, 15 Apr 2026 12:22:30 +0200 Subject: [PATCH] gitignore: exclude runtime client data dropped into source tree When the launcher is run from its bin/ dir during local dev, CWD becomes the source tree and the orchestrator stages the client release into src/Metin2Launcher/{pack,bgm,mark,config,.updates,...}. None of that should ever land in git. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index df7b1b1..d1a6960 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,17 @@ obj/ *.suo .vs/ publish/ + +# Runtime client data accidentally left when launcher is run from its bin dir +# (CWD becomes the source tree). These should never be committed. +src/Metin2Launcher/.updates/ +src/Metin2Launcher/bgm/ +src/Metin2Launcher/config/ +src/Metin2Launcher/mark/ +src/Metin2Launcher/pack/ +src/Metin2Launcher/log/ +src/Metin2Launcher/Metin2.exe +src/Metin2Launcher/*.dll +src/Metin2Launcher/*.pyd +src/Metin2Launcher/python314* +src/Metin2Launcher/runtime-key.json