Skip to content

Commit 03050d8

Browse files
committed
replaced arj unpacker with 7z
1 parent 5708fbb commit 03050d8

File tree

9 files changed

+3
-48
lines changed

9 files changed

+3
-48
lines changed

fact_extractor/plugins/unpacking/arj/__init__.py

Whitespace-only changes.

fact_extractor/plugins/unpacking/arj/code/__init__.py

Whitespace-only changes.

fact_extractor/plugins/unpacking/arj/code/arj.py

Lines changed: 0 additions & 28 deletions
This file was deleted.

fact_extractor/plugins/unpacking/arj/test/__init__.py

Whitespace-only changes.
-332 Bytes
Binary file not shown.

fact_extractor/plugins/unpacking/arj/test/test_arj.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

fact_extractor/plugins/unpacking/sevenz/code/sevenz.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
'application/rar',
2323
'application/x-7z-compressed',
2424
'application/x-gzip',
25+
'application/x-arj',
2526
'application/x-iso9660-image',
2627
'application/x-lzma',
2728
'application/x-rar',
@@ -39,7 +40,7 @@
3940
'filesystem/hfs',
4041
'filesystem/ntfs',
4142
]
42-
VERSION = '0.9.0'
43+
VERSION = '0.10.0'
4344

4445
UNPACKER_EXECUTABLE = '7zzs'
4546

436 Bytes
Binary file not shown.

fact_extractor/plugins/unpacking/sevenz/test/test_plugin_sevenz.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def test_unpacker_selection_generic(self):
1919
[
2020
('test.7z', 'get_files_test'),
2121
('test.rar', 'get_files_test'),
22+
('test.arj', 'get_files_test'),
2223
('cramfs.img', ''),
2324
('test.iso', ''),
2425
],

0 commit comments

Comments
 (0)