mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-25 16:11:39 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
21b1a63687 | ||
|
|
b1dce31542 | ||
|
|
a64ddcb804 | ||
|
|
905c194cdd | ||
|
|
e61c698b03 |
1
.hgtags
1
.hgtags
@@ -50,3 +50,4 @@ d274bcb98f2d02b86470a04cd62e718eff33b74f pe2.1.0
|
|||||||
97893f37d7d0767b5aedf1b4b40de57ee36d426b se3.1.0
|
97893f37d7d0767b5aedf1b4b40de57ee36d426b se3.1.0
|
||||||
e44d5127ed605daa7a17a01eee65d0a157de20c0 pe2.2.0
|
e44d5127ed605daa7a17a01eee65d0a157de20c0 pe2.2.0
|
||||||
ecf9aaa568340e3d03e8854b7556edd5a3285107 pe2.2.1
|
ecf9aaa568340e3d03e8854b7556edd5a3285107 pe2.2.1
|
||||||
|
db1f325c907ffa9808a49cb7bc2886b9fca7aee2 se3.1.1
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
__version__ = '3.1.1'
|
__version__ = '3.1.2'
|
||||||
__appname__ = 'dupeGuru'
|
__appname__ = 'dupeGuru'
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ class Directories(DirectoriesBase):
|
|||||||
if path[:2] == Path('/Users') and path[3:] in self.HOME_PATH_TO_EXCLUDE:
|
if path[:2] == Path('/Users') and path[3:] in self.HOME_PATH_TO_EXCLUDE:
|
||||||
return DirectoryState.Excluded
|
return DirectoryState.Excluded
|
||||||
|
|
||||||
def _get_folders(self, from_folder):
|
def _get_folders(self, from_folder, j):
|
||||||
# We don't want to scan bundle's subfolder even in Folders mode. Bundle's integrity has to
|
# We don't want to scan bundle's subfolder even in Folders mode. Bundle's integrity has to
|
||||||
# stay intact.
|
# stay intact.
|
||||||
if is_bundle(str(from_folder.path)):
|
if is_bundle(str(from_folder.path)):
|
||||||
@@ -56,7 +56,7 @@ class Directories(DirectoriesBase):
|
|||||||
yield from_folder
|
yield from_folder
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
for folder in DirectoriesBase._get_folders(self, from_folder):
|
for folder in DirectoriesBase._get_folders(self, from_folder, j):
|
||||||
yield folder
|
yield folder
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|||||||
@@ -8,5 +8,5 @@ Homepage: http://www.hardcoded.net
|
|||||||
|
|
||||||
Package: dupeguru-me
|
Package: dupeguru-me
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: python3.1
|
Depends: python3.1, libqtgui4
|
||||||
Description: dupeGuru Music Edition
|
Description: dupeGuru Music Edition
|
||||||
|
|||||||
@@ -8,5 +8,5 @@ Homepage: http://www.hardcoded.net
|
|||||||
|
|
||||||
Package: dupeguru-pe
|
Package: dupeguru-pe
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: python3.1
|
Depends: python3.1, libqtgui4
|
||||||
Description: dupeGuru Picture Edition
|
Description: dupeGuru Picture Edition
|
||||||
|
|||||||
@@ -8,5 +8,5 @@ Homepage: http://www.hardcoded.net
|
|||||||
|
|
||||||
Package: dupeguru-se
|
Package: dupeguru-se
|
||||||
Architecture: any
|
Architecture: any
|
||||||
Depends: python3.1
|
Depends: python3.1, libqtgui4
|
||||||
Description: dupeGuru
|
Description: dupeGuru
|
||||||
|
|||||||
@@ -1,3 +1,7 @@
|
|||||||
|
=== 3.1.2 (2011-08-25)
|
||||||
|
|
||||||
|
* Fixed a bug preventing the Folders scan from working. (#172)
|
||||||
|
|
||||||
=== 3.1.1 (2011-08-24)
|
=== 3.1.1 (2011-08-24)
|
||||||
|
|
||||||
* Added German localization by Gregor Tätzner.
|
* Added German localization by Gregor Tätzner.
|
||||||
|
|||||||
BIN
qt/lang/de.qm
BIN
qt/lang/de.qm
Binary file not shown.
Reference in New Issue
Block a user