Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-28 | Eliminate calls to __umoddi3 (compiler generated for 64-bit % 32-bit). | josh.macdonald | |
More 80col reformatting. | |||
2007-10-28 | 80col changes. | josh.macdonald | |
2007-10-28 | Reformat for 80 cols. Allow -S djwN where N is 0-9. Default | josh.macdonald | |
(for -S djw) is 3. -S djw9 enables multi-group huffman for all three sections. -S djw3 enables single-group huffman for all three sections. 1-2 are single data-only, 3-4 are single data+inst, 5-6 are single data+inst+addr, 7, 8, 9 enable multi-group huffman for the three sections in order. | |||
2007-10-28 | Reformat >80col lines. 32-bit build/test fixes. | josh.macdonald | |
2007-10-21 | Comments and build with speed_test.cc | josh.macdonald | |
2007-10-20 | working on inline functions | josh.macdonald | |
2007-10-10 | Recognize -S none. | josh.macdonald | |
2007-10-10 | Removes NODECOMPRESSIZE. | josh.macdonald | |
2007-10-10 | 3.0r release | josh.macdonald | |
2007-09-29 | Build fix for MSVC++ | josh.macdonald | |
2007-09-13 | Fix secondary compression for recode. Now able to reproduce doytchin's | josh.macdonald | |
bug report by recoding an FGK as a DJW. | |||
2007-09-12 | The "recode" command sets command-line secondary compression flags in the ↵ | josh.macdonald | |
recode stream. | |||
2007-09-12 | Fixes xdelta recode command, but does not implement adler32, source | josh.macdonald | |
info, app header, etc. | |||
2007-09-12 | Add "xdelta3 recode" function, which is currently outputing incorrect | josh.macdonald | |
VCDIFF windows. | |||
2007-03-25 | Add MSI build, Makefile wix rules. | josh.macdonald | |
2007-03-24 | Release 3.0q source | josh.macdonald | |
2007-03-24 | Allow read-sharing for WIN32 CreateFile() | josh.macdonald | |
2007-03-24 | Do not buffer stderr on Windows. | josh.macdonald | |
2007-03-24 | Use 1024 instead of 1000 for KB/MB/GB calculations. | josh.macdonald | |
2007-03-24 | Rename #define P to #define DP | josh.macdonald | |
2007-02-18 | pre 3.0p, all tests pass | josh.macdonald | |
2007-02-18 | remove PROMOTE, SSMATCH, TRYLAZY, raise default IOPT_SIZE | josh.macdonald | |
2007-02-18 | raise default sprevsz, add command-line flag -P to set | josh.macdonald | |
2007-02-17 | generic encode tables compiled in setup.py; comments on HARDMAXWINSZ; more ↵ | josh.macdonald | |
winsize tests | |||
2007-02-13 | Adds xd3_flags for setting compression level in xd3_encode_memory(). | josh.macdonald | |
2007-02-12 | Fix and recomment xd3_srcwin_move_point() after changes in SVN 127 to use ↵ | josh.macdonald | |
src->blksize as the advance size. | |||
2007-02-11 | Fixes bugs in XDELTA environment variable. | josh.macdonald | |
Removes stream.srcwin_size variable, uses stream.src->blksize instead, to address performance regression from xdelta1. Changes the order of checksum computation to be like xdelta1, insert checksums in reverse to give preference to earlier matches. Removes svn:executable from files. | |||
2007-02-08 | Bugfix XDELTA environment var. | josh.macdonald | |
2007-02-08 | XDELTA environment variable lets you do stuff like this: | josh.macdonald | |
XDELTA="-s source-dir.tar" tar --use-compress-program=xdelta3 -cf - target-dir | |||
2007-02-08 | Make "option ignored" less verbose. | josh.macdonald | |
2007-02-08 | Python swig module working with xd3_encode_memory(), xd3_decode_memory(), | josh.macdonald | |
and xd3_main_cmdline(). module added to xdelta3-regtest.py run-length experiments. XD3_INVALID_INPUT code added to distinguish decoder errors from invalid stream-states. xdelta3-test.py unittest added for python module. xd3_encode_memory() now limits config.winsize to <= 1MB: xd3_process_memory() now properly splits the input buffer into windows. | |||
2007-02-07 | Ready to release 3.0o. Still working on swig. | josh.macdonald | |
2007-02-07 | Update FASTEST, DEFAULT compression level. Comments. | josh.macdonald | |
2007-02-07 | Fixes print commands on Windows, the needed GetStartupInfo() and ↵ | josh.macdonald | |
stdin/stdout handles set after the change in 112 (missing its comment) which converts the print commands to use snprintf() and the default I/O routines. Addresses issue 14. | |||
2007-02-06 | (no commit message) | josh.macdonald | |
2007-02-04 | Cleanup www (it's on the code.google.com/p/xdelta/wiki/list now). | josh.macdonald | |
Rekey. | |||
2007-02-04 | Adds a new compression level (-6), makes -1 faster and -9 better. | josh.macdonald | |
2007-02-04 | Decoder memory error, related to secondary compression, fixed. Valgrind | josh.macdonald | |
made this easy to spot. | |||
2007-02-01 | Fixes build on Cygwin, some work on -regtest.py | josh.macdonald | |
2007-01-29 | Updates on G: | josh.macdonald | |
remove missing file from vcproj compiles under cygwin | |||
2007-01-29 | Change _completely() to _completely_stream(), to introduce a new, | josh.macdonald | |
simpler in-memory API. | |||
2007-01-22 | Release 3.0m | dotdotisdead | |
2007-01-21 | Update configs, comments, etc. | dotdotisdead | |
2007-01-20 | Changes to support -I IOPT_SIZE on the commandline. New support for ↵ | dotdotisdead | |
unlimited instruction buffer size set by -I 0. The default remains 4096. | |||
2007-01-16 | Increase default IOPT buffer size to 4096 entries: there is still no | dotdotisdead | |
command-line flag for this setting! Bump version to 3.0l. | |||
2007-01-14 | Cleanup the calculation of -B and -W, get the minimum source buffer size | dotdotisdead | |
(-B) to work, enforce a maximum input window size (-W). Add some debugging output. Correct a bug in setting the large hashtable size. I've noticed some odd behavior with the -W setting, more tests to do. | |||
2007-01-13 | Edit xdelta3-cfgs, not exactly scientific tuning but much better for | dotdotisdead | |
now. | |||
2007-01-10 | Work on tuning tests. | dotdotisdead | |
2007-01-08 | Experimenting with -C soft-config, trying to tune the -1..-9 values. | dotdotisdead | |
Right now -9 is definitely slower but not usually better. | |||
2007-01-08 | Set source buffer size to min(source->size) and if the command-line is | dotdotisdead | |
not set, scale to source->size up to 64MB. |