1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-04 19:40:02 +03:00

[2320] Update Hull Get

This commit is contained in:
David Sangrey 2025-01-06 16:11:08 -05:00
parent 4bfb5b4829
commit 6abdaf1537
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
3 changed files with 6 additions and 4 deletions

View File

@ -149,7 +149,7 @@ def main() -> None:
# Buttons
sys_report_btn = ttk.Button(
root,
text="Copy System Report",
text="Copy System Report \U0001F5D0",
command=lambda: copy_sys_report(root, sys_report),
)
sys_report_btn.grid(row=3, column=0, padx=20, pady=10, sticky="w")

View File

@ -213,7 +213,9 @@ outfitting_weaponrating_map = {
'hpt_mininglaser_turret_small': 'D',
'hpt_mininglaser_turret_medium': 'D',
'hpt_multicannon_fixed_small': 'F',
'hpt_multicannon_fixed_small_advanced': 'F',
'hpt_multicannon_fixed_medium': 'E',
'hpt_multicannon_fixed_medium_advanced': 'E',
'hpt_multicannon_fixed_large': 'C',
'hpt_multicannon_fixed_huge': 'A',
'hpt_multicannon_gimbal_small': 'G',

View File

@ -710,8 +710,8 @@ class EDLogs(FileSystemEventHandler):
'Ship': entry["Ship"],
'ShipName': entry['ShipName'],
'ShipIdent': entry['ShipIdent'],
'HullValue': entry['HullValue'],
'ModulesValue': entry['ModulesValue'],
'HullValue': entry.get('HullValue'),
'ModulesValue': entry.get('ModulesValue'),
'Rebuy': entry['Rebuy'],
'MaxJumpRange': entry['MaxJumpRange'],
'UnladenMass': entry['UnladenMass'],
@ -2151,7 +2151,7 @@ class EDLogs(FileSystemEventHandler):
try:
with p.oneshot():
if p.status() not in [psutil.STATUS_RUNNING, psutil.STATUS_SLEEPING]:
raise psutil.NoSuchProcess
raise psutil.NoSuchProcess(p.pid)
except psutil.NoSuchProcess:
# Process likely expired
self.running_process = None