mirror of
https://github.com/EDCD/EDDN.git
synced 2025-06-18 07:52:59 +03:00
scripts/eddn-report: Add Moonlight/1.3.4/Scan case
This commit is contained in:
parent
7b3dc68ad4
commit
1d15c546a8
@ -246,6 +246,25 @@ def process_file(input_file: str) -> None:
|
|||||||
if software_version >= semantic_version.Version.coerce('2.0.0.660'):
|
if software_version >= semantic_version.Version.coerce('2.0.0.660'):
|
||||||
print(line)
|
print(line)
|
||||||
|
|
||||||
|
# <https://edcodex.info/?m=tools&entry=440>
|
||||||
|
# <https://bitbucket.org/JuustoKakku/moonlight/src/master/>
|
||||||
|
elif matches.group('software_name') == 'Moonlight':
|
||||||
|
if matches.group('software_version') == '1.3.4':
|
||||||
|
if matches.group('schema_ref') == 'https://eddn.edcd.io/schemas/journal/1':
|
||||||
|
if matches.group('journal_event') == 'Scan':
|
||||||
|
# Ref: <https://bitbucket.org/JuustoKakku/moonlight/issues/5/bad-scan-events-being-sent-to-eddn>
|
||||||
|
if not matches.group('err_msg').startswith(
|
||||||
|
'Failed Validation "[<ValidationError: "{\'type\': [\'array\', \'boolean\', \'integer\', \'number\', \'null\', \'object\', \'string\']} is not allowed for \''
|
||||||
|
):
|
||||||
|
print(matches.group('err_msg'))
|
||||||
|
print(line)
|
||||||
|
|
||||||
|
else:
|
||||||
|
print(line)
|
||||||
|
|
||||||
|
else:
|
||||||
|
print(line)
|
||||||
|
|
||||||
# Abandoned/unmaintained project
|
# Abandoned/unmaintained project
|
||||||
# <https://forums.frontier.co.uk/threads/release-eva-elite-virtual-assistant-for-iphone-ipad-no-longer-working-jan-2020.245900/page-18>
|
# <https://forums.frontier.co.uk/threads/release-eva-elite-virtual-assistant-for-iphone-ipad-no-longer-working-jan-2020.245900/page-18>
|
||||||
# <https://apps.apple.com/gb/app/eva/id1098763533>
|
# <https://apps.apple.com/gb/app/eva/id1098763533>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user