feat: integrate Bugtracker module, UpdateService enhancements & Token hierarchy

This commit is contained in:
Deploymentcenter Bot
2026-08-06 12:45:58 +02:00
parent 70b35f7b8b
commit d71f90cdfc
28 changed files with 3494 additions and 32 deletions
+5 -3
View File
@@ -17,7 +17,9 @@ IGNORE_PATTERNS = {
'scripts',
'.deploy_cache.json',
'Serverdaten.txt',
'Serverdaten.txt.bak'
'Serverdaten.txt.bak',
'bin',
'obj'
}
def load_config():
@@ -65,9 +67,9 @@ def should_ignore(rel_path):
parts = Path(rel_path).parts
if not parts:
return False
if parts[0] in IGNORE_PATTERNS:
return True
for part in parts:
if part in IGNORE_PATTERNS:
return True
if part == '.htaccess':
continue
if part.startswith('.'):