1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-25 08:01:39 +00:00

Compare commits

..

5 Commits

Author SHA1 Message Date
Virgil Dupras
21b1a63687 [#166 state:fixed] Added libqtgui4 to deps in debian packaging. 2011-08-25 10:08:13 -04:00
Virgil Dupras
b1dce31542 se v3.1.2 2011-08-25 09:45:49 -04:00
Virgil Dupras
a64ddcb804 [#172 state:fixed] Fixed the Folders scan type which didn't work at all. 2011-08-25 09:37:30 -04:00
Virgil Dupras
905c194cdd Updated qt/lang/de.qm 2011-08-25 09:36:06 -04:00
Virgil Dupras
e61c698b03 Added tag se3.1.1 for changeset db1f325c907f 2011-08-24 13:17:05 -04:00
8 changed files with 11 additions and 6 deletions

View File

@@ -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

View File

@@ -1,2 +1,2 @@
__version__ = '3.1.1' __version__ = '3.1.2'
__appname__ = 'dupeGuru' __appname__ = 'dupeGuru'

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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.

Binary file not shown.