Skip to content

Commit 98cc9c2

Browse files
authored
Merge pull request #1153 from Johann-PLW/main
Update version to 2.2.0
2 parents 9dba720 + f81b56b commit 98cc9c2

File tree

8 files changed

+21
-14
lines changed

8 files changed

+21
-14
lines changed

ileappGUI.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,10 +243,13 @@ def process(casedata):
243243
report_path = report_path[2:]
244244
progress_bar.grid_remove()
245245
if lava_only:
246+
message = "You have selected artifacts that are likely to return too much data "
247+
message += "to be viewed in a Web browser.\n\n"
248+
message += "Please see the 'LAVA only artifacts' tab in the HTML report for a list of these artifacts "
249+
message += "and instructions on how to view them."
246250
tk_msgbox.showwarning(
247251
title="Important information",
248-
message="You have selected artifacts that are likely to return too much data to be viewed in a Web browser.\n\n\
249-
Please see the 'LAVA only artifacts' tab in the HTML report for a list of these artifacts and instructions on how to view them.",
252+
message=message,
250253
parent=main_window)
251254
open_report_button = ttk.Button(main_window, text='Open Report & Close', command=lambda: open_report(report_path))
252255
open_report_button.grid(ipadx=8)

scripts/pyinstaller/ileapp-file_version_info.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VSVersionInfo(
22
ffi=FixedFileInfo(
3-
filevers=(2, 1, 3, 0),
4-
prodvers=(2, 1, 3, 0),
3+
filevers=(2, 2, 0, 0),
4+
prodvers=(2, 2, 0, 0),
55
mask=0x3f,
66
flags=0x0,
77
OS=0x40004,
@@ -16,12 +16,12 @@ VSVersionInfo(
1616
'040904b0',
1717
[StringStruct('CompanyName', 'Alexis Brignoni'),
1818
StringStruct('FileDescription', 'iLEAPP CLI'),
19-
StringStruct('FileVersion', '2.1.3'),
19+
StringStruct('FileVersion', '2.2.0'),
2020
StringStruct('InternalName', 'iLEAPP'),
2121
StringStruct('LegalCopyright', 'Result of a collaborative effort in the DFIR community.'),
2222
StringStruct('OriginalFilename', 'ileapp.exe'),
2323
StringStruct('ProductName', 'iLEAPP'),
24-
StringStruct('ProductVersion', '2.1.3')])
24+
StringStruct('ProductVersion', '2.2.0')])
2525
]),
2626
VarFileInfo([VarStruct('Translation', [1033, 1200])])
2727
]

scripts/pyinstaller/ileapp.spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ a = Analysis(['..\\..\\ileapp.py'],
1111
'bencoding',
1212
'blackboxprotobuf',
1313
'Crypto.Cipher.AES',
14+
'ijson',
1415
'lib2to3.refactor',
1516
'liblzfse',
1617
'mdplist',

scripts/pyinstaller/ileappGUI-file_version_info.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VSVersionInfo(
22
ffi=FixedFileInfo(
3-
filevers=(2, 1, 3, 0),
4-
prodvers=(2, 1, 3, 0),
3+
filevers=(2, 2, 0, 0),
4+
prodvers=(2, 2, 0, 0),
55
mask=0x3f,
66
flags=0x0,
77
OS=0x40004,
@@ -16,12 +16,12 @@ VSVersionInfo(
1616
'040904b0',
1717
[StringStruct('CompanyName', 'Alexis Brignoni'),
1818
StringStruct('FileDescription', 'iLEAPP GUI'),
19-
StringStruct('FileVersion', '2.1.3'),
19+
StringStruct('FileVersion', '2.2.0'),
2020
StringStruct('InternalName', 'iLEAPP'),
2121
StringStruct('LegalCopyright', 'Result of a collaborative effort in the DFIR community.'),
2222
StringStruct('OriginalFilename', 'ileappGUI.exe'),
2323
StringStruct('ProductName', 'iLEAPP'),
24-
StringStruct('ProductVersion', '2.1.3')])
24+
StringStruct('ProductVersion', '2.2.0')])
2525
]),
2626
VarFileInfo([VarStruct('Translation', [1033, 1200])])
2727
]

scripts/pyinstaller/ileappGUI.spec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ a = Analysis(['..\\..\\ileappGUI.py'],
1111
'bencoding',
1212
'blackboxprotobuf',
1313
'Crypto.Cipher.AES',
14+
'ijson',
1415
'lib2to3.refactor',
1516
'liblzfse',
1617
'mdplist',
@@ -41,8 +42,8 @@ exe = EXE(pyz,
4142
strip=False,
4243
upx=True,
4344
console=True,
44-
hide_console='hide-early',
45-
disable_windowed_traceback=False,
45+
hide_console='hide-early',
46+
disable_windowed_traceback=False,
4647
upx_exclude=[],
4748
version='ileappGUI-file_version_info.txt',
4849
runtime_tmpdir=None )

scripts/pyinstaller/ileappGUI_macOS.spec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ a = Analysis(
1111
'bencoding',
1212
'blackboxprotobuf',
1313
'Crypto.Cipher.AES',
14+
'ijson',
1415
'lib2to3.refactor',
1516
'liblzfse',
1617
'mdplist',
@@ -60,5 +61,5 @@ app = BUNDLE(
6061
name='ileappGUI.app',
6162
icon='../../assets/icon.icns',
6263
bundle_identifier='4n6.brigs.iLEAPP',
63-
version='2.1.3'
64+
version='2.2.0'
6465
)

scripts/pyinstaller/ileapp_macOS.spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ a = Analysis(
1111
'bencoding',
1212
'blackboxprotobuf',
1313
'Crypto.Cipher.AES',
14+
'ijson',
1415
'lib2to3.refactor',
1516
'liblzfse',
1617
'mdplist',

scripts/version_info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
ileapp_version = '2.1.3'
2+
ileapp_version = '2.2.0'
33

44
# Contributors List
55
# Format = [ Name, Blog-url, Twitter-handle, Github-url]

0 commit comments

Comments
 (0)