The unified diff between revisions [869f0c37..] and [e24ccc23..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'ChangeLog'
#
#
# patch "ChangeLog"
# from [3d5fd1c1a0ef8a2d86cbd76a30d89c18f15fd496]
# to [1a92ac866998074c2b9d6e2795fe322656a4666b]
#
============================================================
--- ChangeLog 3d5fd1c1a0ef8a2d86cbd76a30d89c18f15fd496
+++ ChangeLog 1a92ac866998074c2b9d6e2795fe322656a4666b
@@ -1,3 +1,97 @@
+2005-06-22 Nathaniel Smith <njs@codesourcery.com>
+
+ * netcmd.hh (netcmd::read, netcmd::write): Don't have defaults for
+ key/hmac arguments.
+ * netcmd.cc (do_netcmd_roundtrip): New function.
+ (test_netcmd_functions): Use it. Also, make work with hmac
+ changes.
+ (test_netcmd_mac): New test.
+ (add_netcmd_tests): Call it.
+
+2005-06-22 Nathaniel Smith <njs@codesourcery.com>
+
+ * netcmd.cc (read): Remove unused variable.
+ * netsync.cc (call_server, process)
+ (arm_sessions_and_calculate_probe, handle_read_available): Give
+ better error message on bad_decode exceptions.
+
+2005-06-22 Nathaniel Smith <njs@codesourcery.com>
+
+ * netcmd.cc, netsync.cc: Revert backwards compatibility code; 0.19
+ and 0.20 can't be usefully compatible, and the code as it existed
+ would cause real version mismatch error reporting to not work
+ right. (Old client with new server would give a generic "server
+ disconnected" error message instead of something useful.)
+
+2005-06-21 Nathaniel Smith <njs@codesourcery.com>
+
+ * netsync.cc (rebuild_merkle_trees): Fix FIXME comments to match
+ reality.
+ * tests/t_netsync_diffbranch.at: No longer a bug, remove
+ priority.
+
+2005-06-20 Nathaniel Smith <njs@codesourcery.com>
+
+ * monotone.texi (Hook Reference): Oops, missed a @ref.
+
+2005-06-20 Nathaniel Smith <njs@codesourcery.com>
+
+ * monotone.texi (Default monotonerc): Rename section to...
+ (Default hooks): ...this, to emphasize is still read even when a
+ monotonerc exists.
+
+2005-06-19 Richard Levitte <richard@levitte.org>
+
+ * Makefile.am: There's no reason for monotone.pdf or .dvi to
+ depend on monotone.info, since they are built from the .texi
+ files. Also, make the monotone.html and html targets depend
+ on version.texi and std_hooks.lua as well.
+
+2005-06-18 Matt Johnston <matt@ucc.asn.au>
+
+ * INSTALL: fix typo, should be -Iboost_1_31_0 not -Iboost_1_31_2
+
+2005-06-18 Riccardo Ghetta <birrachiara@tin.it>
+ * monotone.texi: include std_hooks.lua as an appendix and remove long
+ lua excerpts from hook reference.
+ * Makefile.am : make monotone.pdf/eps depend on monotone.info
+
+2005-06-17 Matt Johnston <matt@ucc.asn.au>
+
+ * database.cc (database::execute()): truncate long query log messages
+ before copying, saving memory.
+ Patch from Eric Anderson < ea at cello hpl hp com >
+
+2005-06-17 Riccardo Ghetta <birrachiara@tin.it>
+ Adds include()/includedir() to lua hooks and extend --rcfile
+ * lua.cc: handle --rcfile with directories, implement
+ include() and includedir()
+ * testsuite.at, t_lua_includedir.at, t_rcfile_dir.at:
+ test new functionality
+ * monotone.texi: document all functions available to hook
+ writers, including the new include() and includedir()
+
+2005-06-16 Nathaniel Smith <njs@codesourcery.com>
+
+ * diff_patch.cc (merge_extents): Typo caught by anonymous reader.
+
+2005-06-16 Nathaniel Smith <njs@codesourcery.com>
+
+ * commands.cc (cat): Account for being in a subdir in 'cat file
+ REV PATH'.
+ * tests/t_cat_file_by_name.at: Test.
+
+2005-06-17 Richard Levitte <richard@levitte.org>
+
+ * app_state.cc (app_state::app_state()): Avoid a gcc warning by
+ having the class members initialised in the same order they are
+ defined in the class.
+
+2005-06-16 Nathaniel Smith <njs@pobox.com>
+
+ * std_hooks.lua (ignore_file): Add Cons/SCons cache files to
+ default ignore list.
+
2005-06-16 Matt Johnston <matt@ucc.asn.au>
* ui.cc: increase the divisor as required so that we don't get spurious
@@ -5,6 +99,11 @@ 2005-06-16 Matt Johnston <matt@ucc.asn
2005-06-16 Matt Johnston <matt@ucc.asn.au>
+ * ui.cc: increase the divisor as required so that we don't get spurious
+ screen updates when we're using the kilobyte/megabyte tickers
+
+2005-06-16 Matt Johnston <matt@ucc.asn.au>
+
* netcmd.{cc,hh}, netsync.cc: only read a single command packet
worth of data at a time, to avoid having to shuffle buffers about.