blob: 126ab30586c823bf53a92b41d0dad7774ed42e41 [file] [log] [blame]
openvcdiff28db8072008-10-10 23:29:11 +00001Fri, 10 Oct 2008 11:16:23 -0700 Google Inc. <opensource@google.com>
2
3 * Issue #15: open-vcdiff fails to compile on Fedora 9
4 * Add header <string.h> to source files that use memcmp, memset, memcpy,
5 and/or strlen.
6 * Change C++-style includes like <cstdlib> to C-style includes like
7 <stdlib.h> so that function names are guaranteed to be defined
8 in the global namespace.
9 * Issue #8: Decoder should not crash if it runs out of memory
10 * Add a new interface that places a limit on the maximum bytes allowed in
11 a single target window or a target file.
12 * Issue #13: Add unit test for vcdiff command-line executable
13 * Unit test vcdiff_test.sh added for Linux and Mac builds.
14 * Still need to add a Windows version of this test.
15
openvcdiffd4832872008-09-02 18:21:13 +000016Tue, 02 Sep 2008 09:27:54 -0700 Google Inc. <opensource@google.com>
17
18 * Fix problems found on OpenBSD platform.
19 * Issue #1: vcdiff command-line executable crashes on startup.
20 This was a problem with the stub intended to replace pthread_once if the
21 package was not linked with the pthreads library. Simplify gflags.cc to
22 assume single-threaded execution.
23 * Issue #2: Unit test blockhash_test fails.
24 Define VCDIFF_USE_BLOCK_COMPARE_WORDS for BSD platforms to ensure that
25 the most efficient version of memcmp is used in the encoder's inner loop.
26 * Fix compilation warnings in gtest-filepath.cc: "warning: missing
27 initializer for member 'stat::...'"
28
openvcdiff311c7142008-08-26 19:29:25 +000029Mon, 16 Jun 2008 15:15:51 -0700 Google Inc. <opensource@google.com>
30
31 * open-vcdiff: initial release:
32 The open-vcdiff package provides an encoder and decoder for the VCDIFF format
33 described in RFC 3284 (http://www.ietf.org/rfc/rfc3284.txt).