add CHANGELOG, icon_full, update gitignore

This commit is contained in:
2026-05-22 18:42:25 +02:00
parent 408f36135d
commit c474b82bf0
7 changed files with 158 additions and 125 deletions
+2 -2
View File
@@ -120,7 +120,7 @@ def analyze_fill_packet(data, fill_num):
as_uint32 = struct.unpack_from("<I", data, off)[0]
as_int32 = struct.unpack_from("<i", data, off)[0]
as_float32 = struct.unpack_from("<f", data, off)[0]
as_ascii = data[off:off+4].decode("ascii", errors=".")
as_ascii = data[off:off+4].decode("ascii", errors="replace")
print(f" [{off:3d}] uint32={as_uint32:10d} int32={as_int32:10d} float32={as_float32:12.4f} ascii='{as_ascii}'")
# Zone 128-160 analysieren (zwischen BuySell und TradeID)
@@ -130,7 +130,7 @@ def analyze_fill_packet(data, fill_num):
as_uint32 = struct.unpack_from("<I", data, off)[0]
as_int32 = struct.unpack_from("<i", data, off)[0]
as_float32 = struct.unpack_from("<f", data, off)[0]
as_ascii = data[off:off+4].decode("ascii", errors=".")
as_ascii = data[off:off+4].decode("ascii", errors="replace")
label = ""
if off == 128: label = " ← BuySell (bestätigt)"
if off == 144: label = " ← DateTime (bestätigt)"