Исправление патчей на beta 9, исправление welcome, добавление компактного меню по умолчанию
Сборка мода / build (push) Successful in 1m12s

This commit is contained in:
2026-01-01 18:32:53 +03:00
parent 70337ee3ec
commit 2dceb75262
8 changed files with 117 additions and 30 deletions
+10
View File
@@ -64,6 +64,16 @@ def find_and_replace_smali_line(
return lines
def find_smali_line(
lines: list[str], search: str
) -> list[int]:
result = []
for index, line in enumerate(lines):
if line.find(search) >= 0:
result.append(index)
return result
def float_to_hex(f):
b = struct.pack(">f", f)
return b.hex()