Skip to content

Commit 60768ee

Browse files
committed
Update to Version 2.5 Bloodsport
1 parent effa81f commit 60768ee

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

release_notes.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,13 @@
44
1-21-2022 Version 2.4
55

66
- Updated code so that it supports Windows 11 wireless profile names. The registry key was called "Channel Hints" and now its called "Band Channel Hints". Now the software will accept either of these names.
7-
- Change color scheme from "TanBlue" to "Kayak" so you can quickly visually identify if someone is running an old verion.
7+
- Change color scheme from "TanBlue" to "Kayak" so you can quickly visually identify if someone is running an old verion.
8+
9+
4-13-2023 Version 2.5 - Bloodsport
10+
11+
- Several Template enhancements by Yogesh Khatri
12+
- Updated ESE Database engine to latest version
13+
- Change Color Scheme to Red.. aka Bloodsport
14+
- Tested for Windows 22H2 build 22621.1555 and below
15+
16+

srum_dump2.exe

-498 KB
Binary file not shown.

srum_dump2.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ def extract_live_file():
506506
if os.path.exists("SOFTWARE"):
507507
reg_path = os.path.join(os.getcwd(),"SOFTWARE")
508508

509-
sg.ChangeLookAndFeel('Kayak')
509+
sg.ChangeLookAndFeel('DarkRed2')
510510
layout = [[sg.Text('REQUIRED: Path to SRUDB.DAT')],
511511
[sg.Input(srum_path,key="_SRUMPATH_", enable_events=True), sg.FileBrowse(target="_SRUMPATH_")],
512512
[sg.Text('REQUIRED: Output folder for SRUM_DUMP_OUTPUT.xlsx')],
@@ -519,7 +519,7 @@ def extract_live_file():
519519
[sg.OK(), sg.Cancel()]]
520520

521521
# Create the Window
522-
window = sg.Window('SRUM_DUMP 2.4', layout)
522+
window = sg.Window('SRUM_DUMP 2.5', layout)
523523

524524
while True:
525525
event, values = window.Read()

0 commit comments

Comments
 (0)