Daniel Scharrer
7b17d79e71
Use static libraries from package-config as hints
13 years ago
Daniel Scharrer
7ea4bc4688
Change version number after release
13 years ago
Daniel Scharrer
f335bc4b1e
Release version 1.4
...
Changes:
- Fixed build on non-Linux platforms with a separate libiconv
(Windows™, Mac OS X)
- Fixed build on systems with non-standard iconv function prototypes
(FreeBSD)
- Fixed MSVC build
- Fixed build with older glibc versions
- Fixed issues with the progress bar in sandbox environments
- Fixed string conversion on systems where libiconv defaults
to big-endian variants
- Fixed extracting very large installers with 32-bit innoextract builds
- Improved handling of invalid encoded strings
- Improved error messages when input or output files could not be
opened
- The --list command-line option can now combined with
--test or --extract
- The --version command-line option can now be modified with
--quiet or --silent
- Added color output and progress bar support for Windows™
- Added support for Unicode filenames under Windows™
- Added support for preserving timestamps of extracted files
(enabled by default)
- Added a --timestamps (-T) command-line options to control or disable
file timestamps
- Added an --output-dir (-d) command-line option to control where
files are extracted
- Added various CMake options to fine-tune the build process
- Various bug fixes and tweaks
13 years ago
Daniel Scharrer
e3ae3d764f
man page: Use \fI style for option arguments
13 years ago
Daniel Scharrer
a1f6382336
Update list of limitations in the man page
13 years ago
Daniel Scharrer
46f052be34
Add missing <iostream> #include to debug.cpp
13 years ago
Daniel Scharrer
b55fae2770
Fix integer conversion warnings with gcc 4.3
13 years ago
Daniel Scharrer
2f0f460736
Add changelog entry for version 1.4
13 years ago
Daniel Scharrer
9b6502061a
Update copyright lines in files changed this year
13 years ago
Daniel Scharrer
1de0483405
Use C++11 alignof(type) if available
13 years ago
Daniel Scharrer
f5dd857634
Fix Doxygen references
13 years ago
Daniel Scharrer
1009417cc6
Silence style warnings
13 years ago
Daniel Scharrer
5a678b88f5
Add C++11 feature checks
13 years ago
Daniel Scharrer
ada1415927
Don't mix class and struct
13 years ago
Daniel Scharrer
aeefcd2880
cmake: Use pkgconfig values as hints in FindLMZA
13 years ago
Daniel Scharrer
8071f5135a
Improve input/output file error message
13 years ago
Daniel Scharrer
08f5036ec7
Cleanup loading functions
...
- Remove configure-time endianness check
(replaced by run-time check to be optimized out by the compiler)
- Move loading functions into the util namespace
- Only keep the setup header entries we actually need
13 years ago
Daniel Scharrer
9e4dc70333
man page: Only use --option=arg syntax if required
13 years ago
Daniel Scharrer
3b066e28aa
Improve wording in the man page
13 years ago
Daniel Scharrer
02c98718de
Remove unneeded <iostream> includes
...
In some implementations of the C++ standard library just including
<iostream> in a TU can add a runtime overhead to the program startup.
13 years ago
Daniel Scharrer
8c4ca231f5
README.md: Align the options table
13 years ago
Daniel Scharrer
8cd279941e
Cleanup static linking options
13 years ago
Daniel Scharrer
ac1f40344e
Fix debug build
13 years ago
Daniel Scharrer
9e14d05f76
Add large byte size units
13 years ago
Daniel Scharrer
29e409fd97
Skip encrypted chunks and print a warning
13 years ago
Daniel Scharrer
fbc214843d
Add a command-line option for the output directory
13 years ago
Daniel Scharrer
7c55c2ff7c
Fix C++11 build
13 years ago
Daniel Scharrer
09842bcd79
Improve file path conversions
...
Canonicalize paths and strip leading '..' segments so we don't write
anything outside the target directory.
13 years ago
Daniel Scharrer
b658e33b1b
Fix references in Doxygen documentation
13 years ago
Daniel Scharrer
ab0d0a89fa
Add more documentation to src/stream/checksum.hpp
13 years ago
Daniel Scharrer
2f8045127c
Add more documentation to src/stream/exefilter.hpp
13 years ago
Daniel Scharrer
c1a8afaef2
Add more documentation to src/stream/lzma.hpp
13 years ago
Daniel Scharrer
8761518b6f
Add more documentation to src/stream/slice.hpp
13 years ago
Daniel Scharrer
b7282978ea
Add more documentation to src/stream/block.hpp
13 years ago
Daniel Scharrer
6618f94a82
Avoid boost::shared_ptr
...
If possible, use std::unique_ptr instead (or std::auto_ptr for C++03)
13 years ago
Daniel Scharrer
176fbf0ac4
Add more documentation to src/stream/chunk.hpp
13 years ago
Daniel Scharrer
f6f8fe46e9
Fix extracting large installers with 32-bit builds
...
Or more precisely, installers with compressed chunks or output files
larger than std::streamsize.
13 years ago
Daniel Scharrer
41a61dc0fe
Add support for combining --version with -s and -q
13 years ago
Daniel Scharrer
a795d473db
Fix issues with Unicode filenames under Windows
...
Also, only open the main setup file once.
13 years ago
Daniel Scharrer
e29f09edde
Fix incorrect default for DATAROOTDIR in README.md
13 years ago
Daniel Scharrer
a8a228aac7
Improve SYNOPSYS in the man page
13 years ago
Daniel Scharrer
4d79aeee13
Add support for codepages without aliases in iconv
13 years ago
Daniel Scharrer
47a2b54f15
Allow --list to be combined with --test/--extract
...
Also, list the files on one line each if --list is combined with
--silent.
13 years ago
Daniel Scharrer
30cd67cca2
Improve options listing in the man page
...
- Separate alternative options with a comma.
- Only highlight the options, not their parameters.
13 years ago
Daniel Scharrer
e43155657c
Add support for overwriting argv0 with an env var
...
This is useful for wrapper scripts that want to hide the full path
to the program while only relying on POSIX scripting functionality.
(`exec -a` is a bashism)
13 years ago
Daniel Scharrer
cbea7f5a7a
README.md: fix spelling
13 years ago
Daniel Scharrer
4c7392bd6c
Remove redundant GNU/POSIX feature macros
13 years ago
Daniel Scharrer
3beaf72954
Fix Windows build (missing install paths)
13 years ago
Daniel Scharrer
44ba9605b0
Prevent sign change warning with gcc 4.3
13 years ago
Daniel Scharrer
6574198994
CMake: Allow for changing the bin install dir
...
Also, use the standard CMake option name for the man dir.
13 years ago