# # # patch "NEWS" # from [b13365f9cd671224411dc354a0e549b37c204871] # to [b91db41ad4c5f746f901a2ac9744b748c2270a40] # # patch "README" # from [e9ec472a54765c5a05481be8b4cbf0879bdb49fe] # to [ca8f7f128d188deaecc95d31dc580154e53fd454] # # patch "configure.ac" # from [7bc8b6f9d4905cbce41553f06a011fcf0ea5c784] # to [f43ff3f89e46fbc86684dc6a2008b90cfd7c9355] # ============================================================ --- NEWS b13365f9cd671224411dc354a0e549b37c204871 +++ NEWS b91db41ad4c5f746f901a2ac9744b748c2270a40 @@ -1,8 +1,17 @@ +0.14: +- support new format of monotone db (using BLOBs instead of base64 encoding) + /!\ these newer monotones (after 0.26pre2) use sqlite 3.3, if you're building + monotone-viz with a shared sqlite lib, make sure it is compatible ! +- display a nice dialog when the database is locked (e.g. during netsync) +- when a revision has a tag cert, use it as label instead of the revision's id + + 0.13: - support monotone 0.26pre1 (it still works fine with monotone <= 0.25) - stop displaying `disapprove' nodes in a special way (this allows a faster loading of the database) + 0.12: - change the way displayed branches are selected: now one can view any set of branches ============================================================ --- README e9ec472a54765c5a05481be8b4cbf0879bdb49fe +++ README ca8f7f128d188deaecc95d31dc580154e53fd454 @@ -14,6 +14,8 @@ - dot from the graphviz package http://www.research.att.com/sw/tools/graphviz/ - GTK+ 2.4, libgnomecanvas +- OpenSSL development files +- either a compiled monotone tree or sqlite development files COMPILING @@ -23,7 +25,10 @@ compile/install LablGTK run `aclocal -I . && autoconf' to generate configure - run ./configure, with the following options if needed: - --with-lablgtk-dir + --with-lablgtk-dir= + --without-local-lablgtk + --with-monotone-dir= + --without-shared-sqlite --bindir - make - make install @@ -36,6 +41,7 @@ usage: monotone-viz [options] [db [branch]] options: -noaa don't use an anti-aliased canvas + --version print version number and exit If db and branch are not specified on the command line and monotone-viz is run from a monotone-controlled directory, it will ============================================================ --- configure.ac 7bc8b6f9d4905cbce41553f06a011fcf0ea5c784 +++ configure.ac f43ff3f89e46fbc86684dc6a2008b90cfd7c9355 @@ -1,4 +1,4 @@ -AC_INIT(monotone-viz, 0.13) +AC_INIT(monotone-viz, 0.14) AC_PROG_OCAML AC_PROG_OCAML_TOOLS @@ -93,7 +93,7 @@ MONOTONE_DIR=$withval, MONOTONE_DIR=monotone) AC_ARG_WITH([shared-sqlite], - AS_HELP_STRING([--with-shared-sqlite], + AS_HELP_STRING([--without-shared-sqlite], [use a system-wide shared sqlite library]), SHARED_SQLITE=$withval, SHARED_SQLITE=maybe)