Skip to content
Merged
534 changes: 485 additions & 49 deletions src/history_gui.py

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/mp_plugins/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ class GameEndEvent(BaseEvent):
is_fair: int = 0
op: int = 0
isl: int = 0
pluck: float = 0
raw_data: str = ''
3 changes: 3 additions & 0 deletions src/plugins/History/History.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def initialize(self) -> None:
is_fair INTEGER,
op INTEGER,
isl INTEGER,
pluck REAL,
raw_data BLOB
);
"""
Expand Down Expand Up @@ -150,6 +151,7 @@ def on_game_end(self, event: GameEndEvent):
is_fair,
op,
isl,
pluck,
raw_data
)
values
Expand Down Expand Up @@ -191,6 +193,7 @@ def on_game_end(self, event: GameEndEvent):
:is_fair,
:op,
:isl,
:pluck,
:raw_data
)
""",
Expand Down
292 changes: 200 additions & 92 deletions src/ui/de_DE.ts

Large diffs are not rendered by default.

Loading