Skip to content

Commit 13ba3f5

Browse files
committed
source for 2.4 release
1 parent 13b8132 commit 13ba3f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

srum_dump2.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def load_interfaces(reg_file):
142142
profileid = [x.value() for x in list(eachprofile.values()) if x.name()=="ProfileIndex"][0]
143143
metadata = list(eachprofile.subkey("MetaData").values())
144144
for eachvalue in metadata:
145-
if eachvalue.name()=="Channel Hints":
145+
if eachvalue.name() in ["Channel Hints", "Band Channel Hints"]:
146146
channelhintraw = eachvalue.value()
147147
hintlength = struct.unpack("I", channelhintraw[0:4])[0]
148148
name = channelhintraw[4:hintlength+4]
@@ -481,7 +481,7 @@ def extract_live_file():
481481
if os.path.exists("SOFTWARE"):
482482
reg_path = os.path.join(os.getcwd(),"SOFTWARE")
483483

484-
sg.ChangeLookAndFeel('TanBlue')
484+
sg.ChangeLookAndFeel('Kayak')
485485
layout = [[sg.Text('REQUIRED: Path to SRUDB.DAT')],
486486
[sg.Input(srum_path,key="_SRUMPATH_", enable_events=True), sg.FileBrowse(target="_SRUMPATH_")],
487487
[sg.Text('REQUIRED: Output folder for SRUM_DUMP_OUTPUT.xlsx')],
@@ -494,7 +494,7 @@ def extract_live_file():
494494
[sg.OK(), sg.Cancel()]]
495495

496496
# Create the Window
497-
window = sg.Window('SRUM_DUMP 2.3', layout)
497+
window = sg.Window('SRUM_DUMP 2.4', layout)
498498

499499
while True:
500500
event, values = window.Read()

0 commit comments

Comments
 (0)