X-Git-Url: http://git.sourceforge.jp/view?p=lha%2Flha.git;a=blobdiff_plain;f=ChangeLog;h=15dd0de76b1ceb544acc10124a0fee5e3c1acc0d;hp=bacdb8c3784cf6db31a1fbd8daa46bbf15d87956;hb=297f6c2e02fdd8328ca7d4a9683e53c47472373c;hpb=a7a658b0341b877c0301c8d6eb0e3c028e09845a diff --git a/ChangeLog b/ChangeLog index bacdb8c..15dd0de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,174 @@ +2008-03-04 Koji Arai + + * man/lha.1: changed a little. the BUGS section was removed. + + * man/lha.1: correct English by Stanislav Brabec. Thanks. + +2008-03-02 Koji Arai + + * src/getopt_long.c (has_argument_short): should treat "-ab" as "-a -b" + for shortopts="-a[0123]b". + +2008-03-02 Koji Arai + + * man/lha.1: refined. + +2008-02-21 Koji Arai + + * src/header.c (canon_path): should remove duplicated slash. + (the function name is renamed from remove_dots().) + + * tests/lha-test17: added a test for above. + +2008-02-17 Koji Arai + + * src/lhext.c (extract_one) could not extract files under readonly directories, like: + + dr-xr-xr-x 2 arai arai 4096 Jan 5 03:30 foo/ + -rw-r--r-- 1 arai arai 0 Jan 5 03:30 foo/bar + + * tests/Makefile.am: added a test for above. + + * tests/lha-test.in: ditto. + + * tests/lha-test18: ditto. + +2008-02-05 Koji Arai + + * config.h. configure.ac: added a configure option + --with-additional-suffixes for SuSE Linux. + + * src/lharc.c (open_old_archive): make it possible to add archive + suffixes. + + * src/lharc.c (print_version): show the configure option by the + --version option. + +2007-09-09 Koji Arai + + * src/header.c: `put_longword()' should be used the ANSI-C declaration. + + Created archives was broken on Big-endian machine (and 64-bits machine). + +2007-09-08 Koji Arai + + * Added tests for extract large files. + + Added two tests for extract files over 2G and 4G bytes. + These are not performed in default, because it will be take a long time. + +2007-09-08 Koji Arai + + * Fix a bug: Could not extract 2G over files. + +2007-09-05 Koji Arai + + * 00readme.autoconf: Added description for the -b switch which extract MacBinaries. + +2007-09-04 Koji Arai + + * use the length modifier `ll' (%llu) for printing 64bit value. + +2007-09-04 Koji Arai + + * update prototypes.h using cproto + +2007-09-03 Koji Arai + + * src/append.c, src/extract.c, src/header.c, src/indicator.c, src/lha.h, src/lhadd.c, src/lhext.c, src/lhlist.c, src/prototypes.h, src/slide.c, src/util.c: + Possible to extract files over 4G, use UNLHA32.DLL specific extended header. + +2007-05-23 Koji Arai + + * tests/lha-test.in: added an optional numeric command-line + argument, and a command-line switch -n. + when the numeric argument is specified, only the testsuite is + performed. and the -n switch is specified, it is not made cleanup + trash files which is result of the test. + + * tests/lha-test11: On MS-Windows, should consider the length of + current path. + + * tests/lha-test11: On MS-Windows, if current directory is too + deep, skip this test. + +2007-05-23 Koji Arai + + * config.h.in, configure.ac, src/lharc.c: the option -X was deprecated. + In place of it, added a long option --ignore-mac-files which + ignore Mac specific files ._*, .DS_Store and Icon\r when the + archive is created. Thanks to Hiroto Sakai. + +2007-05-20 Koji Arai + + * repository changed to the Subversion. + + * tests/lha-test12: should not use the raw CR code. + (when checkout from SVN repos, raw CR code is removed.) + +2007-02-24 Koji Arai + + * src/lharc.c (print_tiny_usage, parse_suboption): added a long + option "--traditional". it is just the same + "--convert-filename-case" for the present. + + * src/header.c (get_header): the variable "noconvertcase" changed + to "convertcase". + it means that this LHa does not convert filename case automatically. + + * src/lha.h: ditto. + + * src/lharc.c (init_variable): ditto. + + * src/lharc.c (print_tiny_usage, parse_suboption): added a long + option "--convert-filename-case" that change to the old behavior. + + * src/lharc.c (print_usage, parse_suboption): the "g" option has + no meaning when extracting. + + * src/header.c (write_header): no upcase filename when the generic + archive creating. + +2007-02-24 Koji Arai + + * configure.ac: updated version. + + * src/lharc.c (print_usage): updated. + +2007-02-24 Koji Arai + + * src/header.c (copy_path_element, remove_dots, init_header): + should treat "foo" and "./foo" as same file, so remove "./" from + archived path name. + + * tests/Makefile.am, tests/lha-test.in, tests/lha-test17: + added tests for the removing relative path. + +2006-10-09 Koji Arai + + * src/lha_macro.h (MIN): newly added a macro for below. + + * maketbl.c (make_table): applied the security patch for the + CVE-2006-4335 and CVE-2006-4337. + + * huf.c (read_pt_len, read_c_len, decode_c_st1, decode_p_st1): + applied the security patch for the CVE-2006-4338. + +2006-10-09 Koji Arai + + * tests/lha-test.in: the function local variable `$status' is treated as + the builtin variable on the Zsh version 4.3.2, so it was renamed to + $exit_status. + + * tests/Makefile.am, tests/lha-test.in, tests/lha-test16, tests/lha-test16-l0.lzh, tests/lha-test16-l1.lzh, tests/lha-test16-l2.lzh, tests/lha-test16-lg.lzh: + added tests for the header CRC. + +2006-10-08 Koji Arai + + * 00readme.autoconf: updated. + + * Hacking_of_LHa: changed mail address. + 2006-10-08 Koji Arai * configure.ac: updated version. @@ -1932,5 +2103,5 @@ import the lha-114f Local Variables: -user-mail-address : "arai@users.sourceforge.jp" +eval: (if (string= (user-login-name) "arai") (setq user-mail-address "arai@users.sourceforge.jp")) End: