Добавление лого и изменение описания

This commit is contained in:
2026-01-01 19:30:35 +03:00
parent 2dceb75262
commit 01260d7c16
10 changed files with 31 additions and 53 deletions
+4 -4
View File
@@ -21,7 +21,7 @@ from utils.tools import (CONFIGS, DECOMPILED, MODIFIED, ORIGINAL, PATCHES,
console = Console()
app = typer.Typer(
name="anixarty-patcher",
name="anixarts-patcher",
help="Инструмент для модификации Anixarty APK",
add_completion=False,
)
@@ -62,7 +62,7 @@ def generate_report(
return info
lines = []
lines.append(f"Anixarty {meta.version_name} (build {meta.version_code})")
lines.append(f"Anixarts {meta.version_name} (build {meta.version_code})")
lines.append("")
lines.append("## 📦 Информация о сборке")
@@ -114,7 +114,7 @@ def generate_report(
lines.append("---")
lines.append("")
lines.append(
"*Собрано с помощью [anixarty-patcher](https://git.0x174.su/anixart-mod/patcher)*"
"*Собрано с помощью [anixarts-patcher](https://git.0x174.su/anixart-mod/patcher)*"
)
report_path.write_text("\n".join(lines), encoding="utf-8")
@@ -467,7 +467,7 @@ def config():
@handle_errors
def version():
"""Показать версию инструмента"""
console.print(f"[cyan]anixarty-patcher[/cyan] v{__version__}")
console.print(f"[cyan]anixarts-patcher[/cyan] v{__version__}")
if __name__ == "__main__":