OSDN Git Service

Remove unused parameter
[lha/lha.git] / ChangeLog
index e17efb3..ac95e34 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,220 @@
+2008-10-25  Koji Arai  <arai@users.sourceforge.jp>
+
+       * INSTALL: enclosed the INSTALL file for European.
+       contributed by Reynir Stefansson. Thanks!
+
+2008-10-23  Koji Arai  <arai@users.sourceforge.jp>
+
+       * configure.ac: updated version.
+
+       * src/lhadd.c(cmd_add): fixed a bug reported by Reynir Stefansson.
+       the variable most_recent should be reset at the first.
+
+       * tests/lha-test19: added a testcase for above.
+
+2008-10-04  Koji Arai  <arai@users.sourceforge.jp>
+
+       Timestamp archiving feature is added. Thanks to Reynir Stefansson.
+
+       * configure.ac: updated version.
+
+       * src/lha.h: added a variable, timestamp_archive.
+
+       * src/lhadd.c (copy_old_one): moved from src/lharc.c, and reset
+       most_recent to most recent timestamp.
+
+       * src/prototypes.h: copy_old_one() is changed to static function.
+
+       * src/lhadd.c (add_one): reset most_recent to most recent timestamp.
+
+       * src/lhadd.c (set_archive_file_mode): When --timestamp-archive is
+       specified, archive timestamp adjust to most recent file in the
+       archive.
+
+       * src/lhadd.c (cmd_add, cmd_delete): should call set_archive_file_mode() without noexec.
+
+       * src/lharc.c (init_variable, parse_suboption): added an option --timestamp-archive.
+
+       * tests/Makefile.am: added lha-test19.
+
+       * tests/lha-test19: newly added for checking the timestamp
+       archiving.
+
+       * tests/lha-test.in (identical_timestamp) added an utility function.
+
+       * man/lha.1: describe about --timestamp-archive.
+
+2008-08-23  Koji Arai  <arai@users.sourceforge.jp>
+
+       * src/lhext.c (cmd_extract): stream position was adjusted by wrong value.
+
+       * src/lhext.c (extract_one): fixed misspelling.
+
+2008-08-04  Koji Arai  <arai@users.sourceforge.jp>
+
+       * src/larc.c (decode_start_lz5): should use the dtext[] instead of the text[].
+
+       * src/lha.h (dtext): defined as global variable.
+
+       * src/slide.c (decode): ditto.
+
+2008-08-03  Koji Arai  <arai@users.sourceforge.jp>
+
+       * src/header.c (convert_filename): Fixed a bug:
+       If the utf8 is specified for the --system-kanji-code and the path
+       separator is used with the backslash (0x5c) in archive (level 0
+       header is used 0x5c as path separator), when extracting, it has been
+       converted to the U+00A5 (yen sign) instead of the slash (0x2f).
+
+2008-06-24  Koji Arai  <arai@users.sourceforge.jp>
+
+       * Hacking_of_LHa: updated.
+
+2008-05-14  Koji Arai  <arai@users.sourceforge.jp>
+
+       * src/lhext.c (extract_one): The -t command should not affect extracting file attributes.
+
+2008-05-02  Koji Arai  <arai@users.sourceforge.jp>
+
+       * added a long option --debug=dumplzss which display debugging information for the LZSS.
+
+2008-03-08  Koji Arai  <arai@users.sourceforge.jp>
+
+       * src/lhext.c (add_dirinfo): no longer suppose that contents of the LZH archive is sorted by pathname.
+
+       * tests/lha-test18: added tests for above.
+
+       * src/lharc.c (parse_suboption): added debugging option `--debug=nosort' and `--debug=norecursion'
+       for above tests.
+
+       * src/lha.h: added two global variables for above options: sort_contents, recursive_archiving;
+
+       * src/lharc.c (init_variable): ditto.
+       (sort_files): no sort arguments with --debug=nosort.
+       (find_files): no sort directory entries with --debug=nosort.
+
+       * src/lhadd.c (append_it): non-sorted and non-recursive archiving with --debug=nosort and --debug=norecursion.
+
+       * src/lhadd.c (remove_one): should use the message() instead of printf().
+
+2008-03-07  Koji Arai  <arai@users.sourceforge.jp>
+
+       * man/lha.1: correct the description about the -m command.
+
+2008-03-04  Koji Arai  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * src/getopt_long.c (has_argument_short): should treat "-ab" as "-a -b"
+       for shortopts="-a[0123]b".
+
+2008-03-02  Koji Arai  <arai@users.sourceforge.jp>
+
+       * man/lha.1: refined.
+
+2008-02-21  Koji Arai  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * Fix a bug: Could not extract 2G over files.
+
+2007-09-05  Koji Arai  <arai@users.sourceforge.jp>
+
+       * 00readme.autoconf: Added description for the -b switch which extract MacBinaries.
+
+2007-09-04  Koji Arai  <arai@users.sourceforge.jp>
+
+       * use the length modifier `ll' (%llu) for printing 64bit value.
+
+2007-09-04  Koji Arai  <arai@users.sourceforge.jp>
+
+       * update prototypes.h using cproto
+
+2007-09-03  Koji Arai  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
+
+       * 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  <arai@users.sourceforge.jp>
 
+       * 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.