Исправление патчей на beta 9, исправление welcome, добавление компактного меню по умолчанию
Сборка мода / build (push) Successful in 1m12s
Сборка мода / build (push) Successful in 1m12s
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user