# HG changeset patch # User Brett Smith # Date 1215986464 14400 # Node ID dd577317bccbd0571197b7e0f01d4bcd98bd4310 # Parent a4fff3df2242bc486a1955bf8e4699114a658cfc Updates for 6.1 release. diff -r a4fff3df2242 -r dd577317bccb NEWS --- a/NEWS Sun Jul 13 17:54:47 2008 -0400 +++ b/NEWS Sun Jul 13 18:01:04 2008 -0400 @@ -1,6 +1,33 @@ Changes in dtrx =============== +Version 6.1 +----------- + +New features +~~~~~~~~~~~~ + + * Add support for InstallShield archives, using the unshield command. + + * The wording of many of the interactive prompts has been adjusted, + hopefully to be clearer and provide more information to the user + immediately. + +Bug fixes +~~~~~~~~~ + + * dtrx 6.1 does a better job protecting against race conditions when + extracting a single file. + + * If you used the -f option, and extracted an archive that only contained + one file or directory, dtrx 6.0 would still prompt you to ask how it + should be extracted. dtrx 6.1 fixes this, extracting the contents to + the current directory as -f requires. + + * Recursive extraction would not work well in dtrx 6.0 when the contents + of the original archive were a single file. This has been fixed in dtrx + 6.1. + Version 6.0 ----------- diff -r a4fff3df2242 -r dd577317bccb README --- a/README Sun Jul 13 17:54:47 2008 -0400 +++ b/README Sun Jul 13 18:01:04 2008 -0400 @@ -70,7 +70,7 @@ Other Useful Information ------------------------ -dtrx 6.0 is copyright (c) 2006, 2007, 2008 `Brett Smith`_. Feel free to +dtrx 6.1 is copyright (c) 2006, 2007, 2008 `Brett Smith`_. Feel free to send comments, bug reports, patches, and so on. You can find the latest version of dtrx on `its home page`_. diff -r a4fff3df2242 -r dd577317bccb scripts/dtrx --- a/scripts/dtrx Sun Jul 13 17:54:47 2008 -0400 +++ b/scripts/dtrx Sun Jul 13 18:01:04 2008 -0400 @@ -36,7 +36,7 @@ from sets import Set as set -VERSION = "6.0" +VERSION = "6.1" VERSION_BANNER = """dtrx version %s Copyright (c) 2006, 2007, 2008 Brett Smith diff -r a4fff3df2242 -r dd577317bccb setup.py --- a/setup.py Sun Jul 13 17:54:47 2008 -0400 +++ b/setup.py Sun Jul 13 18:01:04 2008 -0400 @@ -3,7 +3,7 @@ from distutils.core import setup setup(name="dtrx", - version = "6.0", + version = "6.1", description = "Script to intelligently extract multiple archive types", author = "Brett Smith", author_email = "brettcsmith@brettcsmith.org",