aboutsummaryrefslogtreecommitdiff
path: root/src/xz/args.h (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2022-12-08xz: Make args_info.files_name a const pointer.Lasse Collin1-1/+1
2015-03-07xz: Make arg_count an unsigned int to silence a warning.Lasse Collin1-1/+1
Actually the value of arg_count cannot exceed INT_MAX but it's nicer as an unsigned int.
2014-08-05xz: Add --ignore-check.Lasse Collin1-0/+1
2012-07-03xz: Add incomplete support for --block-list.Lasse Collin1-0/+1
It's broken with threads and when also --block-size is used.
2010-09-05xz: Use an array instead of pointer for stdin_filename.Lasse Collin1-1/+1
Thanks Joerg Sonnenberger.
2010-08-06Add missing const to a global constant in xz.Lasse Collin1-1/+1
2009-11-16Add support for --info-memory and --robot to xz.Lasse Collin1-0/+1
Currently --robot works only with --info-memory and --version. --help and --long-help work too, but --robot has no effect on them. Thanks to Jonathan Nieder for the original patches.
2009-04-13Put the interesting parts of XZ Utils into the public domain.Lasse Collin1-10/+3
Some minor documentation cleanups were made at the same time.
2009-02-05Various code cleanups the the xz command line tool.Lasse Collin1-8/+0
It now builds with MinGW.
2008-11-19Renamed lzma to xz and lzmadec to xzdec. We create symlinksLasse Collin1-0/+0
lzma, unlzma, and lzcat in "make install" for backwards compatibility with LZMA Utils 4.32.x; I'm not sure if this should be the default though.
2008-11-19Oh well, big messy commit again. Some highlights:Lasse Collin1-25/+17
- Updated to the latest, probably final file format version. - Command line tool reworked to not use threads anymore. Threading will probably go into liblzma anyway. - Memory usage limit is now about 30 % for uncompression and about 90 % for compression. - Progress indicator with --verbose - Simplified --help and full --long-help - Upgraded to the last LGPLv2.1+ getopt_long from gnulib. - Some bug fixes
2008-10-07Made the preset numbering more logical in liblzma API.Lasse Collin1-1/+1
2008-10-02Initial changes to change the suffix of the new format to .xz.Lasse Collin1-6/+7
This also fixes a bug related to --suffix option. Some issues with suffixes with --format=raw were not fixed.
2008-09-04Added support for raw encoding and decoding to the commandLasse Collin1-0/+1
line tool, and made various cleanups. --lzma was renamed to --lzma1 to prevent people from accidentally using LZMA when they want LZMA2.
2008-08-28Sort of garbage collection commit. :-| Many things are stillLasse Collin1-2/+2
broken. API has changed a lot and it will still change a little more here and there. The command line tool doesn't have all the required changes to reflect the API changes, so it's easy to get "internal error" or trigger assertions.
2008-06-18Update the code to mostly match the new simpler file formatLasse Collin1-2/+0
specification. Simplify things by removing most of the support for known uncompressed size in most places. There are some miscellaneous changes here and there too. The API of liblzma has got many changes and still some more will be done soon. While most of the code has been updated, some things are not fixed (the command line tool will choke with invalid filter chain, if nothing else). Subblock filter is somewhat broken for now. It will be updated once the encoded format of the Subblock filter has been decided.