aboutsummaryrefslogtreecommitdiff
path: root/src/lzma (follow)
AgeCommit message (Collapse)AuthorFilesLines
2008-11-19Renamed lzma to xz and lzmadec to xzdec. We create symlinksLasse Collin21-4947/+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 Collin26-1864/+2525
- 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-07Fixed some help messages.Lasse Collin1-3/+3
2008-10-07Made the preset numbering more logical in liblzma API.Lasse Collin2-5/+5
2008-10-03Fixed suffix handling with --format=raw.Lasse Collin1-9/+19
2008-10-02Initial changes to change the suffix of the new format to .xz.Lasse Collin5-51/+131
This also fixes a bug related to --suffix option. Some issues with suffixes with --format=raw were not fixed.
2008-09-27Some API changes, bug fixes, cleanups etc.Lasse Collin3-60/+82
2008-09-13Renamed constants:Lasse Collin3-5/+5
- LZMA_VLI_VALUE_MAX -> LZMA_VLI_MAX - LZMA_VLI_VALUE_UNKNOWN -> LZMA_VLI_UNKNOWN - LZMA_HEADER_ERRRO -> LZMA_OPTIONS_ERROR
2008-09-11Silence a compiler warning.Lasse Collin1-1/+1
2008-09-06Some API cleanupsLasse Collin1-1/+1
2008-09-04Added support for raw encoding and decoding to the commandLasse Collin4-34/+50
line tool, and made various cleanups. --lzma was renamed to --lzma1 to prevent people from accidentally using LZMA when they want LZMA2.
2008-09-02Command line tool fixesLasse Collin1-8/+13
2008-08-28Sort of garbage collection commit. :-| Many things are stillLasse Collin4-89/+52
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 Collin4-44/+12
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.
2008-06-11Improve command line integer parsing a little in lzma andLasse Collin1-9/+14
lzmadec to make them accept also KiB in addition Ki etc. Fix also memory usage information in lzmadec --help.
2008-06-10s/decompressed/compressed/ in the command line tool'sLasse Collin1-1/+1
error message.
2008-05-06Bunch of grammar fixes from meyering.Lasse Collin1-1/+1
2008-05-04Don't print an error message on broken pipe unless --verboseLasse Collin1-1/+14
is used.
2008-04-30Fix a crash with --format=alone if other filters than LZMALasse Collin1-0/+9
are specified on the command line.
2008-04-28Fixed wrong spelling "limitter" to "limiter". This affectsLasse Collin1-3/+3
liblzma's API.
2008-04-24Make unlzma and lzcat symlinks.Lasse Collin1-0/+12
2008-04-24Fixed a bug in command line option parsing.Lasse Collin1-1/+1
2008-01-17Added --delta to the output of "lzma --help".Lasse Collin1-0/+4
2008-01-14Added one assert() to process.c of the command line tool.Lasse Collin1-0/+1
2008-01-08Disable CRC32 from Block Headers when --check=noneLasse Collin1-1/+1
has been specified.
2008-01-06With printf(), use PRIu64 with a cast to uint64_t insteadLasse Collin1-6/+7
of %zu, because some pre-C99 libc versions don't support %zu.
2008-01-06Introduced compatibility with systems that have pre-C99Lasse Collin1-1/+0
or no inttypes.h. This is useful when the compiler has good enough support for C99, but libc headers don't. Changed liblzma API so that sys/types.h and inttypes.h have to be #included before #including lzma.h. On systems that don't have C99 inttypes.h, it's the problem of the applications to provide the required types and macros before #including lzma.h. If lzma.h defined the missing types and macros, it could conflict with third-party applications whose configure has detected that the types are missing and defined them in config.h already. An alternative would have been introducing lzma_uint32 and similar types, but that would just be an extra pain on modern systems.
2007-12-13Fixed a few short options that take an argument.Lasse Collin1-1/+1
short_opts[] was missing colons to indicate required argument. Thanks to Fabio Pedretti for the bug report.
2007-12-11Get rid of no-NLS gnulib. I don't know how to get itLasse Collin1-1/+1
working with Automake. People who want smaller lzmadec should use --disable-nls on non-GNU systems.
2007-12-09Imported to git.Lasse Collin24-0/+4178