Renamed emulatoren to emulation

This commit is contained in:
2026-02-06 16:00:46 +01:00
parent fde747f8f3
commit 88c581d816
7 changed files with 19 additions and 19 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""
Generate RELEASE_X.ini files by fetching latest GitHub release tags
for sysmodules, overlays, apps, and emulatoren.
for sysmodules, overlays, apps, and emulation.
"""
import re
@@ -102,7 +102,7 @@ def generate_release_ini(category: str, entries: List[Dict[str, str]], output_pa
section_name = 'Versions'
elif category == 'apps':
section_name = 'Versions'
elif category == 'emulatoren':
elif category == 'emulation':
section_name = 'Versions'
else:
section_name = 'Release Info'
@@ -207,13 +207,13 @@ def main():
result = generate_release_ini('apps', entries, output_path)
all_results.append(result)
# Process emulatoren
emulatoren_path = include_path / "emulatoren" / "emulatoren.ini"
if emulatoren_path.exists():
entries = parse_ini_file(emulatoren_path)
# Process emulation
emulation_path = include_path / "emulation" / "emulation.ini"
if emulation_path.exists():
entries = parse_ini_file(emulation_path)
if entries:
output_path = include_path / "emulatoren" / "RELEASE_EM.ini"
result = generate_release_ini('emulatoren', entries, output_path)
output_path = include_path / "emulation" / "RELEASE_EM.ini"
result = generate_release_ini('emulation', entries, output_path)
all_results.append(result)
# Print final monitoring summary