diff --git a/README b/README index 48e48cda..019d22a3 100644 --- a/README +++ b/README @@ -13,7 +13,6 @@ There are also other sub-folder that comes from external repositories (automatic with svn:externals): - hscommon: A collection of helpers used across HS applications. -- hsdocgen: An ad-hoc document generation used across HS project (used for help files) - cocoalib: A collection of helpers used across Cocoa UI codebases of HS applications. - qtlib: A collection of helpers used across Qt UI codebases of HS applications. diff --git a/cocoa/me/Info.plist b/cocoa/me/Info.plist index f38a766c..9990da08 100644 --- a/cocoa/me/Info.plist +++ b/cocoa/me/Info.plist @@ -23,7 +23,7 @@ CFBundleSignature hsft CFBundleVersion - 5.9.1 + 5.10.0 NSMainNibFile MainMenu NSPrincipalClass diff --git a/cocoa/pe/Info.plist b/cocoa/pe/Info.plist index 02dc09a6..afe9a92d 100644 --- a/cocoa/pe/Info.plist +++ b/cocoa/pe/Info.plist @@ -23,7 +23,7 @@ CFBundleSignature hsft CFBundleVersion - 1.10.0 + 1.11.0 NSMainNibFile MainMenu NSPrincipalClass diff --git a/help_me/changelog.yaml b/help_me/changelog.yaml index 22527763..66917051 100644 --- a/help_me/changelog.yaml +++ b/help_me/changelog.yaml @@ -1,3 +1,12 @@ +- date: 2010-09-27 + version: 5.10.0 + description: | + * Improved UI with a little revamp. + * Added the possibility to place hardlinks to references after having deleted duplicates. [Mac OS X, Linux] (#91) + * Added an option to ignore duplicates hardlinking to the same file. [Mac OS X, Linux] (#92) + * Added multiple selection in the "Add Directory" dialog. [Mac OS X] (#105) + * Fixed a bug preventing drag & drop from working in the Directories panel. [Windows, Linux] + * Fixed a crash on some badly formed Id3v2 tags. (#107) - date: 2010-08-24 version: 5.9.1 description: | diff --git a/help_pe/changelog.yaml b/help_pe/changelog.yaml index 4dd2db38..b0bf1139 100644 --- a/help_pe/changelog.yaml +++ b/help_pe/changelog.yaml @@ -1,3 +1,11 @@ +- date: 2010-09-27 + version: 1.11.0 + description: | + * Improved UI with a little revamp. + * Added the possibility to place hardlinks to references after having deleted duplicates. [Mac OS X, Linux] (#91) + * Added an option to ignore duplicates hardlinking to the same file. [Mac OS X, Linux] (#92) + * Added multiple selection in the "Add Directory" dialog. [Mac OS X] (#105) + * Fixed a bug preventing drag & drop from working in the Directories panel. [Windows, Linux] - date: 2010-08-21 version: 1.10.0 description: | diff --git a/qt/me/app.py b/qt/me/app.py index 11ee9bcc..916a7121 100644 --- a/qt/me/app.py +++ b/qt/me/app.py @@ -17,7 +17,7 @@ class DupeGuru(DupeGuruBase): EDITION = 'me' LOGO_NAME = 'logo_me' NAME = 'dupeGuru Music Edition' - VERSION = '5.9.1' + VERSION = '5.10.0' DELTA_COLUMNS = frozenset([2, 3, 4, 5, 7]) def __init__(self): diff --git a/qt/pe/app.py b/qt/pe/app.py index b411e9d2..8a818fb5 100644 --- a/qt/pe/app.py +++ b/qt/pe/app.py @@ -60,7 +60,7 @@ class DupeGuru(DupeGuruBase): EDITION = 'pe' LOGO_NAME = 'logo_pe' NAME = 'dupeGuru Picture Edition' - VERSION = '1.10.0' + VERSION = '1.11.0' DELTA_COLUMNS = frozenset([2, 5]) def __init__(self):