Skip to content

Commit

Permalink
Merge pull request #11 from MariusSchiffer/patch-1
Browse files Browse the repository at this point in the history
Add .r00 file extension for unrar
  • Loading branch information
d8ahazard authored Apr 22, 2020
2 parents 45b9344 + dc409d0 commit 5822d64
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions deluge_simpleextractor/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@

EXTRACT_COMMANDS = {
'.rar': ['unrar', 'x -o+ -y'],
'.r00': ['unrar', 'x -o+ -y'],
'.tar': ['tar', '-xf'],
'.zip': ['unzip', ''],
'.tar.gz': ['tar', '-xzf'],
Expand Down

2 comments on commit 5822d64

@kevindd992002
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So the only difference between 1.4 and 1.3 is the addition of the .r00 file extension which accounts for all the other parts (r01, r02, r03, etc.), right?

@kevindd992002
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, do I just replace the egg in my plugins folder to update it? No need to remove the conf files or anything like that?

Please sign in to comment.