Hearthstone deck tracker for Linux, first public version

Reads the game's own Power.log: no screen capture, no image
recognition, no memory reading.

- deck tracking (remaining cards, draw chance, played cards fade in place)
- opponent panel (revealed cards, hand and deck counts)
- decks read from the game's offline cache, matched to the match
- card art in rows, full card on hover
- overlay and window modes, adjustable transparency, tray icon
- English and Turkish interface
- consistency tests over a real log corpus, cross-checked against Zone.log
This commit is contained in:
yusufipk
2026-07-27 22:31:13 +07:00
commit c2a5a2d4d2
41 changed files with 4521 additions and 0 deletions
Executable
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
# deste'yi kendi dizininden başlatır. Masaüstü kısayolu bunu çağırır.
set -euo pipefail
cd "$(dirname "$(readlink -f "$0")")"
exec python3 main.py "$@"