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

Compare commits

...

3 Commits

Author SHA1 Message Date
Virgil Dupras
943a6570d8 Added Utopic Unicorn to the list of supported Ubuntu dists 2014-10-26 12:18:49 -04:00
Virgil Dupras
854a253d9f me v6.8.1 2014-10-26 12:00:54 -04:00
Virgil Dupras
4e477104a6 Use --deep flag when code signing under OS X
It is now required in new versions of OS X that the embedded Python framework is signed separately.
2014-10-18 11:09:18 -04:00
4 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,3 @@
__version__ = '6.8.0' __version__ = '6.8.1'
__appname__ = 'dupeGuru Music Edition' __appname__ = 'dupeGuru Music Edition'

View File

@@ -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) === 6.8.0 (2014-05-11)
* This is mostly a dependencies upgrade. * This is mostly a dependencies upgrade.

View File

@@ -130,7 +130,7 @@ def package_cocoa_app_in_dmg(app_path, destfolder, args):
# a valid signature. # a valid signature.
if args.sign_identity: if args.sign_identity:
sign_identity = "Developer ID Application: {}".format(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: if result != 0:
print("ERROR: Signing failed. Aborting packaging.") print("ERROR: Signing failed. Aborting packaging.")
return return

View File

@@ -166,7 +166,7 @@ def package_debian_distribution(edition, distribution):
def package_debian(edition): def package_debian(edition):
print("Packaging for Ubuntu") print("Packaging for Ubuntu")
for distribution in ['trusty']: for distribution in ['trusty', 'utopic']:
package_debian_distribution(edition, distribution) package_debian_distribution(edition, distribution)
def package_arch(edition): def package_arch(edition):