# HG changeset patch # User brett # Date 1166569260 18000 # Node ID a2ca41a852431a10735951b27cd192339b54ad9d # Parent f0acfe12a0e2904a6ae759b0f7b542e82d2253b2 [svn] This is version 2.0 because I said so. diff -r f0acfe12a0e2 -r a2ca41a85243 TODO --- a/TODO Sun Dec 17 09:20:02 2006 -0500 +++ b/TODO Tue Dec 19 18:01:00 2006 -0500 @@ -7,6 +7,8 @@ * Better error messages. Things I think might be good but can't prove: +* Interactivity ("This archive contains other archive files. Would you + like to extract them as well?") * Consider having options about whether or not to make sane directories, have tarbomb protection, etc. * Use zipfile instead of the zip commands. diff -r f0acfe12a0e2 -r a2ca41a85243 scripts/x --- a/scripts/x Sun Dec 17 09:20:02 2006 -0500 +++ b/scripts/x Tue Dec 19 18:01:00 2006 -0500 @@ -27,7 +27,7 @@ from cStringIO import StringIO -VERSION = "1.1" +VERSION = "2.0" VERSION_BANNER = """x version %s Copyright (c) 2006 Brett Smith diff -r f0acfe12a0e2 -r a2ca41a85243 setup.py --- a/setup.py Sun Dec 17 09:20:02 2006 -0500 +++ b/setup.py Tue Dec 19 18:01:00 2006 -0500 @@ -3,7 +3,7 @@ from distutils.core import setup setup(name="x", - version = "1.0", + version = "2.0", description = "Script to intelligently extract multiple archive types", author = "Brett Smith", author_email = "brettcsmith@brettcsmith.org",