mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-25 08:01:39 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
943a6570d8 | ||
|
|
854a253d9f | ||
|
|
4e477104a6 |
@@ -1,3 +1,3 @@
|
||||
__version__ = '6.8.0'
|
||||
__version__ = '6.8.1'
|
||||
__appname__ = 'dupeGuru Music Edition'
|
||||
|
||||
|
||||
@@ -1,3 +1,10 @@
|
||||
=== 6.8.1 (2014-10-26)
|
||||
|
||||
* Fixed ``AttributeError: 'ComboboxModel' object has no attribute 'reset'``. [Linux, Windows] (#254)
|
||||
* Fixed ``PermissionError`` on saving results. (#266)
|
||||
* Fixed a build problem introduced by Sphinx 1.2.3.
|
||||
* Updated German localisation, by Frank Weber.
|
||||
|
||||
=== 6.8.0 (2014-05-11)
|
||||
|
||||
* This is mostly a dependencies upgrade.
|
||||
|
||||
@@ -130,7 +130,7 @@ def package_cocoa_app_in_dmg(app_path, destfolder, args):
|
||||
# a valid signature.
|
||||
if args.sign_identity:
|
||||
sign_identity = "Developer ID Application: {}".format(args.sign_identity)
|
||||
result = print_and_do('codesign --force --sign "{}" "{}"'.format(sign_identity, app_path))
|
||||
result = print_and_do('codesign --force --deep --sign "{}" "{}"'.format(sign_identity, app_path))
|
||||
if result != 0:
|
||||
print("ERROR: Signing failed. Aborting packaging.")
|
||||
return
|
||||
|
||||
@@ -166,7 +166,7 @@ def package_debian_distribution(edition, distribution):
|
||||
|
||||
def package_debian(edition):
|
||||
print("Packaging for Ubuntu")
|
||||
for distribution in ['trusty']:
|
||||
for distribution in ['trusty', 'utopic']:
|
||||
package_debian_distribution(edition, distribution)
|
||||
|
||||
def package_arch(edition):
|
||||
|
||||
Reference in New Issue
Block a user