mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-25 16:11:39 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5284decd67 | ||
|
|
73d22de752 | ||
|
|
26e496a051 | ||
|
|
75f0ed14aa |
1
.hgtags
1
.hgtags
@@ -55,3 +55,4 @@ e62183e907d6177cf0bac354e31afa9546c199e6 se3.1.2
|
||||
28ba95706dc54ba32b1c0cf4e1e6350515d19ba3 me6.0.2
|
||||
925847384dcef62a5c3518fc9e5ce42feab2b093 pe2.2.2
|
||||
383b14d6e8555ed2c8d5552259bc7ce600dfb1d0 before-leopard-drop
|
||||
a2f7b7302e178f08725a6404ddc28464409510b1 se3.2.0
|
||||
|
||||
@@ -316,7 +316,9 @@ class Results(Markable):
|
||||
try:
|
||||
do_write(outfile)
|
||||
except IOError as e:
|
||||
if e.errno == 21: # outfile is a directory
|
||||
# If our IOError is because dest is already a directory, we want to handle that. 21 is
|
||||
# the code we get on OS X and Linux, 13 is what we get on Windows.
|
||||
if e.errno in {21, 13}:
|
||||
p = str(outfile)
|
||||
dirname, basename = op.split(p)
|
||||
otherfiles = os.listdir(dirname)
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
# which should be included with this package. The terms are also available at
|
||||
# http://www.hardcoded.net/licenses/bsd_license
|
||||
|
||||
import os.path as op
|
||||
from itertools import combinations
|
||||
|
||||
from .base import TestApp, NamedObject, with_app, eq_
|
||||
@@ -156,7 +157,7 @@ def app_with_subfolders():
|
||||
def test_folder_crit_is_sorted(app):
|
||||
# Folder subcriteria are sorted.
|
||||
app.select_pri_criterion("Folder")
|
||||
eq_(app.pdialog.criteria_list[:], ['baz', 'foo', 'foo/bar'])
|
||||
eq_(app.pdialog.criteria_list[:], ['baz', 'foo', op.join('foo', 'bar')])
|
||||
|
||||
@with_app(app_with_subfolders)
|
||||
def test_folder_crit_includes_subfolders(app):
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
__version__ = '6.0.2'
|
||||
__version__ = '6.1.0'
|
||||
__appname__ = 'dupeGuru Music Edition'
|
||||
@@ -1,3 +1,15 @@
|
||||
=== 6.1.0 (2011-09-29)
|
||||
|
||||
* Added duplicate re-prioritization dialog. (#138)
|
||||
* Added font size preference for duplicate table. (#82)
|
||||
* Added Quicklook support. [Mac OS X] (#21)
|
||||
* Improved behavior of Mark Selected. (#139)
|
||||
* Improved filename sorting. (#169)
|
||||
* Fixed bug preventing some OGG metadata from being read. (#176)
|
||||
* Added Chinese (Simplified) localization by Eric Dee.
|
||||
* Tweaked the fairware system.
|
||||
* Upgraded minimum requirements to OS X 10.6 and Ubuntu 11.04.
|
||||
|
||||
=== 6.0.2 (2011-08-26)
|
||||
|
||||
* Added German localization by Gregor Tätzner.
|
||||
|
||||
@@ -293,5 +293,6 @@ class DupeGuru(QObject):
|
||||
QMessageBox.information(window, '', msg)
|
||||
|
||||
def open_url(self, url):
|
||||
self.open_path(url)
|
||||
url = QUrl(url)
|
||||
QDesktopServices.openUrl(url)
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
jobprogress>=1.0.2
|
||||
Send2Trash3k>=1.2.0
|
||||
hsaudiotag3k>=1.1.1
|
||||
hsaudiotag3k>=1.1.2
|
||||
pytest>=2.0.0
|
||||
pytest-monkeyplus>=1.0.0
|
||||
|
||||
Reference in New Issue
Block a user