X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=ChangeLog;h=7b84bf11aa8d23d532fd45539fac2fe437aad7aa;hb=add3e2da0d5f063f704785515b2d39aa3c108e85;hp=ba95fbbd055849a1223ccc004268e7b1af626a62;hpb=032166d324e58b4e51c0057101ad9bb1521d8872;p=lha%2Flha.git diff --git a/ChangeLog b/ChangeLog index ba95fbb..7b84bf1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,316 @@ +2003-07-27 Koji Arai + + * src/prototypes.h: updated. + + * src/lha.h (exit): defined as lha_exit(). + + * src/lharc.c (init_variable): discard a variable + `remove_temporary_at_error'. + (fatal_error): ditto. + (cleanup): newly added. + (interrupt): call cleanup(). + (lha_exit): newly added; cleanup temporary files always. + + * src/lhadd.c (add_one): discard a variable + `remove_temporary_at_error'. + + * src/indicator.c (start_indicator): refined. + + * src/lharc.c (parse_option): fixed typo. + + * src/indicator.c (carriage_return): newly added; print CR on tty only. + (start_indicator): call above. + (finish_indicator): ditto. + (finish_indicator2): ditto. + + * src/lharc.c (print_usage): newly added. + (parse_option): strictly checking command line arguments. + (main): ditto. + +2003-07-26 Koji Arai + + * tests/lha-test13: use `tr' instead of `printf` for printing 8 bit + characters. + +2003-07-25 Koji Arai + + * tests/lha-test14: `test -e' is unavailable on some systems. + +2003-07-22 Koji Arai + + * tests/lha-test.in: should exit with status in trap. + + * src/shuf.c (decode_start_st0): wrong value was assigned. + + * src/lha.h: discard `prof' variable. + + * src/lharc.c (init_variable): discard `prof' variable. + (parse_option): discard undocumented `p' option. + (main): ditto. + + * src/append.c (encode_lzhuf): hate global variable. + + * src/extract.c (decode_lzhuf): ditto. + + * src/lha.h: ditto. + +2003-07-21 Koji Arai + + * configure.ac: updated version. + + * 00readme.autoconf: described largefiles. + + * src/header.c (get_header): avoid valgrind warning, `Source and + destination overlap in strncpy()'. + + * src/lharc.c (find_files): refined. + + * tests/lha-test.in: should exit in trap. + + * src/lharc.c (find_files): uninitialized variable was caught by + Valgrind. + + * src/prototypes.h: updated. + + * src/append.c (encode_lzhuf): set actual copied size. + + * src/util.c (encode_stored_crc): use size_t instead of long. + + * src/lhadd.c (temporary_to_new_archive_file): ditto. + (cmd_add): ditto. + (cmd_delete): ditto. + + * src/lhadd.c (add_one): fixed a comment. + + * src/indicator.c (MAX_INDICATOR_COUNT): changed to fit for the 80 + column screen. + + * src/extract.c (decode_lzhuf): refined. + + * src/prototypes.h: updated. + + * src/cproto.sh: added `indicator.c'. + + * src/Makefile.am: ditto. + + * src/indicator.c: separated from append.c. + + * src/append.c: ditto. + + * src/lha.h: ditto. + + * src/lha_macro.h: ditto. + +2003-07-20 Koji Arai + + * configure.ac: updated version. + + * src/Makefile.am (EXTRA_DIST): fnmatch.h was missed. + + * src/lha.h (fseeko, ftello): these macros had no effect. + +2003-07-19 Koji Arai + + * src/maketree.c (make_len): discard debug print. + + * configure.ac: updated version. + + * src/prototypes.h: updated. + + * config.h.in: updated. + + * configure.ac: check declaration of `basename'. + + * src/cproto.sh: ditto. + + * src/util.c (encode_stored_crc): use size_t. + + * src/lha.h (struct LzHeader): use size_t for the members + `packed_size' and `original_size'. + +2003-07-13 Koji Arai + + * configure.ac: updated version. + + * src/prototypes.h: updated. + + * src/append.c (encode_lzhuf): use size_t and off_t instead of long. + (start_indicator): ditto. + + * src/extract.c (decode_lzhuf): ditto. + + * src/lha.h (struct interfacing): ditto. + + * src/lhadd.c (add_one): ditto. + (find_update_files): ditto. + (delete): ditto. + + * src/lhext.c (cmd_extract): ditto. + + * src/util.c (copyfile): ditto. + + * src/lhlist.c (print_size): use "%7lu" format string instead of + "%7ld" for large files. + + * src/slide.c: refined. + +2003-07-11 Koji Arai + + * src/lharc.c (cleaning_files): should print errno. + +2003-05-23 Koji Arai + + * configure.ac: use fseeko(), ftello() instead of fseek(), ftell(). + + * config.h.in: ditto. + + * src/lha.h, src/lhlist.c, src/lhext.c, src/lharc.c: ditto. + + * src/lhadd.c, src/header.c: ditto. + +2003-05-10 Koji Arai + + * configure.ac: updated version. + + * src/lhext.c (inquire_extract): warning if stdin is not tty, + because you cannot reply from stdin. + (extract_one): return actual read size from archive. + (cmd_extract): fix a bug: skip correct size when error occurred. + + * tests/lha-test5: added tests for above. + + * src/lha.h (struct interfacing): added a member `read_size'. + + * src/extract.c (decode_lzhuf): added an argument `pointer of + read_size'. + + * src/prototypes.h: ditto. + + * src/slide.c (decode): set actual read size to interface->read_size. + +2003-04-14 Koji Arai + + * src/cproto.sh: The cproto 4.7a supports some gcc-specific keywords. + +2003-03-24 Koji Arai + + * configure.ac: updated version. + + * src/prototypes.h: updated. + +2003-03-23 Koji Arai + + * src/header.c (convert_filename): support Samba CAP code (experimental). + (hex2int, int2hex, cap_to_sjis, sjis_to_cap): added for above. + + * src/lha_macro.h (CODE_CAP): ditto. + + * src/lharc.c (parse_option): added new command line options, + --system-kanji-code=xxx and --archive-kanji-code=xxx (experimental). + + * 00readme.autoconf: described above features. + +2003-03-22 Koji Arai + + * src/lharc.c (init_variable): do not use HEADER_LEVELx macros. + (parse_option): ditto. + + * src/header.c (write_header): ditto. + + * src/lha_macro.h (HEADER_LEVEL0, HEADER_LEVEL1, HEADER_LEVEL2, MATCHBIT): ditto. + + * src/huf.c (encode_start_st1): do not use assert(). + (decode_start_st1): ditto. + +2003-03-12 Koji Arai + + * src/header.c (wintime_to_unix_stamp): should cast to unsigned type. + +2003-03-03 Koji Arai + + * src/prototypes.h: updated. + + * src/cproto.sh: improved. + +2003-02-24 Koji Arai + + * src/prototypes.h: updated. + + * src/maketree.c: hate global variables. + + * src/lha_macro.h: refined. + + * src/huf.c: refined. + + * src/util.c (strdup): defined more properly. + (memset): ditto. + + * prototypes.h: ditto. + + * cproto.sh: ditto. + +2003-02-23 Koji Arai + + * src/cproto.sh: improved. + + * src/prototypes.h: updated. + + * src/util.c: `strucmp()' was replaced by `strcasecmp()'. + + * src/util.c (archive_is_msdos_sfx1): ditto. + + * src/lharc.c (open_old_archive): ditto. + + * src/lha.h: ditto. + + * src/util.c: discard `rename()', `mkdir()' and `rmdir()'. + + * configure.ac: ditto. + + * config.h.in: ditto. + + * src/header.c: added credit. + no longer use `ftime()', `tzset()', `localtime()' and `gettimeofday()'. + +2003-02-17 Koji Arai + + * configure.ac: updated version. + + * src/fnmatch.h: no need to include . it does not + exist on MinGW. + +2003-02-14 Koji Arai + + * src/lharc.c (find_files): `goto' requires expression after label. + + * src/lhadd.c (cmd_add): ditto. + +2003-02-05 Koji Arai + + * tests/lha-test7: sleep 1 to make sure for updating tests. + + * src/fnmatch.c, src/fnmatch.h: added fnmatch.c derived from the + OpenBSD. + +2003-02-04 Koji Arai + + * configure.ac: need to call `AC_CANONICAL_HOST' for automake + 1.6.x (for installing the config.guess and config.sub). + +2003-02-02 Koji Arai + + * src/header.c, src/lharc.c: fix credit. + +2003-01-20 Koji Arai + + * src/lha.h (prev_char): discard unused variable `prev_char'. + + * src/crcio.c (fwrite_txt): ditto. + + * src/slide.c (decode): ditto. + + * src/slide.c: refined a little. + 2003-01-19 Koji Arai * src/slide.c: took off the debug flag. @@ -59,7 +372,7 @@ * config.h.in: ditto. * lha.h: ditto. - + * configure.ac: added checking functions `fnmatch' and `basename'. but not yet prepare the free fnmatch.c.