добавление вспомогательных функций, исправление добавления всплывающего окна первого запуска

This commit is contained in:
2025-09-01 10:14:51 +03:00
parent f24cce328c
commit aff292fd8b
17 changed files with 159 additions and 40 deletions
+16
View File
@@ -0,0 +1,16 @@
"""Change application icon"""
priority = 0
from tqdm import tqdm
import struct
def float_to_hex(f):
b = struct.pack(">f", f)
return b.hex()
def apply(config: dict) -> bool:
assert float_to_hex(1.5) == "0x3fc00000"
return False